Reply to Re: Push Rock
If you don't have an account, just leave the password field blank.
Add an if-statement that checks if Dink's level is 10. If you want it only to happen at level 10, it should be if (&level == 10) - if you want it to happen when Dink's level is at least 10, it should be if (&level >= 10) or if (&level > 9).
if (&level > 9)
{
//here add the code that disallows Dink to push (or ends the script so the push part doesn't get run)
}
if (&level > 9)
{
//here add the code that disallows Dink to push (or ends the script so the push part doesn't get run)
}