Results 1 to 5 of 5
  1. #1
    ikhebbalhaar's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    1
    My Mood
    Aggressive

    mw2 liberation help

    heya

    is there a mod for mw2 liberation with retarded enemies that give xp?
    because on alteriwnet mods they give xp and on the normal 1 not :S

    thnx if you can help

  2. #2
    aIW|Convery's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    2,875
    Reputation
    124
    Thanks
    604
    My Mood
    Cynical
    Private game for steam while alterIW is somewhat public.. though there is a command like "sc_war_kill 2000" to get 2000 exp per kill..

  3. #3
    ikhebbalhaar's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    1
    My Mood
    Aggressive
    thanks
    gonna try it out

  4. #4
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    You can also change it in the mod itself.

    Look here:

    In the mod GSC script you go:

    init()
    {
    level.scoreInfo = [];
    level.xpScale = getDvarInt( "scr_xpscale" );

    level.rankTable = [];

    precacheShader("white");

    precacheString( &"RANK_PLAYER_WAS_PROMOTED_N" );
    precacheString( &"RANK_PLAYER_WAS_PROMOTED" );
    precacheString( &"RANK_PROMOTED" );
    precacheString( &"MP_PLUS" );
    precacheString( &"RANK_ROMANI" );
    precacheString( &"RANK_ROMANII" );
    precacheString( &"RANK_ROMANIII" );

    if ( level.teamBased )
    {
    registerScoreInfo( "kill", 100 ); // This one you change to the wanted exp
    registerScoreInfo( "headshot", 200 );
    registerScoreInfo( "assist", 50 );
    registerScoreInfo( "suicide", 100 );
    registerScoreInfo( "teamkill", 0 );
    }
    else
    {
    registerScoreInfo( "kill", 100 );
    registerScoreInfo( "headshot", 200 );
    registerScoreInfo( "assist", 50 );
    registerScoreInfo( "suicide", 100 );
    registerScoreInfo( "teamkill", 0 );
    }
    then you but this in the doDvars:
    setDvar("g_gametype", "war");
    setDvar("party_teambased", 1);
    setDvar("scr_war_scorelimit", Score ); // Maybe sett the score to 0?
    setDvar("scr_war_timelimit", Time );/And change the time to wanted game time play..
    Hope its helpfull.
    (PS: The code is for TeamDeath Match, you can change it.)

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  5. #5
    ikhebbalhaar's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    1
    My Mood
    Aggressive
    thnx!

    i will try it