
Originally Posted by
Athalcor
I am 100% sure that MMtG will be a modder's dream but I am a bit worried if it will be understandable for someone without any programming skills...
Absolutely... let me show you a minor thing:
Code:
* add_variables = { which = <VAR1> operand1 = <VAR2> operand2 = <VAR3> }
Sets VAR1 = VAR2 + VAR3
* subtract_variables = { which = <VAR1> operand1 = <VAR2> operand2 = <VAR3> }
Sets VAR1 = VAR2 - VAR3
* multiply_variables = { which = <VAR1> operand1 = <VAR2> operand2 = <VAR3> }
Sets VAR1 = VAR2 * VAR3
* divide_variables = { which = <VAR1> operand1 = <VAR2> operand2 = <VAR3> }
Sets VAR1 = VAR2 / VAR3
It's easy to see such a small thing the impact it has on modding...