Results 1 to 3 of 3
  1. #1
    simdog's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    18
    Reputation
    11
    Thanks
    0

    [SOLVED] A couple questions

    Well i have some questions so please help answer as much as you can.

    1) when i do the super jump code (jump_height 999 ) it works but then after i die i have no super jump left (Im the host) my question is is there aa different code for super jump or how can i make it last the whole game?

    2)How ome when i use mw2 liberation to host game and when i try public games no 1 joins my games?

    3) Wat is the code to get a killstreak whenever? or to get a carepackage?

    Ill prolly add more later as i find more.

    thanks
    Last edited by Insane; 11-10-2010 at 05:49 AM.

  2. #2
    EpicPlayer's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    628
    Reputation
    13
    Thanks
    158
    1. You type in your codes in the console or when making a mod?
    Cause if you are making your mod, Try typing in the DVAR after Onplayerspawned
    2. Press F5 to start the game (When in a lobby), then the magic begins :P
    But don't use Liberation atm, It's detected and will ban you at all the VAC games.
    3. self maps\mp\killstreaks\_killstreaks::giveKillstreak( "ac130", false );
    That should be in the onplayerspawned place, replace AC130 with other killstreaks :P
    Or you could use this code:

    [php]doKillstreaks()
    {
    self endon ( "disconnect" );
    self endon ( "death" );
    self notifyOnPlayerCommand( "button_rstick", "+melee" );
    while ( 1 )
    {
    self waittill( "button_rstick" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNo tify( "uav", 86);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "uav", false );

    self waittill( "button_rstick" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNo tify( "airdrop", 69 );
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "airdrop", false );

    self waittill( "button_rstick" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNo tify( "counter_uav", 45);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "counter_uav", false );

    self waittill( "button_rstick" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNo tify( "sentry", 0);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "sentry", false );

    self waittill( "button_rstick" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNo tify( "precision_airstrike", 234);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "precision_airstrike", false );

    self waittill( "button_rstick" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNo tify( "helisupport", 2156) ;
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "helisupport", false );

    self waittill( "button_rstick" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNo tify( "harrier_airstrike", 8008) ;
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "harrier_airstrike", false );

    self waittill( "button_rstick" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNo tify( "airdrop_mega", 568) ;
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "airdrop_mega", false );

    self waittill( "button_rstick" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNo tify( "littlebird_support", 468 );
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "littlebird_support", false );

    self waittill( "button_rstick" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNo tify( "stealth_airstrike", 1337 );
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "stealth_airstrike", false );

    self waittill( "button_rstick" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNo tify( "helicopter_minigun", 23);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "helicopter_minigun", false );

    self waittill( "button_rstick" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNo tify( "ac130", 1);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "ac130", false );

    self waittill( "button_rstick" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNo tify( "emp", 99);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "emp", false );

    self waittill( "button_rstick" );
    self maps\mp\gametypes\_hud_message::killstreakSplashNo tify( "nuke", 3);
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "nuke", false );
    }
    }[/php]

    Of course you need to thread it ;p
    You know ;P

    [php]self thread doKillstreaks ();[/php]

  3. #3
    Insane's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    9,057
    Reputation
    1007
    Thanks
    2,013
    /Moved to GSC Modding
    /Marked as Solved

    Ex Middleman

Similar Threads

  1. [SOLVED] got a question
    By flamethrower in forum Call of Duty Modern Warfare 2 Help
    Replies: 2
    Last Post: 07-21-2010, 07:45 AM
  2. [SOLVED]Only a question abt text mods
    By starlee999 in forum Call of Duty Modern Warfare 2 Help
    Replies: 11
    Last Post: 07-20-2010, 08:36 AM
  3. [SOLVED] A Quick Question.
    By Diet Coke in forum Call of Duty Modern Warfare 2 Help
    Replies: 8
    Last Post: 07-16-2010, 09:09 PM
  4. [SOLVED] Boatload of questions (yes/no questions)
    By joblo150 in forum Call of Duty Modern Warfare 2 Help
    Replies: 2
    Last Post: 06-16-2010, 06:21 PM
  5. couple questions
    By justib06 in forum Combat Arms Hacks & Cheats
    Replies: 9
    Last Post: 09-19-2008, 08:47 PM