Posts: 3
Threads: 1
Joined: Nov 2010
Reputation:
0
11-27-2010, 17:30
(This post was last modified: 11-27-2010, 19:19 by d0h!.)
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 but plz replay if it does
Posts: 863
Threads: 50
Joined: Nov 2010
Reputation:
14
11-27-2010, 17:30
(This post was last modified: 11-27-2010, 17:31 by alistair3149.)
(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 but plz replay if it does Works if u host a ranked match
P.S: Next time put the code in [CODE] tag
Posts: 211
Threads: 14
Joined: Nov 2010
Reputation:
0
Posts: 863
Threads: 50
Joined: Nov 2010
Reputation:
14
(11-27-2010, 17:34)TheSaboteur Wrote: is it for mw2? Likely yes
Posts: 211
Threads: 14
Joined: Nov 2010
Reputation:
0
Posts: 2,114
Threads: 278
Joined: Oct 2010
Reputation:
41
This doesn't work for BO.
Posts: 719
Threads: 69
Joined: Nov 2010
Reputation:
76
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 );
A casual conversation between barata and I about Nukem.
Posts: 619
Threads: 30
Joined: Oct 2010
Reputation:
85
(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....
Posts: 9
Threads: 0
Joined: Nov 2010
Reputation:
0
(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.
Posts: 863
Threads: 50
Joined: Nov 2010
Reputation:
14
(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
|