My name is Jason can I do working if relative in Fuze?
-
GML stands for Game Maker Language
I know in GML I can do
Create Event hp = 123; hpplus = 0; Step Event: if (hpplus > 0) { hp += hpplus; hpplus = 0; } if (keyboard_check_pressed(ord("Q"))) { hpplus = 3 show_message("hp:#"+string(hp)); } if (hpplus == 3) { x += 3; }
-
in FUZE it would look like this
hp = 123 hpplus = 0 if hpplus > 0 then hp += hpplus hpplus = 0 endif if controls(0).y then hpplus = 3 print("hp:#" + hp) endif if hpplus == 3 then x += 3 endif
-
Should i say how to write in Python...
-
There wouldn't be a lot of point really given Fuze isn't Python!
-
@Martin unfortunately no :(
-
Thank you all for helping me out.