Is it possible to multiply string ?
I would like to setup a string with expression like "a" * 5 to get "aaaaa" (that's just a simple example ), but it's not possible, is there any other way?
Develop games in your browser. Powerful, performant & highly capable.
Sorry I have not really looked at this problem in construct yet but what immediately jumped out at me is using a loop. While multiplyNumber not equal 0 apend the character to the string and set multiplyNumber to multiplyNumber - 1.
on condition, repeat "multiplyer" times, add "a" to string.