24.01.2013, 21:03
Maybe this:
pawn Код:
forward ResetMoney(); // you may want to put "playerid" inside here.
public ResetMoney() // and here.
{
// The code that you want to start - here.
}
COMMAND:resetmoney(playerid, params[])
{
SetTimer("ResetMoney",2000,0); // Starts public ResetMoney after 2 seconds ( 2000 milliseconds) ,0 = not doing it again and again (,1 = repeat)
return 1; // don't know if it is ResetMoney or ResetMoney(playerid) we should put in the timer.
}

