Guest User

CMG4life

a guest
Nov 7th, 2007
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. //------------------------------------------------------------------------------
  2. // FilterScript Sumo
  3. // BY .::: CMG :::.
  4. //------------------------------------------------------------------------------
  5.  
  6. #include <a_samp>
  7. #if defined FILTERSCRIPT
  8.  
  9. public OnFilterScriptInit()
  10. {
  11. print("\n--------------------------------------");
  12. print(" Sumo");
  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(" Sumo");
  28. print("----------------------------------\n");
  29. }
  30.  
  31. #endif
  32.  
  33. public OnFilterScriptInit()
  34. {
  35. //Spawnpoints:
  36. CreateVehicle(402, -441.641510, 2464.225586, 129.338226, 349, -1, -1, 120000); //spawnpoint
  37. CreateVehicle(402, -472.260742, 2521.637695, 128.863129, 248, -1, -1, 120000); //spawnpoint (1)
  38. CreateVehicle(402, -393.371033, 2482.010254, 129.413300, 55, -1, -1, 120000); //spawnpoint (2)
  39. CreateVehicle(402, -416.283447, 2546.653320, 129.338226, 166, -1, -1, 120000); //spawnpoint (3)
  40.  
  41. //Objects:
  42. CreateObject(13607, -429.460724, 2506.028809, 127.372597, 0, 0, 0);
  43. CreateObject(1655, -472.253296, 2521.357178, 124.883629, 0, 0, 67.7916);
  44. CreateObject(1655, -441.633270, 2462.473633, 124.790573, 0, 0, 166.6266);
  45. CreateObject(1655, -392.056885, 2481.023438, 124.733620, 0, 0, 237.1005);
  46. CreateObject(1655, -416.007263, 2548.595215, 124.815575, 0, 0, 346.249);
  47. CreateObject(971, -415.275391, 2551.625732, 130.185120, 0, 0, 347.1084);
  48. CreateObject(971, -475.061920, 2522.642090, 130.387924, 0, 0, 67.8955);
  49. CreateObject(971, -442.401428, 2459.557861, 129.959259, 0, 0, 347.1084);
  50. CreateObject(971, -389.564941, 2479.350586, 130.202225, 0, 0, 55.8634);
  51. }
  52.  
  53. public OnPlayerCommandText(playerid,cmdtext[])
  54. {
  55. if( !strcmp(cmdtext,"/sumo",true ))
  56. {
  57. {
  58. SetPlayerPos(playerid,-429.922394, 2506.329834, 131.333527);
  59. }
  60. return 1;
  61. }
  62. return 0;
  63. }
Advertisement
Add Comment
Please, Sign In to add comment