01.04.2017, 18:05
yes its possible
Try using this piece of coding
PHP код:
#define MAX_WARNS 10 //change the 10 to the amount of warnings you want to give a player
enum PlayerInfo
{
aimWarns
}
new pInfo[MAX_PLAYERS][PlayerInfo];
//under where you detect the aimbot add this code
new astring [128];
pInfo[id][aimWarns]++;
format(astring,sizeof(astring),"[AdmCmd]: {FF6347}Player %s has been detected for using aimbot | Warnings: %d/%d |",GetName(id),pInfo[id][aimWarns],MAX_WARNS);
SendClientMessageToAll(red,astring);
