Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Seguinte, no topo do GM você vai colocar a variável
- new antifakekill[MAX_PLAYERS];
- Logo após, na sua public OnPlayerText(playerid, text[]) você coloca esta função
- if(strfind(text,"!kill",true) == 0) return Kick(playerid);
- if(strfind(text,"www.samphax.tk",true) == 0) return Kick(playerid);
- Na public OnPlayerDeath(playerid, killerid, reason) você coloca isso
- antifakekill[playerid] ++;
- SetTimerEx("antifakekill2", 1000,false,"i",playerid);
- No final do GM você coloca esta callback
- forward antifakekill2(playerid);
- public antifakekill2(playerid)
- {
- antifakekill[playerid] --;
- if(antifakekill[playerid] > 5)
- {
- SendClientMessage(playerid, 0xFF0000AA, "Este servidor esta protegido por um Anti Fake Kill criado por: luizfel2 (Fórum ChuckSamp Owna!)");
- Kick(playerid);
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement