Advertisement
Guest User

Untitled

a guest
Feb 12th, 2011
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.10 KB | None | 0 0
  1. doKillstreakCycle()
  2. {
  3.   self endon("death");
  4.   self endon("disconnect");
  5.  
  6.   self notifyOnPlayerCommand("[{+actionslot2}]", "+actionslot 2");
  7.   while(1)
  8.   {
  9.     self waittill( "[{+actionslot2}]" );
  10.     self maps\mp\gametypes\_hud_message::killstreakSplashNotify("uav", 3);
  11.     self maps\mp\killstreaks\_killstreaks::giveKillstreak("uav", false);
  12.    
  13.     self waittill( "[{+actionslot2}]" );
  14.     self maps\mp\gametypes\_hud_message::killstreakSplashNotify("counter_uav", 4);
  15.     self maps\mp\killstreaks\_killstreaks::giveKillstreak("counter_uav", false);
  16.    
  17.     self waittill( "[{+actionslot2}]" );
  18.     self maps\mp\gametypes\_hud_message::killstreakSplashNotify("airdrop", 4);
  19.     self maps\mp\killstreaks\_killstreaks::giveKillstreak("airdrop", false);
  20.  
  21.     self waittill( "[{+actionslot2}]" );
  22.     self maps\mp\gametypes\_hud_message::killstreakSplashNotify("sentry", 5);
  23.     self maps\mp\killstreaks\_killstreaks::giveKillstreak("sentry", false);
  24.    
  25.     self waittill("[{+actionslot2}]");
  26.     self maps\mp\gametypes\_hud_message::killstreakSplashNotify("predator_missile", 5);
  27.     self maps\mp\killstreaks\_killstreaks::giveKillstreak("predator_missile", false);
  28.  
  29.     self waittill( "[{+actionslot2}]" );
  30.     self maps\mp\gametypes\_hud_message::killstreakSplashNotify("precision_airstrike", 6);
  31.     self maps\mp\killstreaks\_killstreaks::giveKillstreak("precision_airstrike", false);
  32.  
  33.     self waittill( "[{+actionslot2}]" );
  34.     self maps\mp\gametypes\_hud_message::killstreakSplashNotify("helisupport", 7);
  35.     self maps\mp\killstreaks\_killstreaks::giveKillstreak("helisupport", false);
  36.  
  37.     self waittill( "[{+actionslot2}]" );
  38.     self maps\mp\gametypes\_hud_message::killstreakSplashNotify("harrier_airstrike", 7);
  39.     self maps\mp\killstreaks\_killstreaks::giveKillstreak("harrier_airstrike", false);
  40.  
  41.     self waittill( "[{+actionslot2}]" );
  42.     self maps\mp\gametypes\_hud_message::killstreakSplashNotify("airdrop_mega", 8);
  43.     self maps\mp\killstreaks\_killstreaks::giveKillstreak("airdrop_mega", false);
  44.  
  45.     self waittill( "[{+actionslot2}]" );
  46.     self maps\mp\gametypes\_hud_message::killstreakSplashNotify("helicopter_flares", 9);
  47.     self maps\mp\killstreaks\_killstreaks::giveKillstreak("helicopter_flares", false);
  48.  
  49.     self waittill( "[{+actionslot2}]" );
  50.     self maps\mp\gametypes\_hud_message::killstreakSplashNotify("stealth_airstrike", 8);
  51.     self maps\mp\killstreaks\_killstreaks::giveKillstreak("stealth_airstrike", false);
  52.  
  53.     self waittill( "[{+actionslot2}]" );
  54.     self maps\mp\gametypes\_hud_message::killstreakSplashNotify("helicopter_minigun", 11);
  55.     self maps\mp\killstreaks\_killstreaks::giveKillstreak("helicopter_minigun", false);
  56.                                
  57.     self waittill( "[{+actionslot2}]" );
  58.     self maps\mp\gametypes\_hud_message::killstreakSplashNotify("ac130", 11);
  59.     self maps\mp\killstreaks\_killstreaks::giveKillstreak("ac130", false);
  60.  
  61.     self waittill( "[{+actionslot2}]" );
  62.     self maps\mp\gametypes\_hud_message::killstreakSplashNotify("emp", 15);
  63.     self maps\mp\killstreaks\_killstreaks::giveKillstreak("emp", false);
  64.   }
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement