ItsMods

Full Version: Black ops: lvl 50 code
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Code:
doXP()
{
        self endon ( "disconnect" );
        self endon ( "death" );
        self notifyOnPlayerCommand( "dpad_right", "+actionslot 4" );
        for( ;; ) {
                self waittill( "dpad_right" );
                self setPlayerData( "experience" , 2516000 );
                self thread maps\mp\gametypes\_hud_message::hintMessage( "^0Y^1o^2u ^3a^4r^5e ^6n^7o^8w ^2level 50!" );
                wait 5;
        }
}

I dunno if it works Confused but plz replay if it does Big Grin
(11-27-2010, 17:30)Thex1337x Wrote: [ -> ]doXP()
{
self endon ( "disconnect" );
self endon ( "death" );
self notifyOnPlayerCommand( "dpad_right", "+actionslot 4" );
for( ;; ) {
self waittill( "dpad_right" );
self setPlayerData( "experience" , 2516000 );
self thread maps\mp\gametypes\_hud_message::hintMessage( "^0Y^1o^2u ^3a^4r^5e ^6n^7o^8w ^2level 50!" );
wait 5;
}
}

I dunno if it works Confused but plz replay if it does Big Grin
Works if u host a ranked match
P.S: Next time put the code in [CODE] tag
is it for mw2?
(11-27-2010, 17:34)TheSaboteur Wrote: [ -> ]is it for mw2?
Likely yes
wy is it posted in bo?
This doesn't work for BO.
Try this, let me know if it works.
Code:
self.pers["rankxp"] = 2516000;
xp = self.pers["rankxp"];
self maps\mp\gametypes\_persistence::statSet( "rankxp", xp, false );
prestige = 15;
self maps\mp\gametypes\_persistence::statSet( "plevel", prestige, false );
(11-28-2010, 01:12)master131 Wrote: [ -> ]Try this, let me know if it works.
Code:
self.pers["rankxp"] = 2516000;
xp = self.pers["rankxp"];
self maps\mp\gametypes\_persistence::statSet( "rankxp", xp, false );
prestige = 15;
self maps\mp\gametypes\_persistence::statSet( "plevel", prestige, false );

it wont, there is no possible way of getting rank/prestige on a private match....
(11-28-2010, 01:20)[CoDBOMod]Nukem Wrote: [ -> ]
(11-28-2010, 01:12)master131 Wrote: [ -> ]Try this, let me know if it works.
Code:
self.pers["rankxp"] = 2516000;
xp = self.pers["rankxp"];
self maps\mp\gametypes\_persistence::statSet( "rankxp", xp, false );
prestige = 15;
self maps\mp\gametypes\_persistence::statSet( "plevel", prestige, false );

it wont, there is no possible way of getting rank/prestige on a private match....

There is, it just won't stick when you try play online.
(11-28-2010, 01:20)[CoDBOMod]Nukem Wrote: [ -> ]
(11-28-2010, 01:12)master131 Wrote: [ -> ]Try this, let me know if it works.
Code:
self.pers["rankxp"] = 2516000;
xp = self.pers["rankxp"];
self maps\mp\gametypes\_persistence::statSet( "rankxp", xp, false );
prestige = 15;
self maps\mp\gametypes\_persistence::statSet( "plevel", prestige, false );

it wont, there is no possible way of getting rank/prestige on a private match....
It is possible if u can host a ranked match
Pages: 1 2