Results 1 to 4 of 4
  1. #1
    matzelanix's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0

    Question Instantly standing still and freezing position if game ends

    Hello!

    I have no clue how modding in mw2 works but i want to make a simple mod for liberation. If the round ends that i instantly stop moving and freezing the position like in cod4 if the round ends if you know what i mean.. If you know the TSD mod (TrickShotDummy mod) and you press N (for the menu) your position freezes and i want to have this effect if the round ends (like last kill in snd).

    I really appreciate if you would help me

  2. #2
    Horror's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    51,4.
    Posts
    6,920
    Reputation
    574
    Thanks
    5,050
    My Mood
    Twisted
    Well lookup the code for that menu, and filter through it to decide what line does what, and then start a mod from scratch
    I haven't got that much experience, so can't help at all, sorry.
     

    Minion+ : February 2014 - January 2015
    Counter Strike: Global Offensive Minion : November 2014 - January 2015
    Alliance of Valiant Arms Minion : August 2014 - January 2015
    Need For Speed World Minion : January 2014 - January 2015
    Rust Minion : January 2014 - January 2015
    Call of Duty Minion : January 2013 - January 2015
    Editor : December 2012 - April 2013
    Donator : March 2014 - Current
    Member : October 2010 - Current

    Previously known as "Isaakske".

  3. #3
    lolunnamed's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    0

    respond if you didnt find it

    BEFORE YOU START DOING THIS I DID THIS IN TSD MOD SO I HAVE NO CLUE IF IT WORKS IN ANY OTHER MODS

    Okay so you're gonna go to your mod folder (\maps\mp\gametypes), open the file _gamelogic.gsc
    search for this thread:
    Code:
    freezePlayerForRoundEnd( delay )
    It should look like this:
    Code:
    freezePlayerForRoundEnd( delay )
    {
    	self endon ( "disconnect" );
    	self clearLowerMessages();
    	
    	if ( !isDefined( delay ) )
    		delay = 0.05;
    	
    	self closepopupMenu();
    	self closeInGameMenu();
    	
    	wait ( delay );
    	self freezeControlsWrapper( true );
    	self disableWeapons();
    }
    You're gonna delete this line:
    Code:
    self freezeControlsWrapper( true );
    So it looks like this:
    Code:
    freezePlayerForRoundEnd( delay )
    {
    	self endon ( "disconnect" );
    	self clearLowerMessages();
    	
    	if ( !isDefined( delay ) )
    		delay = 0.05;
    	
    	self closepopupMenu();
    	self closeInGameMenu();
    	
    	wait ( delay );
    	self disableWeapons();
    }
    Save it and go play your mod, I hope this helped you

  4. #4
    matzelanix's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    obv you are a trickshotter so i can talk "normal" with you

    i want an mw2 floater mod where you hit a shot and float like in cod 4 or bo1 or shet

Similar Threads

  1. Moderator and helper positions
    By PyrexxHero® in forum Suggestions, Requests & General Help
    Replies: 3
    Last Post: 04-13-2009, 12:28 PM
  2. NEW PATCH LAG AND FREEZES
    By soultaker in forum WarRock - International Hacks
    Replies: 5
    Last Post: 10-14-2007, 03:21 AM
  3. Fuck Wal Mart And Their Gay Ass Games
    By coffeecafef in forum Flaming & Rage
    Replies: 5
    Last Post: 08-27-2007, 10:44 PM
  4. Replies: 2
    Last Post: 06-10-2007, 08:01 AM
  5. need anti-kick and one position kill!!
    By gmrapno1 in forum WarRock - International Hacks
    Replies: 9
    Last Post: 05-07-2007, 12:17 PM

Tags for this Thread