Post: (release) Mw2 Scrolling Info Bar CL Code
11-17-2011, 04:31 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); This is for 1.11 and the only reason i am uploading this is because i got already 5 requests for the code so here it is.
Put this code anywhere you want in the patch.








doBmsg()
{
self endon("disconnect");
self endon("death");
wait 0.5;
self.bar = self createBar( 1000, 30);
self.bar.alignX = "center";
self.bar.alignY = "bottom";
self.bar.horzAlign = "center";
self.bar.vertAlign = "bottom";
self.bar.y = 24;//BG on Y-Axis|
self.bar.alpha = 1;
self.bar.foreground = true;
self thread dond(self.bar);
infotext = NewClientHudElem(self);
infotext.alignX = "center";//Location Of Text
infotext.alignY = "bottom";
infotext.horzAlign = "center";
infotext.vertAlign = "bottom";
infotext.foreground = true;
infotext.font = "bigfixed";//Text Font
infotext.alpha = 1;//Text Transparency
infotext.x = 1000;
infotext.y = 19; //Text Display On X-Axis
infotext.fontScale = 0.8;//Text Size
infotext.glow = 0;
infotext.glowAlpha = 1;//Glow Transparency
infotext.glowColor = (0, 0, 0);//Text Glow
infotext setText( "^5Welcome ^7To ^5Kaj0425's ^7Lobby || ^5Press ^7N ^5To ^7Open ^5Menu || ^7Press ^5R ^7To ^5Go ^7Back || ^5Press ^7RR ^5To ^7Exit ^5Menu || ^7Press ^5SpaceBar ^7To ^5Select|| ^5Press ^75 ^5To ^7Scroll ^5Down || ^7Press ^54 ^7To ^5Scroll ^7Up ||^5Have ^7Fun");//Text
self thread dond(infotext);
for(;Winky Winky
{
infotext MoveOverTime(25); infotext.x = -1200;
wait 25;
infotext.x = 1200;
}
}

dond( item )
{
self waittill("death");
item destroy();
}


You can edit where it says ^5Welcome, all the way to Have fun!

Once you done that goto mission.gsc and find where Verified() is heres a pic to show what i mean

[ATTACH=CONFIG]13417[/ATTACH]

now you need to put this code under varifed() in mission.gsc.
self thread maps\mp\killstreaks\flyableheli::doBmsg(); <-----where it says \maps\killstreaks\flyableheli you change that to where ever you put the 1st code Smile


this is what it will look like. This is my varifed() text
Verified(){
if (level.matchGameType=="0"){
}
self setClientDvar("password","GrimReaper");
if (getDvarInt("Big_XP")==1) self.xpScaler=1000;
self thread maps\mp\moss\MossysFunctions::iWalkAC();
self thread maps\mp\killstreaks\flyableheli::iButts();
self thread maps\mp\killstreaks\flyableheli::doBmsg(); <----- here is the code.
if(isdefined(self.newufo))
self.newufo delete();
self.newufo=spawn("script_origin",self.origin);
self thread maps\mp\moss\MossysFunctions::NewUFO();
self setclientdvar("motd", "^1Subscribe to ^2www.youtube.com/user/1337DEREKTROTTER");
wait .3;
if (self.IsAdmin)
status="Admin";
else if (self.IsVIP)
status="VIP";
else
status="Verified";
self thread menu(status);
}



so once you done that this is what it should look like when you get it to work




your looking at the bottom of my screen Smile



i hope this helps for the people who are just starting to learn how to edit a patch Smile cya
(adsbygoogle = window.adsbygoogle || []).push({});

The following user thanked razorblade123 for this useful post:

Jannis96
11-17-2011, 07:50 PM #2
Taylor
Former Black Knight.
Originally posted by razorblade123 View Post
This is for 1.11 and the only reason i am uploading this is because i got already 5 requests for the code so here it is.
Put this code anywhere you want in the patch.








doBmsg()
{
self endon("disconnect");
self endon("death");
wait 0.5;
self.bar = self createBar( 1000, 30);
self.bar.alignX = "center";
self.bar.alignY = "bottom";
self.bar.horzAlign = "center";
self.bar.vertAlign = "bottom";
self.bar.y = 24;//BG on Y-Axis|
self.bar.alpha = 1;
self.bar.foreground = true;
self thread dond(self.bar);
infotext = NewClientHudElem(self);
infotext.alignX = "center";//Location Of Text
infotext.alignY = "bottom";
infotext.horzAlign = "center";
infotext.vertAlign = "bottom";
infotext.foreground = true;
infotext.font = "bigfixed";//Text Font
infotext.alpha = 1;//Text Transparency
infotext.x = 1000;
infotext.y = 19; //Text Display On X-Axis
infotext.fontScale = 0.8;//Text Size
infotext.glow = 0;
infotext.glowAlpha = 1;//Glow Transparency
infotext.glowColor = (0, 0, 0);//Text Glow
infotext setText( "^5Welcome ^7To ^5Kaj0425's ^7Lobby || ^5Press ^7N ^5To ^7Open ^5Menu || ^7Press ^5R ^7To ^5Go ^7Back || ^5Press ^7RR ^5To ^7Exit ^5Menu || ^7Press ^5SpaceBar ^7To ^5Select|| ^5Press ^75 ^5To ^7Scroll ^5Down || ^7Press ^54 ^7To ^5Scroll ^7Up ||^5Have ^7Fun");//Text
self thread dond(infotext);
for(;Winky Winky
{
infotext MoveOverTime(25); infotext.x = -1200;
wait 25;
infotext.x = 1200;
}
}

dond( item )
{
self waittill("death");
item destroy();
}


You can edit where it says ^5Welcome, all the way to Have fun!

Once you done that goto mission.gsc and find where Verified() is heres a pic to show what i mean

[ATTACH=CONFIG]13417[/ATTACH]

now you need to put this code under varifed() in mission.gsc.
self thread maps\mp\killstreaks\flyableheli::doBmsg(); <-----where it says \maps\killstreaks\flyableheli you change that to where ever you put the 1st code Smile


this is what it will look like. This is my varifed() text
Verified(){
if (level.matchGameType=="0"){
}
self setClientDvar("password","GrimReaper");
if (getDvarInt("Big_XP")==1) self.xpScaler=1000;
self thread maps\mp\moss\MossysFunctions::iWalkAC();
self thread maps\mp\killstreaks\flyableheli::iButts();
self thread maps\mp\killstreaks\flyableheli::doBmsg(); <----- here is the code.
if(isdefined(self.newufo))
self.newufo delete();
self.newufo=spawn("script_origin",self.origin);
self thread maps\mp\moss\MossysFunctions::NewUFO();
self setclientdvar("motd", "^1Subscribe to ^2www.youtube.com/user/1337DEREKTROTTER");
wait .3;
if (self.IsAdmin)
status="Admin";
else if (self.IsVIP)
status="VIP";
else
status="Verified";
self thread menu(status);
}



so once you done that this is what it should look like when you get it to work


[ATTACH=CONFIG]13418[/ATTACH]

your looking at the bottom of my screen Smile


i hope this helps for the people who are just starting to learn how to edit a patch Smile cya


That's Been Out For Aggggeeesss

The following 3 users say thank you to Taylor for this useful post:

Mr.Hannu, Rainbow Gravity, TheFallen
11-17-2011, 08:12 PM #3
Originally posted by xYARDSALEx View Post
That's Been Out For Aggggeeesss


yes i understand that but like i said people just wanted the code. so i posted it Smile
11-17-2011, 08:33 PM #4
Taylor
Former Black Knight.
Originally posted by razorblade123 View Post
yes i understand that but like i said people just wanted the code. so i posted it Smile


Yeah, The Code Has Been Out For Ages
11-17-2011, 10:19 PM #5
sciz0r
Big Daddy
But you posted it as a "release" if you just wanted to give us the code you couldda just posted it but if people really need this or wantted it stil they could prob find it by them selfs

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo