Advertisement
Guest User

BloodyScreen FilterScript by xKiller321x

a guest
Jan 31st, 2013
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.54 KB | None | 0 0
  1. //////////////////////////////////////////////////BloodyScreen Filterscript :P//////////////////////////////////////
  2.  
  3. #define FILTERSCRIPT
  4.  
  5. #include <a_samp>
  6.  
  7. #if defined FILTERSCRIPT
  8. new Text:Blut;
  9. forward blut(playerid);
  10.  
  11. public OnFilterScriptExit()
  12. {
  13. return 1;
  14. }
  15.  
  16. #else
  17.  
  18. main()
  19. {
  20. print("\n----------------------------------");
  21. print(" BloodyScreen by xKiller321x ");
  22. print("----------------------------------\n");
  23. }
  24.  
  25. #endif
  26.  
  27. public OnGameModeInit()
  28. {
  29. // Der Rote Screen
  30. Blut = TextDrawCreate(306.000000, -2.000000, ".");
  31. TextDrawAlignment(Blut, 2);
  32. TextDrawBackgroundColor(Blut, 255);
  33. TextDrawFont(Blut, 1);
  34. TextDrawLetterSize(Blut, 0.889999, 51.199993);
  35. TextDrawColor(Blut, -1);
  36. TextDrawSetOutline(Blut, 0);
  37. TextDrawSetProportional(Blut, 1);
  38. TextDrawSetShadow(Blut, 1);
  39. TextDrawUseBox(Blut, 1);
  40. TextDrawBoxColor(Blut, -1207959526);
  41. TextDrawTextSize(Blut, 29.000000, 664.000000);
  42. return 1;
  43. }
  44.  
  45. public OnGameModeExit()
  46. {
  47. return 1;
  48. }
  49.  
  50. public OnPlayerRequestClass(playerid, classid)
  51. {
  52. return 1;
  53. }
  54.  
  55. public OnPlayerConnect(playerid)
  56. {
  57. return 1;
  58. }
  59.  
  60. public OnPlayerDisconnect(playerid, reason)
  61. {
  62. return 1;
  63. }
  64.  
  65. public OnPlayerSpawn(playerid)
  66. {
  67. SetTimerEx("blut",1000,true,"i",playerid);
  68. return 1;
  69. }
  70. public blut(playerid)
  71. {
  72. new Float:HP;
  73. GetPlayerHealth(playerid,HP);
  74. if(HP <= 20)
  75. {
  76. TextDrawShowForPlayer(playerid,Blut);
  77. }
  78. else
  79. {
  80. TextDrawHideForPlayer(playerid,Blut);
  81. }
  82. }
  83. public OnPlayerDeath(playerid, killerid, reason)
  84. {
  85. return 1;
  86. }
  87.  
  88. public OnVehicleSpawn(vehicleid)
  89. {
  90. return 1;
  91. }
  92.  
  93. public OnVehicleDeath(vehicleid, killerid)
  94. {
  95. return 1;
  96. }
  97.  
  98. public OnPlayerText(playerid, text[])
  99. {
  100. return 1;
  101. }
  102.  
  103. public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
  104. {
  105. return 1;
  106. }
  107.  
  108. public OnPlayerExitVehicle(playerid, vehicleid)
  109. {
  110. return 1;
  111. }
  112.  
  113. public OnPlayerStateChange(playerid, newstate, oldstate)
  114. {
  115. return 1;
  116. }
  117.  
  118. public OnPlayerEnterCheckpoint(playerid)
  119. {
  120. return 1;
  121. }
  122.  
  123. public OnPlayerLeaveCheckpoint(playerid)
  124. {
  125. return 1;
  126. }
  127.  
  128. public OnPlayerEnterRaceCheckpoint(playerid)
  129. {
  130. return 1;
  131. }
  132.  
  133. public OnPlayerLeaveRaceCheckpoint(playerid)
  134. {
  135. return 1;
  136. }
  137.  
  138. public OnRconCommand(cmd[])
  139. {
  140. return 1;
  141. }
  142.  
  143. public OnPlayerRequestSpawn(playerid)
  144. {
  145. return 1;
  146. }
  147.  
  148. public OnObjectMoved(objectid)
  149. {
  150. return 1;
  151. }
  152.  
  153. public OnPlayerObjectMoved(playerid, objectid)
  154. {
  155. return 1;
  156. }
  157.  
  158. public OnPlayerPickUpPickup(playerid, pickupid)
  159. {
  160. return 1;
  161. }
  162.  
  163. public OnVehicleMod(playerid, vehicleid, componentid)
  164. {
  165. return 1;
  166. }
  167.  
  168. public OnVehiclePaintjob(playerid, vehicleid, paintjobid)
  169. {
  170. return 1;
  171. }
  172.  
  173. public OnVehicleRespray(playerid, vehicleid, color1, color2)
  174. {
  175. return 1;
  176. }
  177.  
  178. public OnPlayerSelectedMenuRow(playerid, row)
  179. {
  180. return 1;
  181. }
  182.  
  183. public OnPlayerExitedMenu(playerid)
  184. {
  185. return 1;
  186. }
  187.  
  188. public OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid)
  189. {
  190. return 1;
  191. }
  192.  
  193. public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
  194. {
  195. return 1;
  196. }
  197.  
  198. public OnRconLoginAttempt(ip[], password[], success)
  199. {
  200. return 1;
  201. }
  202.  
  203. public OnPlayerUpdate(playerid)
  204. {
  205. return 1;
  206. }
  207.  
  208. public OnPlayerStreamIn(playerid, forplayerid)
  209. {
  210. return 1;
  211. }
  212.  
  213. public OnPlayerStreamOut(playerid, forplayerid)
  214. {
  215. return 1;
  216. }
  217.  
  218. public OnVehicleStreamIn(vehicleid, forplayerid)
  219. {
  220. return 1;
  221. }
  222.  
  223. public OnVehicleStreamOut(vehicleid, forplayerid)
  224. {
  225. return 1;
  226. }
  227.  
  228. public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
  229. {
  230. return 1;
  231. }
  232.  
  233. public OnPlayerClickPlayer(playerid, clickedplayerid, source)
  234. {
  235. return 1;
  236. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement