Advertisement
DraKiNs

[FS] Anti Cheat Money

Jun 26th, 2011
888
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 1.27 KB | None | 0 0
  1. /*==============================================================================
  2.              _ ____        _____          __  __
  3.             (_)  _ \ ___  |_   _|__  __ _|  \/  |
  4.             | | |_) / __|   | |/ _ \/ _` | |\/| |
  5.             | |  __/\__ \   | |  __/ (_| | |  | |
  6.             |_|_|   |___/   |_|\___|\__,_|_|  |_|
  7.  
  8.                [iPs] Anti Money Hack
  9.                 Criado por: [iPs]DraKiNs
  10.                     Versão 0.1
  11. ==============================================================================*/
  12. #include a_samp
  13.  
  14. CallCheckMoney();
  15. CallGiveMoney(i,v);
  16.  
  17. new iMoney[MAX_PLAYERS] = 0;
  18.  
  19. public OnFilterScriptInit()
  20. {
  21.     SetTimer("CallCheckMoney", 2500, true);
  22.     return true;
  23. }
  24.  
  25.  
  26. public OnPlayerConnect(playerid)
  27. {
  28.     iMoney[playerid] = 0;
  29.     return EnableStuntBonusForAll(false);
  30. }
  31.  
  32.  
  33. public CallCheckMoney()
  34. {
  35.     for(new i; i < MAX_PLAYERS; i++)
  36.     {
  37.         if(!IsPlayerConnected(i)) continue;
  38.  
  39.         if( GetPlayerMoney(i) > iMoney[i] )
  40.         {
  41.             ResetPlayerMoney(i);
  42.             GivePlayerMoney(i,iMoney[i]);
  43.         }
  44.         iMoney[i] = GetPlayerMoney(i);
  45.     }
  46.     return true;
  47. }
  48.  
  49.  
  50. public CallGiveMoney(i,v)
  51. {
  52.     GivePlayerMoney(i,v);
  53.     iMoney[i] = GetPlayerMoney(i);
  54.     return true;
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement