destinedjagold
Oh Hai Thar.
- 8,594
- Posts
- 17
- Years
- Stinky/Old/Fart
- On your ceiling...
- Seen Apr 17, 2025
^ Simple...
You forgot the 0xFE command in your movement script.
Always remember to add 0xFE in every end of your movement command scripts. ;)
edit...
by the way, for you to avoid the script to repeat, add the 'setflag' command...
You forgot the 0xFE command in your movement script.
Code:
#org @move
#raw 0x13
#raw 0x13
#raw 0x11
#raw 0x11
[COLOR="Red"]#raw 0xFE[/COLOR]
Always remember to add 0xFE in every end of your movement command scripts. ;)
edit...
by the way, for you to avoid the script to repeat, add the 'setflag' command...
Code:
#org @start
checkflag 0x200
if 0x1 goto @done
msgbox @1 0x6
applymovement 0x1 @move
waitmovement 0x0
msgbox @2 0x6
[COLOR="Red"]setflag 0x200[/COLOR]
release
end