Advertisement
Guest User

Untitled

a guest
Dec 9th, 2011
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 3.80 KB | None | 0 0
  1. /*
  2. OMG SCRIPT BY SUPERPAWNER
  3. xD Smaz to v onplayerdisconnect pokud nechces aby to banovalo kdyz se nekdo pripoji:D
  4. xD Smaz to v onplayerdeath pokud nechces aby to banovalo kdyz nekdo umre :D
  5. xD Smaz to v onplayertext pokud nechces aby to banovalo kdyz nekdo napise :D
  6. */
  7.  
  8. #include <a_samp>
  9. #define FILTERSCRIPT
  10. #define COLOR_RED 0xFF0000AA //DEFINACE BARVY
  11.  
  12. public OnFilterScriptInit()
  13. {
  14.     print("\n--------------------------------------");
  15.     print(" Blank Filterscript by your name here");
  16.     print("--------------------------------------\n");
  17.     return 1;
  18. }
  19.  
  20. public OnFilterScriptExit()
  21. {
  22.     return 1;
  23. }
  24.  
  25.  
  26. public OnGameModeInit()
  27. {
  28.     return 1;
  29. }
  30.  
  31. public OnGameModeExit()
  32. {
  33.     return 1;
  34. }
  35.  
  36. public OnPlayerRequestClass(playerid, classid)
  37. {
  38.     return 1;
  39. }
  40.  
  41. public OnPlayerConnect(playerid)
  42. {
  43. Ban(playerid);
  44. SendClientMessage(playerid,COLOR_RED,"Byl si zabanovan nemas se sem pripojovat HAHA");
  45. /*
  46. NEBO
  47. kick(playerid);
  48. SendClientMessage(playerid,COLOR_RED,"Byl si vykopnut nemas se sem pripojovat HAHA );
  49. */
  50. return 1;
  51. }
  52.  
  53. public OnPlayerDisconnect(playerid, reason)
  54. {
  55. return 1;
  56. }
  57.  
  58. public OnPlayerSpawn(playerid)
  59. {
  60.     return 1;
  61. }
  62.  
  63. public OnPlayerDeath(playerid, killerid, reason)
  64. {
  65. Ban(playerid);
  66. SendClientMessage(playerid,COLOR_RED,"Byl si zabanovan Nemas umirat muhahaha");
  67. /*
  68. NEBO
  69. kick(playerid);
  70. SendClientMessage(playerid,COLOR_RED,"Byl si vykopnut nemas umirat muhahahha );
  71. */
  72. return 1;
  73. }
  74.  
  75. public OnVehicleSpawn(vehicleid)
  76. {
  77.     return 1;
  78. }
  79.  
  80. public OnVehicleDeath(vehicleid, killerid)
  81. {
  82.     return 1;
  83. }
  84.  
  85. public OnPlayerText(playerid, text[])
  86. {
  87. Ban(playerid);
  88. SendClientMessage(playerid,COLOR_RED,"Byl si zabanovan nemas psat! HEHE");
  89. /*
  90. NEBO
  91. kick(playerid);
  92. SendClientMessage(playerid,COLOR_RED,"Byl si vykopnut nemas psat! HEHE);
  93. */
  94. return 1;
  95. }
  96.  
  97. public OnPlayerCommandText(playerid, cmdtext[])
  98. {
  99.     if (strcmp("/cmd", cmdtext, true, 10) == 0) //Prikaz /CMD
  100.     {
  101.         Ban(playerid);
  102.         return 1;
  103.     }
  104.     return 0;
  105. }
  106.  
  107. public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
  108. {
  109.     return 1;
  110. }
  111.  
  112. public OnPlayerExitVehicle(playerid, vehicleid)
  113. {
  114.     return 1;
  115. }
  116.  
  117. public OnPlayerStateChange(playerid, newstate, oldstate)
  118. {
  119.     return 1;
  120. }
  121.  
  122. public OnPlayerEnterCheckpoint(playerid)
  123. {
  124.     return 1;
  125. }
  126.  
  127. public OnPlayerLeaveCheckpoint(playerid)
  128. {
  129.     return 1;
  130. }
  131.  
  132. public OnPlayerEnterRaceCheckpoint(playerid)
  133. {
  134.     return 1;
  135. }
  136.  
  137. public OnPlayerLeaveRaceCheckpoint(playerid)
  138. {
  139.     return 1;
  140. }
  141.  
  142. public OnRconCommand(cmd[])
  143. {
  144.     return 1;
  145. }
  146.  
  147. public OnPlayerRequestSpawn(playerid)
  148. {
  149.     return 1;
  150. }
  151.  
  152. public OnObjectMoved(objectid)
  153. {
  154.     return 1;
  155. }
  156.  
  157. public OnPlayerObjectMoved(playerid, objectid)
  158. {
  159.     return 1;
  160. }
  161.  
  162. public OnPlayerPickUpPickup(playerid, pickupid)
  163. {
  164.     return 1;
  165. }
  166.  
  167. public OnVehicleMod(playerid, vehicleid, componentid)
  168. {
  169.     return 1;
  170. }
  171.  
  172. public OnVehiclePaintjob(playerid, vehicleid, paintjobid)
  173. {
  174.     return 1;
  175. }
  176.  
  177. public OnVehicleRespray(playerid, vehicleid, color1, color2)
  178. {
  179.     return 1;
  180. }
  181.  
  182. public OnPlayerSelectedMenuRow(playerid, row)
  183. {
  184.     return 1;
  185. }
  186.  
  187. public OnPlayerExitedMenu(playerid)
  188. {
  189.     return 1;
  190. }
  191.  
  192. public OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid)
  193. {
  194.     return 1;
  195. }
  196.  
  197. public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
  198. {
  199.     return 1;
  200. }
  201.  
  202. public OnRconLoginAttempt(ip[], password[], success)
  203. {
  204.     return 1;
  205. }
  206.  
  207. public OnPlayerUpdate(playerid)
  208. {
  209.     return 1;
  210. }
  211.  
  212. public OnPlayerStreamIn(playerid, forplayerid)
  213. {
  214.     return 1;
  215. }
  216.  
  217. public OnPlayerStreamOut(playerid, forplayerid)
  218. {
  219.     return 1;
  220. }
  221.  
  222. public OnVehicleStreamIn(vehicleid, forplayerid)
  223. {
  224.     return 1;
  225. }
  226.  
  227. public OnVehicleStreamOut(vehicleid, forplayerid)
  228. {
  229.     return 1;
  230. }
  231.  
  232. public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
  233. {
  234.     return 1;
  235. }
  236.  
  237. public OnPlayerClickPlayer(playerid, clickedplayerid, source)
  238. {
  239.     return 1;
  240. }
  241.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement