04.12.2012, 19:06
pawn Код:
// variable to store the bank status
new bool: bank_robbed = false;
// somewhere to again allow robbing, and set var to false
// so they cannot rob again yet
bank_robbed = true;
SetTimer("allowrob", <time>, false);
// the custom function passed to the timer
public allowrob()
bank_robbed = false;