Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*VISITE NOSSO SITE: http://www.sampknd.com/
- SAMP KND MELHOR BLOG DE SAMP DO BRASIL
- */
- #include <a_samp>
- new antifakekill[MAX_PLAYERS];
- public OnFilterScriptInit()
- {
- print(" Anti Fake Kill by; LuizFel");
- return 1;
- }
- public OnPlayerText(playerid, text[])
- {
- if(strfind(text,"!kill",true) == 0) return Kick(playerid);
- if(strfind(text,"www.samphax.tk",true) == 0) return Kick(playerid);
- return 1;
- }
- public OnPlayerDeath(playerid, killerid, reason)
- {
- antifakekill[playerid] ++;
- SetTimerEx("antifakekill2", 1000,false,"i",playerid);
- return 1;
- }
- forward antifakekill2(playerid);
- public antifakekill2(playerid)
- {
- antifakekill[playerid] --;
- if(antifakekill[playerid] > 5)
- {
- SendClientMessage(playerid, 0xFF0000AA, "Este servidor esta protegido por um Anti Fake Kill");
- Kick(playerid);
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement