Advertisement
Guest User

[FS] Rockline Bomb Death Match

a guest
Mar 23rd, 2010
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 2.93 KB | None | 0 0
  1. /*
  2. Credits to:
  3. Rockline, for his idea and programming
  4.     DO NOT REMOVE THIS
  5. */
  6.  
  7. #include <a_samp>
  8.  
  9. #define FILTERSCRIPT
  10. #define COLOR_WHITE 0xFFFFFFAA
  11. #define COLOR_YELLOW 0xFFFF00AA
  12. #define COLOR_GREEN 0x33AA33AA
  13. #define COLOR_RED 0xAA3333AA
  14.  
  15. main()
  16. {
  17.     print("\n--------------------------------------");
  18.     print("        Rocklines's Death Match!   ");
  19.     print("--------------------------------------\n");
  20. }
  21.  
  22. public OnFilterScriptInit()
  23. {
  24.     print("\n--------------------------------------");
  25.     print("        Rocklines's Death Match!   ");
  26.     print("--------------------------------------\n");
  27.     CreateObject(986, 247.41, 1841.84, 8.77, 0.00, 0.00, 0.00); // hek
  28.     CreateObject(987, 264.44, 1841.67, 4.85, 0.00, 0.00, 0.00); // hek
  29.     CreateObject(1225, 251.28, 1853.82, 6.79, 0.00, 0.00, 0.00);
  30.     CreateObject(1225, 254.42, 1852.55, 6.79, 0.00, 0.00, 0.00);
  31.     CreateObject(1225, 259.31, 1852.58, 6.79, 0.00, 0.00, 0.00);
  32.     CreateObject(1225, 260.70, 1854.59, 6.79, 0.00, 0.00, 0.00);
  33.     CreateObject(1225, 261.40, 1861.06, 6.28, 0.00, 0.00, 0.00);
  34.     CreateObject(1225, 262.06, 1864.53, 6.28, 0.00, 0.00, 0.00);
  35.     CreateObject(1225, 261.43, 1870.51, 6.28, 0.00, 0.00, 0.00);
  36.     CreateObject(1225, 243.95, 1872.48, 6.28, 0.00, 0.00, 0.00);
  37.     CreateObject(1225, 243.86, 1880.18, 8.28, 0.00, 0.00, 0.00);
  38.     CreateObject(1225, 247.56, 1882.17, 9.27, 0.00, 0.00, 0.00);
  39.     CreateObject(1225, 242.71, 1879.58, 8.28, 0.00, 0.00, 0.00);
  40.     CreateObject(1225, 253.66, 1880.27, 9.28, 0.00, 0.00, 0.00);
  41.     CreateObject(1225, 254.90, 1877.06, 7.58, 0.00, 0.00, 0.00);
  42.     CreateObject(1225, 255.93, 1871.30, 6.77, 0.00, 0.00, 0.00);
  43.     CreateObject(1225, 258.93, 1871.28, 5.89, 0.00, 0.00, 0.00);
  44.     CreateObject(2780, 251.73, 1847.38, 4.78, 0.00, 0.00, 0.00);
  45.     CreateObject(2780, 249.68, 1868.61, 4.77, 0.00, 0.00, 0.00);
  46.     CreateObject(3630, 258.19, 1861.70, 8.76, 0.00, 0.00, 0.00);
  47.     CreateObject(3630, 233.81, 1872.42, 11.47, 0.00, 0.00, 0.00);
  48.     CreateObject(3172, 228.20, 1861.46, 12.47, 0.00, 0.00, 0.00);
  49.     CreateObject(1225, 237.78, 1871.92, 10.32, 0.00, 0.00, 0.00);
  50.     CreateObject(1225, 256.26, 1866.29, 7.64, 0.00, 0.00, 0.00);
  51.     CreateObject(1225, 255.85, 1869.08, 6.77, 0.00, 0.00, 0.00);
  52.     CreateObject(1225, 251.31, 1864.90, 7.77, 0.00, 0.00, 0.00);
  53.     CreateObject(1225, 256.49, 1861.81, 6.76, 0.00, 0.00, 0.00);
  54.     CreateObject(1225, 257.06, 1857.24, 6.28, 0.00, 0.00, 0.00);
  55.     return 1;
  56. }
  57.  
  58. public OnPlayerCommandText(playerid, cmdtext[])
  59. {
  60.     if( !strcmp(cmdtext,"/rbdm",true ))
  61.     {
  62.         SetPlayerVirtualWorld(playerid, 0);
  63.         GivePlayerWeapon(playerid, 27, 15);
  64.         GivePlayerWeapon(playerid, 32, 230);
  65.         GivePlayerWeapon(playerid, 31, 180);
  66.         SetPlayerArmour(playerid, 100);
  67.         SetPlayerPos(playerid,240.8035,1844.6196,8.7578);
  68.         SendClientMessage(playerid,COLOR_GREEN, "Welcome To: Rockline's Bomb Death Match!");
  69.         return 1;
  70.     }
  71.     if( !strcmp(cmdtext,"/rhelp",true ))
  72.     {
  73.         SendClientMessage(playerid, COLOR_GREEN, "TELES: /rbdm");
  74.         return 1;
  75.     }
  76.     return 0;
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement