hi
i am having two global variables , both contain different values.
and the result should be multiplication of both.
how to do it?
use the *
GlobalVariable1*GlobalVariable2
use the * GlobalVariable1*GlobalVariable2
thanks for reply
actually m also using * sign but it throws me syntax error bcoz u can not directly use * sign
you should use it along with () brackets.
problem solved
maybe use:
int(var1) * int(var2)
Develop games in your browser. Powerful, performant & highly capable.
I'm newbie on this forum & I really like Construct.
I know it's too late but today I have similar problem and my solution is (for C3):
int(Text_first.Text)*int(Text_second.Text)
.....