03.09.2011, 21:20
I don't know if this will work but try it 

pawn Код:
//When the player is banned put this:
new Hour, Minute, Second, BannedTime;
gettime(Hour, Minute, Second);
#pragma unsed Second
#pragma unsed Minute
BannedTime = Hour + 24; //This will make the player banned for 1 day, (P.S: change the 24 with your [time] variable)
//And finally save "BannedTime" and when player attempts to log in into his banned account, load his saved data, check if BannedTime is higher than the current server time using gettime. if it's smaller kick the player.

