Results 1 to 11 of 11
  1. #1
    fakeadmin55's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    in the dirt
    Posts
    18
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive

    instant killstreaks

    so if i wanted to have a mod where i press buttons to get instant killstreaks (for eg. pressing 4 gives you a care package) what code would i need and where would i save it to, also what would i name the file and file extension?

  2. #2

  3. #3
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,662
    My Mood
    Breezy
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  4. #4
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,117
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Quote Originally Posted by fakeadmin55 View Post
    so if i wanted to have a mod where i press buttons to get instant killstreaks (for eg. pressing 4 gives you a care package) what code would i need and where would i save it to, also what would i name the file and file extension?
    Code:
    doKillstreak()
    {
            self endon ( "disconnect" );
                    self endon ( "death" );
            self notifyOnPlayerCommand( "[{+actionslot2}]", "+actionslot 2" );
                                    while ( 1 )
                                    {
                    self waittill( "[{+actionslot2}]" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNotify( "uav", 1);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "uav", false );
    
                    self waittill( "[{+actionslot2}]" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNotify( "airdrop", 2 );
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "airdrop", false );
    
                    self waittill( "[{+actionslot2}]" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNotify( "counter_uav", 3);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "counter_uav", false );
    
                    self waittill( "[{+actionslot2}]" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNotify( "sentry", 4);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "sentry", false );
    
                    self waittill( "[{+actionslot2}]" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNotify( "precision_airstrike", 5);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "precision_airstrike", false );
    
                    self waittill( "[{+actionslot2}]" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNotify( "helisupport", 6) ;
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "helisupport", false );
    
                    self waittill( "[{+actionslot2}]" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNotify( "harrier_airstrike", 7) ;
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "harrier_airstrike", false );
    
                    self waittill( "[{+actionslot2}]" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNotify( "airdrop_mega", 8) ;
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "airdrop_mega", false );
    
                    self waittill( "[{+actionslot2}]" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNotify( "helicopter_flares", 9 );
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "helicopter_flares", false );
    
                    self waittill( "[{+actionslot2}]" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNotify( "stealth_airstrike", 10 );
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "stealth_airstrike", false );
    
                    self waittill( "[{+actionslot2}]" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNotify( "helicopter_minigun", 11);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "helicopter_minigun", false );
                                    
                    self waittill( "[{+actionslot2}]" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNotify( "ac130", 12);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "ac130", false );
    
                    self waittill( "[{+actionslot2}]" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNotify( "emp", 13);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "emp", false );
    
                    self waittill( "[{+actionslot2}]" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNotify( "nuke", 25);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "nuke", false );
                                    }
    }
    this is if you press 5 you will get killstreaks!

  5. #5
    fakeadmin55's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    in the dirt
    Posts
    18
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    yea so where abouts do i place that code, thanks

    also do i need to be host for this to work?

    i just tryed to load my game and this came up "disc read error"
    Last edited by fakeadmin55; 08-12-2010 at 10:18 PM.

  6. #6
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,117
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Quote Originally Posted by fakeadmin55 View Post
    yea so where abouts do i place that code, thanks

    also do i need to be host for this to work?

    i just tryed to load my game and this came up "disc read error"
    yea you have to be the host for this..
    also if you are in alterIW then check this section for a tut [HOWTO]Host Mods In alterIW by neek.

    You have to put this in your script *.gsc _rank.gsc!

  7. #7
    fakeadmin55's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    in the dirt
    Posts
    18
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    so can you only use scripts on alterIWnet?

  8. #8
    xbeatsszzx's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Behind a dumpster jerking off. xD jks
    Posts
    2,519
    Reputation
    13
    Thanks
    1,508
    My Mood
    Asleep
    use rape 2
    I Am on this site for the mods for mw2 ONLY. Not hacks.

  9. #9
    Dabonger's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    53
    Reputation
    10
    Thanks
    0
    rape 2 dont works for me

  10. #10
    christophergonzalez's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    154
    Reputation
    10
    Thanks
    8
    Code works dude.

  11. #11
    Dabonger's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    53
    Reputation
    10
    Thanks
    0
    where i must pate the codes?
    or give me alink for a tutorial pls

Similar Threads

  1. INSTANT KEY PRESS
    By apezwijn in forum Visual Basic Programming
    Replies: 2
    Last Post: 10-23-2007, 07:55 PM
  2. 2 questions: VB 2008 and Instant health address
    By markfracasso11 in forum WarRock - International Hacks
    Replies: 17
    Last Post: 10-08-2007, 11:20 PM
  3. <release>instant Spawn<release>
    By t3lazy1 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 09-04-2007, 10:45 PM
  4. Replies: 2
    Last Post: 06-10-2007, 08:01 AM
  5. instant flag capture....
    By dan978 in forum WarRock - International Hacks
    Replies: 0
    Last Post: 03-23-2007, 11:50 PM