Umbre Ive been making some scripts that needed to use ** to work but instead of using ** or ^ I have been forced to make loops that simulate it instead of just putting in **.
Justin Umbre Hi Umbre! For "power of", you can use the "pow" function, e.g. pow(x, y) The "Math Functions" section in the docs below has some more info: https://rpginabox.com/docs/doku.php?id=script_syntax Hopefully that helps!
Umbre Justin Ohh. I didnt know that because I tried using ^, ** and Power(x, y) So I didnt think it worked.