Reply to Re: Making a sprite dissapear later...
If you don't have an account, just leave the password field blank.
Don't use kill_this_task(), and it should work. kill_this_task() will kill the script, and it won't work the next time Dink runs at the barrier.
If you want the script to stop running after Dink says "not yet!", use return(); instead.
You also need to give the barrier an sp_touch_damage of -1. You can do that in the editor, but I usually always do it in the script:
void main()
{
sp_touch_damage(¤t_sprite,-1);
}
If you want the script to stop running after Dink says "not yet!", use return(); instead.
You also need to give the barrier an sp_touch_damage of -1. You can do that in the editor, but I usually always do it in the script:
void main()
{
sp_touch_damage(¤t_sprite,-1);
}