Guest User

NEW.PWN

a guest
Jan 14th, 2017
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. #include <a_samp>
  2. #include <streamer>
  3. #include <sscanf2>
  4. #include <ZCMD>
  5.  
  6. main()
  7. {
  8. print("\n----------------------------------");
  9. print(" Blank Gamemode by your name here");
  10. print("----------------------------------\n");
  11. }
  12.  
  13. public OnGameModeInit()
  14. {
  15. // Don't use these lines if it's a filterscript
  16. SetGameModeText("Blank Script");
  17. AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
  18. return 1;
  19. }
  20.  
  21. public OnGameModeExit()
  22. {
  23. return 1;
  24. }
  25.  
  26. public OnPlayerRequestClass(playerid, classid)
  27. {
  28. SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
  29. SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
  30. SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
  31. return 1;
  32. }
  33.  
  34. public OnPlayerConnect(playerid)
  35. {
  36. return 1;
  37. }
  38.  
  39. public OnPlayerDisconnect(playerid, reason)
  40. {
  41. return 1;
  42. }
  43.  
  44. public OnPlayerSpawn(playerid)
  45. {
  46. return 1;
  47. }
  48.  
  49. public OnPlayerDeath(playerid, killerid, reason)
  50. {
  51. return 1;
  52. }
  53.  
  54. public OnVehicleSpawn(vehicleid)
  55. {
  56. return 1;
  57. }
  58.  
  59. public OnVehicleDeath(vehicleid, killerid)
  60. {
  61. return 1;
  62. }
  63.  
  64. public OnPlayerText(playerid, text[])
  65. {
  66. return 1;
  67. }
Advertisement
Add Comment
Please, Sign In to add comment