Advertisement
Guest User

BGBuLLDoZeR

a guest
Feb 19th, 2010
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. //------------------------------------------------------------------------------
  2. // FilterScript Los Santos Tuning Cars
  3. // BY [BG]BuLLDoZeR
  4. //------------------------------------------------------------------------------
  5.  
  6.  
  7. #include <a_samp>
  8. #if defined FILTERSCRIPT
  9.  
  10. public OnFilterScriptInit()
  11. {
  12. print("\n--------------------------------------");
  13. print(" FilterScript Los Santos Tuning Cars By : [BG]BuLLDoZeR ");
  14. print("--------------------------------------\n");
  15. return 1;
  16. }
  17.  
  18. public OnFilterScriptExit()
  19. {
  20. return 1;
  21. }
  22.  
  23. #else
  24.  
  25. main()
  26. {
  27. print("\n----------------------------------");
  28. print(" FilterScript Los Santos Tuning Cars By : [BG]BuLLDoZeR");
  29. print("----------------------------------\n");
  30. }
  31.  
  32. #endif
  33.  
  34. public OnGameModeInit()
  35. {
  36. //Objects:
  37. CreateObject(966, 2705.0844726563, -2007.6257324219, 12.39001750946, 0, 0, 270.67565917969); //barrier (1)
  38. CreateObject(968, 2705.1320800781, -2007.5821533203, 13.39001750946, 0, 0, 274.64562988281); //barrier (2)
  39. CreateObject(978, 2700.4951171875, -1998.7541503906, 13.387419700623, 0, 0, 176.66442871094); //right wall (1)
  40. CreateObject(978, 2691.1354980469, -1998.7204589844, 13.387419700623, 0, 0, 182.61938476563); //right wall (2)
  41. CreateObject(978, 2677.3618164063, -1998.8885498047, 13.394907951355, 0, 0, 178.6494140625); //right wall (3)
  42. CreateObject(978, 2668.0561523438, -1998.9361572266, 13.394907951355, 0, 0, 182.61938476563); //right wall (4)
  43. CreateObject(978, 2658.8576660156, -1998.7973632813, 13.394907951355, 0, 0, 178.6494140625); //right wall (5)
  44. CreateObject(978, 2647.0515136719, -1998.9454345703, 13.394907951355, 0, 0, 180.63439941406); //right wall (6)
  45. CreateObject(979, 2700.08984375, -2009.1522216797, 13.394907951355, 0, 0, 0);//left wall (1)
  46. CreateObject(979, 2678.0744628906, -2009.1573486328, 13.394907951355, 0, 0, 0);//left wall (2)
  47. CreateObject(979, 2666.1127929688, -2009.0546875, 13.394907951355, 0, 0, 0);//left wall (3)
  48. CreateObject(979, 2656.994140625, -2009.0926513672, 13.394907951355, 0, 0, 0);//left wall (4)
  49. CreateObject(2780, 2649.55078125, -2033.3041992188, 12.554042816162, 0, 0, 0); //whitebox (1)
  50. }
  51.  
  52. public OnPlayerCommandText(playerid,cmdtext[])
  53. {
  54. if( !strcmp(cmdtext,"/tuning",true ))
  55. {
  56. SetPlayerPos(playerid,2647.6853027344,-2003.1849365234,13.3828125);
  57. }
  58. return 0;
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement