14.07.2012, 10:00
Replace tmp with this.
pawn Код:
tmp = strtok(params,Index);
pawn Код:
stock IsMonth31(month) //Add this to the bottom of your script.
{
new year, month, day;
getdate(year, month, day);
if(month == 4 || month == 6 || month == 9 || month == 1) return true;
return false;
}