Reply to Re: Freeze, please!
If you don't have an account, just leave the password field blank.
It won't work yet because you have this line in the void main():
sp_touch_damage(¤t_sprite, 0);
This should be:
sp_touch_damage(¤t_sprite,-1);
Also, you need to freeze Dink again after loading a screen. Freezes don't survive screen changes, then just use an unfreeze() command at the bottom of the script.
Also kill_this_task; doesn't do anything, you need to use kill_this_task();
sp_touch_damage(¤t_sprite, 0);
This should be:
sp_touch_damage(¤t_sprite,-1);
Also, you need to freeze Dink again after loading a screen. Freezes don't survive screen changes, then just use an unfreeze() command at the bottom of the script.
Also kill_this_task; doesn't do anything, you need to use kill_this_task();