ScrashOff

OnPlayerCheat

Jan 29th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 1.17 KB | None | 0 0
  1. public OnPlayerCheat(playerid, cheattype) // Callback principal
  2. {
  3.     switch(cheattype)
  4.     {
  5.         case AC_CHEAT_HEALTH:
  6.         {
  7.             SendClientMessageToAll(-1, "[CHEAT] Vida do player modificada");
  8.         }
  9.        
  10.         case AC_CHEAT_HEALTH_CNOR:
  11.         {
  12.             SendClientMessageToAll(-1, "[CHEAT] Vida do jogador maior que 100.0");
  13.         }
  14.        
  15.         case AC_CHEAT_ARMOUR:
  16.         {
  17.             SendClientMessageToAll(-1, "[CHEAT] Colete do player modificado");
  18.         }
  19.        
  20.         case AC_CHEAT_ARMOUR_CNOR:
  21.         {
  22.             SendClientMessageToAll(-1, "[CHEAT] Colete do jogador maior que 100.0");
  23.         }
  24.        
  25.         case AC_CHEAT_TELEPORT:
  26.         {
  27.             SendClientMessageToAll(-1, "[CHEAT] TP do jogador.");
  28.         }
  29.        
  30.         case AC_CHEAT_AIRBRAKE:
  31.         {
  32.             SendClientMessageToAll(-1, "[CHEAT] Jogador usando airbrake.");
  33.         }
  34.        
  35.         case AC_CHEAT_FAKEKILL:
  36.         {
  37.             SendClientMessageToAll(-1, "[CHEAT] Jogador usando fakekill.");
  38.         }
  39.        
  40.         case AC_CHEAT_FLYHACK:
  41.         {
  42.             SendClientMessageToAll(-1, "[CHEAT] Jogador usando flyhack.");
  43.         }
  44.        
  45.         case AC_CHEAT_CARHH:
  46.         {
  47.             SendClientMessageToAll(-1, "[CHEAT] Jogador usando vhh.");
  48.         }
  49.        
  50.         case AC_CHEAT_CARWARP:
  51.         {
  52.             SendClientMessageToAll(-1, "[CHEAT] Jogador usando carwarp.");
  53.         }
  54.     }
  55.     return 1;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment