Reply to Re: Levelup
If you don't have an account, just leave the password field blank.
i'm actually an experienced dinkC scripter. (kind of). it's not like i look through the dinkC manual every 10 minutes when i'm scripting, i can work things out on my own. i think the problem with my shop script was the
return;
line: instead i just went
unfreeze(1);
unfreeze(¤t_sprite);
kill_this_task();
}
which didn't work very well so i made it goto done:
if (&result == option to leave, in my scripts it is usually 4th or 5th)
{
goto done:
}
done:
unfreeze(1);
unfreeze(¤t_sprite);
kill_this_task();
}
and just in case your wondering why has he got freeze(¤t_sprite); in a shop script? it's because the "shop" is actually a walking person
return;
line: instead i just went
unfreeze(1);
unfreeze(¤t_sprite);
kill_this_task();
}
which didn't work very well so i made it goto done:
if (&result == option to leave, in my scripts it is usually 4th or 5th)
{
goto done:
}
done:
unfreeze(1);
unfreeze(¤t_sprite);
kill_this_task();
}
and just in case your wondering why has he got freeze(¤t_sprite); in a shop script? it's because the "shop" is actually a walking person






