LaZim

Here Voice Welcome

Oct 8th, 2012
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.07 KB | None | 0 0
  1. // This is a comment
  2. // uncomment the line below if you want to write a filterscript
  3. //#define FILTERSCRIPT
  4.  
  5. #include <a_samp>
  6.  
  7. #if defined FILTERSCRIPT
  8.  
  9. public OnFilterScriptInit()
  10. {
  11.     print("\n--------------------------------------");
  12.     print(" Voice FS Enter Created By Manish");
  13.     print("--------------------------------------\n");
  14.     return 1;
  15. }
  16.  
  17. public OnFilterScriptExit()
  18. {
  19.     return 1;
  20. }
  21.  
  22. #else
  23.  
  24. main()
  25. {
  26.     print("\n----------------------------------");
  27.     print(" Voice FS Exit Created By Manish");
  28.     print("----------------------------------\n");
  29. }
  30.  
  31. #endif
  32.  
  33. public OnPlayerRequestClass(playerid, classid)
  34. {
  35.     return 1;
  36. }
  37.  
  38. public OnPlayerConnect(playerid)
  39. {
  40.     PlayAudioStreamForPlayer(playerid, "http://translate.google.com/translate_tts?tl=en&q=Welcome");
  41.     return 1;
  42. }
  43.  
  44. public OnPlayerDisconnect(playerid, reason)
  45. {
  46.     return 1;
  47. }
  48.  
  49. public OnPlayerSpawn(playerid)
  50. {
  51.     return 1;
  52. }
  53.  
  54. public OnPlayerDeath(playerid, killerid, reason)
  55. {
  56.     return 1;
  57. }
  58.  
  59. public OnVehicleSpawn(vehicleid)
  60. {
  61.     return 1;
  62. }
  63.  
  64. public OnVehicleDeath(vehicleid, killerid)
  65. {
  66.     return 1;
  67. }
  68.  
  69. public OnPlayerText(playerid, text[])
  70. {
  71.     return 1;
  72. }
  73.  
  74. public OnPlayerCommandText(playerid, cmdtext[])
  75. {
  76.     return 0;
  77. }
  78.  
  79. public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
  80. {
  81.     return 1;
  82. }
  83.  
  84. public OnPlayerExitVehicle(playerid, vehicleid)
  85. {
  86.     return 1;
  87. }
  88.  
  89. public OnPlayerStateChange(playerid, newstate, oldstate)
  90. {
  91.     return 1;
  92. }
  93.  
  94. public OnPlayerEnterCheckpoint(playerid)
  95. {
  96.     return 1;
  97. }
  98.  
  99. public OnPlayerLeaveCheckpoint(playerid)
  100. {
  101.     return 1;
  102. }
  103.  
  104. public OnPlayerEnterRaceCheckpoint(playerid)
  105. {
  106.     return 1;
  107. }
  108.  
  109. public OnPlayerLeaveRaceCheckpoint(playerid)
  110. {
  111.     return 1;
  112. }
  113.  
  114. public OnRconCommand(cmd[])
  115. {
  116.     return 1;
  117. }
  118.  
  119. public OnPlayerRequestSpawn(playerid)
  120. {
  121.     return 1;
  122. }
  123.  
  124. public OnObjectMoved(objectid)
  125. {
  126.     return 1;
  127. }
  128.  
  129. public OnPlayerObjectMoved(playerid, objectid)
  130. {
  131.     return 1;
  132. }
  133.  
  134. public OnPlayerPickUpPickup(playerid, pickupid)
  135. {
  136.     return 1;
  137. }
  138.  
  139. public OnVehicleMod(playerid, vehicleid, componentid)
  140. {
  141.     return 1;
  142. }
  143.  
  144. public OnVehiclePaintjob(playerid, vehicleid, paintjobid)
  145. {
  146.     return 1;
  147. }
  148.  
  149. public OnVehicleRespray(playerid, vehicleid, color1, color2)
  150. {
  151.     return 1;
  152. }
  153.  
  154. public OnPlayerSelectedMenuRow(playerid, row)
  155. {
  156.     return 1;
  157. }
  158.  
  159. public OnPlayerExitedMenu(playerid)
  160. {
  161.     return 1;
  162. }
  163.  
  164. public OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid)
  165. {
  166.     return 1;
  167. }
  168.  
  169. public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
  170. {
  171.     return 1;
  172. }
  173.  
  174. public OnRconLoginAttempt(ip[], password[], success)
  175. {
  176.     return 1;
  177. }
  178.  
  179. public OnPlayerUpdate(playerid)
  180. {
  181.     return 1;
  182. }
  183.  
  184. public OnPlayerStreamIn(playerid, forplayerid)
  185. {
  186.     return 1;
  187. }
  188.  
  189. public OnPlayerStreamOut(playerid, forplayerid)
  190. {
  191.     return 1;
  192. }
  193.  
  194. public OnVehicleStreamIn(vehicleid, forplayerid)
  195. {
  196.     return 1;
  197. }
  198.  
  199. public OnVehicleStreamOut(vehicleid, forplayerid)
  200. {
  201.     return 1;
  202. }
  203.  
  204. public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
  205. {
  206.     return 1;
  207. }
  208.  
  209. public OnPlayerClickPlayer(playerid, clickedplayerid, source)
  210. {
  211.     return 1;
  212. }
Advertisement
Add Comment
Please, Sign In to add comment