10.04.2013, 00:25
still same look what i have done
pawn Код:
stock BotBan(playerid,reason[])
{
sData[pBan] += 1;
new reasonn[512],year,month,day,hour,minute,second;
getdate(year,month,day);
gettime(hour,minute,second);
format(reasonn,sizeof(reasonn),""CWHITE"You have been banned from the server\n\nBy: ["CGREEN" Anti-Cheat "CWHITE"]\nReason: ["CGREEN" %s "CWHITE"]\nDate: ["CGREEN" %s %d %d "CWHITE"]\nBan ID: [ "CGREEN"%d"CWHITE" ]\n\nIf you think this is wrong please take a screenshot and post a ban appeal on\n[ "CURL"%s"CWHITE" ]",reason,monthname(month),day,year,sData[pBan],sData[URL]);
ShowPlayerDialog(playerid,D_BAN,MSGBOX,""CSERVER"BANNED",reasonn,"Ok","");
SetTimer("botkick",1200,false);
return botkick(playerid);
}
forward botkick(playerid);
public botkick(playerid)
{
return Kick(playerid);
}