Problem mam taki, że jak chciałem uruchomić skrypt rakiety, to mi wyskoczył taki błąd: :(
FATAL ERROR in
action number 2
of Step Event
for object object1:
COMPILATION ERROR in code action
Error in code at line 2:
{
at position 2: Variable name expected.
i kod
GML
if direction not instance_nearest(object0.x,object0.y,object0)
{
if direction>instance_nearest(object0.x,object0.y,object0); direction=direction-3
else
direction=direction+3
}
Dla upewnienia się czy czasem nie zrobiłem błędu, zrobiłem drugą wersję kodu:
GML
if direction not instance_nearest(object0.x,object0.y,object0)
{if direction>instance_nearest(object0.x,object0.y,object0); direction=direction-3
else direction=direction+3}
i znowu błąd
FATAL ERROR in
action number 2
of Step Event
for object object1:
COMPILATION ERROR in code action
Error in code at line 2:
{if direction>instance_nearest(object0.x,object0.y,object0); direction=direction-3
at position 2: Variable name expected.
Proszę o wyrozumiałość, bo ja dopiero zaczynam pisać skrypty GML.