Advertisement
Matheus_Vieira

AULA-MATHEUS2

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