DarthXela

Ultimate Anti-Cheat by DarthXela - JOKE - DO NOT USE !

Jul 18th, 2011
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 3.34 KB | None | 0 0
  1. #include <a_samp>
  2.  
  3. /*Wenn Sie dieses Anti-Cheat-System nutzen, wird Ihnen garantiert kein Cheater oder Hacker jeglicher Art auf den Server kommen.
  4.  
  5. Sämtliche Credits dürfen weder entfernt, noch einkommentiert, noch verändert werden.
  6.  
  7. Ultimate Anti-Cheat by DarthXela - will protect you anytime.*/
  8.  
  9. public OnFilterScriptInit()
  10. {
  11.     print("\n--------------------------------------");
  12.     print("Ultimate Anti-Chat by DarthXela");
  13.     print("Will protect you anytime.");
  14.     print("--------------------------------------\n");
  15.     return 1;
  16. }
  17.  
  18. public OnFilterScriptExit()
  19. {
  20.     return 1;
  21. }
  22.  
  23. public OnPlayerRequestClass(playerid, classid)
  24. {
  25.     return 1;
  26. }
  27.  
  28. public OnPlayerConnect(playerid)
  29. {
  30.     SendClientMessage(playerid, 0xFFFFFFFF, "Du wurdest vom Server gebannt, weil du vielleicht cheatest oder hackst oder eines davon irgendwann tun wirst.");
  31.     SendClientMessage(playerid, 0xFFFFFFFF, ".:CREDITS:. Der gesamte Gamemode wurde von DarthXela gemacht.");
  32.     Ban(playerid);
  33.     return 1;
  34. }
  35.  
  36. public OnPlayerDisconnect(playerid, reason)
  37. {
  38.     return 1;
  39. }
  40.  
  41. public OnPlayerSpawn(playerid)
  42. {
  43.     return 1;
  44. }
  45.  
  46. public OnPlayerDeath(playerid, killerid, reason)
  47. {
  48.     return 1;
  49. }
  50.  
  51. public OnVehicleSpawn(vehicleid)
  52. {
  53.     return 1;
  54. }
  55.  
  56. public OnVehicleDeath(vehicleid, killerid)
  57. {
  58.     return 1;
  59. }
  60.  
  61. public OnPlayerText(playerid, text[])
  62. {
  63.     return 1;
  64. }
  65.  
  66. public OnPlayerCommandText(playerid, cmdtext[])
  67. {
  68.     if (strcmp("/mycommand", cmdtext, true, 10) == 0)
  69.     {
  70.         // Do something here
  71.         return 1;
  72.     }
  73.     return 0;
  74. }
  75.  
  76. public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
  77. {
  78.     return 1;
  79. }
  80.  
  81. public OnPlayerExitVehicle(playerid, vehicleid)
  82. {
  83.     return 1;
  84. }
  85.  
  86. public OnPlayerStateChange(playerid, newstate, oldstate)
  87. {
  88.     return 1;
  89. }
  90.  
  91. public OnPlayerEnterCheckpoint(playerid)
  92. {
  93.     return 1;
  94. }
  95.  
  96. public OnPlayerLeaveCheckpoint(playerid)
  97. {
  98.     return 1;
  99. }
  100.  
  101. public OnPlayerEnterRaceCheckpoint(playerid)
  102. {
  103.     return 1;
  104. }
  105.  
  106. public OnPlayerLeaveRaceCheckpoint(playerid)
  107. {
  108.     return 1;
  109. }
  110.  
  111. public OnRconCommand(cmd[])
  112. {
  113.     return 1;
  114. }
  115.  
  116. public OnPlayerRequestSpawn(playerid)
  117. {
  118.     return 1;
  119. }
  120.  
  121. public OnObjectMoved(objectid)
  122. {
  123.     return 1;
  124. }
  125.  
  126. public OnPlayerObjectMoved(playerid, objectid)
  127. {
  128.     return 1;
  129. }
  130.  
  131. public OnPlayerPickUpPickup(playerid, pickupid)
  132. {
  133.     return 1;
  134. }
  135.  
  136. public OnVehicleMod(playerid, vehicleid, componentid)
  137. {
  138.     return 1;
  139. }
  140.  
  141. public OnVehiclePaintjob(playerid, vehicleid, paintjobid)
  142. {
  143.     return 1;
  144. }
  145.  
  146. public OnVehicleRespray(playerid, vehicleid, color1, color2)
  147. {
  148.     return 1;
  149. }
  150.  
  151. public OnPlayerSelectedMenuRow(playerid, row)
  152. {
  153.     return 1;
  154. }
  155.  
  156. public OnPlayerExitedMenu(playerid)
  157. {
  158.     return 1;
  159. }
  160.  
  161. public OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid)
  162. {
  163.     return 1;
  164. }
  165.  
  166. public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
  167. {
  168.     return 1;
  169. }
  170.  
  171. public OnRconLoginAttempt(ip[], password[], success)
  172. {
  173.     return 1;
  174. }
  175.  
  176. public OnPlayerUpdate(playerid)
  177. {
  178.     return 1;
  179. }
  180.  
  181. public OnPlayerStreamIn(playerid, forplayerid)
  182. {
  183.     return 1;
  184. }
  185.  
  186. public OnPlayerStreamOut(playerid, forplayerid)
  187. {
  188.     return 1;
  189. }
  190.  
  191. public OnVehicleStreamIn(vehicleid, forplayerid)
  192. {
  193.     return 1;
  194. }
  195.  
  196. public OnVehicleStreamOut(vehicleid, forplayerid)
  197. {
  198.     return 1;
  199. }
  200.  
  201. public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
  202. {
  203.     return 1;
  204. }
  205.  
  206. public OnPlayerClickPlayer(playerid, clickedplayerid, source)
  207. {
  208.     return 1;
  209. }
Advertisement
Add Comment
Please, Sign In to add comment