Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2013
1,057
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public OnPlayerUpdate(playerid)
  2. {
  3. new Float:armour;
  4. GetPlayerArmour(playerid, armour);
  5. if(armour == 100)
  6. {
  7. new string[64], pName[MAX_PLAYER_NAME];
  8. GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
  9. format(string,sizeof string,"* %s was banned (Armour Hack)",pName);
  10. SendClientMessageToAll(0xFF0000FF,string);
  11. BanEx(playerid, "Armour Hack");
  12. }
  13. return 1;
  14. }
  15.  
  16. //Developed by Configuration
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement