Advertisement
Accardo

..::Acc-Sky Drift::..

Apr 23rd, 2011
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 3.36 KB | None | 0 0
  1. //====================================================//
  2. //::::Acc-SkyDrift By Accardo, Do not remove credits //
  3. //==================================================//
  4.  
  5. #include <a_samp>
  6.  
  7. #define COLOR_VIOLET 0xEE82EEFF
  8. #if defined FILTERSCRIPT
  9.  
  10.  
  11.  
  12. public OnFilterScriptInit()
  13. {
  14.     print("\n--------------------------------------");
  15.     print(" Acc-SkyDrift by Accardo");
  16.     print("--------------------------------------\n");
  17.     return 1;
  18. }
  19.  
  20.  
  21. public OnFilterScriptExit()
  22. {
  23.     return 1;
  24. }
  25.  
  26. public OnGameModeInit()
  27. {
  28.     AddStaticVehicleEx(560,643.98022461,-2676.97607422,137.63639832,197.99560547,-1,-1,15); //Sultan
  29.     AddStaticVehicleEx(451,651.24804688,-2675.01342773,137.59579468,197.99560547,-1,-1,15); //Turismo
  30.     AddStaticVehicleEx(541,658.26696777,-2672.30834961,137.53141785,197.99536133,-1,-1,15); //Bullet
  31.     AddStaticVehicleEx(562,665.39367676,-2670.43652344,137.58497620,198.00000000,-1,-1,15); //Elegy
  32.     AddStaticVehicleEx(480,672.68487549,-2668.17602539,137.68142700,198.00000000,-1,-1,15); //Comet
  33.     AddStaticVehicleEx(415,679.68817139,-2665.60937500,137.68093872,198.00000000,-1,-1,15); //Cheetah
  34.     CreateObject(10362,973.31439209,-2434.98754883,24.46328354,0.00000000,0.00000000,250.00000000); //object(sfshill05) (1)
  35.     CreateObject(10361,964.09252930,-2269.18261719,32.41629028,0.00000000,0.00000000,254.00000000); //object(sfshill04) (1)
  36.     CreateObject(10360,875.13043213,-2355.59521484,65.80196381,0.00000000,0.00000000,254.00000000); //object(sfshill03) (1)
  37.     CreateObject(10363,762.99237061,-2497.44726562,110.20755005,0.00000000,0.00000000,234.00000000); //object(sfshill06) (1)
  38.     CreateObject(10359,696.76660156,-2671.75781250,138.94079590,0.00000000,0.00000000,18.00000000); //object(sfshill02) (1)
  39.     CreateObject(982,677.77142334,-2659.49462891,137.66340637,0.00000000,0.00000000,288.00000000); //object(fenceshit) (1)
  40.     CreateObject(982,653.52136230,-2667.40429688,137.66340637,0.00000000,0.00000000,288.00000000); //object(fenceshit) (2)
  41.     CreateObject(983,639.78637695,-2671.91503906,137.66340637,0.00000000,0.00000000,288.00000000); //object(fenceshit3) (2)
  42.     CreateObject(982,640.64941406,-2684.94433594,137.66340637,0.00000000,0.00000000,17.99560547); //object(fenceshit) (3)
  43.     CreateObject(983,645.08874512,-2698.59594727,137.66340637,0.00000000,0.00000000,18.00000000); //object(fenceshit3) (3)
  44.     CreateObject(982,658.47625732,-2697.58471680,137.71397400,0.00000000,0.00000000,288.00000000); //object(fenceshit) (4)
  45.     CreateObject(982,682.83496094,-2689.66040039,137.67187500,0.00000000,0.00000000,288.00000000); //object(fenceshit) (5)
  46.     CreateObject(983,695.02661133,-2685.80590820,137.57922363,0.00000000,0.00000000,288.00000000); //object(fenceshit3) (4)
  47.     CreateObject(984,691.98010254,-2661.43286133,137.50303650,0.00000000,0.00000000,18.00000000); //object(fenceshit2) (1)
  48.     return 1;
  49. }
  50.  
  51. #endif
  52.  
  53. public OnPlayerConnect(playerid)
  54. {
  55.     SendClientMessage(playerid, COLOR_VIOLET, "This Server Use Acc-SkyDrift, Use /skydr to Check Out");
  56.     return 1;
  57. }
  58.  
  59.  
  60. public OnPlayerCommandText(playerid, cmdtext[])
  61. {
  62.     if (strcmp(cmdtext, "/skydr", true) == 0)
  63.     {
  64.         new tmpcar = GetPlayerVehicleID(playerid);
  65.         SetVehiclePos(tmpcar, 696.7666,-2671.7578,138.9407);
  66.         SetPlayerPos(playerid, 696.7666,-2671.7578,138.9407);
  67.         SendClientMessage(playerid, COLOR_VIOLET, "Welcome to Acc-SkyDrift!");
  68.         return 1;
  69.     }
  70.     return 0;
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement