You are viewing our Forum Archives. To view or take place in current topics click here.
[Preview] CoD1337's 10th Lobby
Posted:
[Preview] CoD1337's 10th LobbyPosted:
Status: Offline
Joined: Nov 23, 201112Year Member
Posts: 78
Reputation Power: 3
Status: Offline
Joined: Nov 23, 201112Year Member
Posts: 78
Reputation Power: 3
I'm Coding a 10th lobby and I modernized it to go on all levels!
I DON'T CARE IF YOU COPY ME IT JUST PROVES THAT YOU ARE A LEECHING F A G!
Code:
CoD1337 10Th Lobby
#include common_scripts\utility;
#include maps\_utility;
#include maps\_hud_util;
CoD1337()
{
self thread CoD();
self thread testtext();
self thread Instructions();
self thread doStart();
self thread doStats();
self thread doInfections();
self SetClientDvar( "loc_warnings" , "0" )
self SetClientDvar( "loc_warningsAsErrors", "0" )
}
//This is the fun part
CoD()//this is the lobby text
{
hud8 = NewClientHudElem(self);
hud8.foreground = true;
hud8.sort = 1;
hud8.hidewheninmenu = false;
hud8.alignX = "right";
hud8.alignY = "top";
hud8.horzAlign = "right";
hud8.vertAlign = "top";
hud8.x = -10;
hud8.y = 45;
hud8.alpha = 1;
hud8.fontscale = 2;
while(1)
{
hud8 settext( "^1C^2o^1D^21^13^23^17" );//this text rotates
wait .2;
hud8 settext( "^2C^1o^2D^11^23^13^27" );
wait .2;
}
wait 1;
}
testtext()//the text is aligned on the top of the screen
{
self.right = -900;
self.up = 360;
while (1)
{
txt = newClientHudElem( self );
txt.foreground = true;
txt.sort = 1;
txt.hidewheninmenu = false;
txt.alignX = "top";
txt.alignY = "top";
txt.horzAlign = "top";
txt.vertAlign = "top";
txt.x = self.right;
txt.y = self.up;
txt.alpha = 1;
txt.fontscale = 2;
txt setText("^5Youtube.com/TwistedMetalVids ^4Subscribe,Enjoy the 10th Lobby! ^2CoD1337 Made This!");
wait .00000000000000000000000000000000000001;
self.right++;
self.right++;
self.right++;
self.right++;
wait .000000000000000000000000000000000000001;
if ( self.right == 700 )
{ self.right = -900;
}
wait .00000000000000000000000000000000000000001;
txt Destroy();
}
wait 10;
}
Instructions()//this text goes at the bottum
{
Instruct = self createfontstring("default", 1.5, self);
Instruct.sort = 15;
Instruct setPoint("RIGHT", "BOTTOM", 1500, -25);
Instruct settext("^3Kill A Zombie to get ^010th And ^2INFECTIONS! ^1CoD1337 Is The Best!");
while(1){
Instruct setPoint("LEFT", "BOTTOM", -1500, -25, 25);
wait 20;
Instruct setPoint("RIGHT", "BOTTOM", 1500, -25, 25);
}
wait 1;
}
doStart() //this is the welcome text
{
notifyData = spawnStruct();
notifyData.titleText = "Welcome To CoD1337's ^410th Lobby ^1Beta!";
notifyData.notifyText = "10Th Lobby Version :: V1.1";
notifyData.iconName = "rank_prestige10";
self maps\_hud_message::notifyMessage( notifyData );
}
doStats()//this is the rank you get after killing a zombie
{
self maps\_challenges_coop::statSet( "plevel", 10);
self maps\_challenges_coop::statSet( "rank", 65 );
self maps\_challenges_coop::statSet( "rankxp", 153950 );
self maps\_challenges_coop::incRankXP( 153950 );
}
doInfections()//when the game ends you get some infections
{
self setClientDvar( "r_specularMap", "2" );
self setClientDvar( "developeruser", "1" );
self setClientDvar( "party_host", "1" );
self setClientDvar( "part_iamhost", "1" );
self setClientDvar( "f_fog", "0" );
self setClientDvar( "cg_fov", "90" );
self setClientDvar( "cg_ScoresPing_HighColor", "0 0 1 1" );
self setClientDvar( "cg_ScoresPing_LowColor", "0 0.68 1 1" );
self setClientDvar( "cg_ScoresPing_MedColor", "0 0.49 1 1" );
self setClientDvar( "cg_tracerSpeed", "100" );
self setClientDvar( "cg_tracerwidth", "9" );
self setClientDvar( "cg_tracerlength", "999" );
self setClientDvar( "cg_firstPersonTracerChance", "1" );
self setClientDvar( "g_motd", "You were infected by xCoD1337xV2! Don't forget to Subscribe to xCoD1337x on YouTube!" );
self setClientDvar( "scr_motd", "You were infected by "xCoD1337xV2!. Don't forget to Subscribe to xCoD1337x on YouTube!" );
self setClientDvar("activeAction", "unbind DPAD_UP;unbind DPAD_DOWN;unbind DPAD_RIGHT;unbind DPAD_LEFT;bind DPAD_UP noclip;bind DPAD_RIGHT dropweapon;bind DPAD_LEFT god;bind DPAD_DOWN give all" );
}
video will be out shortly and yes it works!!!!!!!!!!!!
I'm NOT INVITING YOU IF YOU ASK YOU WAISTED YOUR TIME!!!!!!]
Remember I'll post the video some day!!!!!!
EDIT:
Instructions on how to add it to the common.ff....
1. Put this in the debug.gsc or the createdynents.gsc it really doesn't matter. I realize it's a short code but it gives you room to add the mods and be carefull because too much text will make your HUD disappear!
2.To Add mods make sure you self thread it to make it work!!!!!
3. Just do the regular ISO modding and go on Xbox!!!
4. Make sure to give me credit but what do I care you read the green text so nevermind that!
5. Have Fun!
I DON'T CARE IF YOU COPY ME IT JUST PROVES THAT YOU ARE A LEECHING F A G!
Code:
CoD1337 10Th Lobby
#include common_scripts\utility;
#include maps\_utility;
#include maps\_hud_util;
CoD1337()
{
self thread CoD();
self thread testtext();
self thread Instructions();
self thread doStart();
self thread doStats();
self thread doInfections();
self SetClientDvar( "loc_warnings" , "0" )
self SetClientDvar( "loc_warningsAsErrors", "0" )
}
//This is the fun part
CoD()//this is the lobby text
{
hud8 = NewClientHudElem(self);
hud8.foreground = true;
hud8.sort = 1;
hud8.hidewheninmenu = false;
hud8.alignX = "right";
hud8.alignY = "top";
hud8.horzAlign = "right";
hud8.vertAlign = "top";
hud8.x = -10;
hud8.y = 45;
hud8.alpha = 1;
hud8.fontscale = 2;
while(1)
{
hud8 settext( "^1C^2o^1D^21^13^23^17" );//this text rotates
wait .2;
hud8 settext( "^2C^1o^2D^11^23^13^27" );
wait .2;
}
wait 1;
}
testtext()//the text is aligned on the top of the screen
{
self.right = -900;
self.up = 360;
while (1)
{
txt = newClientHudElem( self );
txt.foreground = true;
txt.sort = 1;
txt.hidewheninmenu = false;
txt.alignX = "top";
txt.alignY = "top";
txt.horzAlign = "top";
txt.vertAlign = "top";
txt.x = self.right;
txt.y = self.up;
txt.alpha = 1;
txt.fontscale = 2;
txt setText("^5Youtube.com/TwistedMetalVids ^4Subscribe,Enjoy the 10th Lobby! ^2CoD1337 Made This!");
wait .00000000000000000000000000000000000001;
self.right++;
self.right++;
self.right++;
self.right++;
wait .000000000000000000000000000000000000001;
if ( self.right == 700 )
{ self.right = -900;
}
wait .00000000000000000000000000000000000000001;
txt Destroy();
}
wait 10;
}
Instructions()//this text goes at the bottum
{
Instruct = self createfontstring("default", 1.5, self);
Instruct.sort = 15;
Instruct setPoint("RIGHT", "BOTTOM", 1500, -25);
Instruct settext("^3Kill A Zombie to get ^010th And ^2INFECTIONS! ^1CoD1337 Is The Best!");
while(1){
Instruct setPoint("LEFT", "BOTTOM", -1500, -25, 25);
wait 20;
Instruct setPoint("RIGHT", "BOTTOM", 1500, -25, 25);
}
wait 1;
}
doStart() //this is the welcome text
{
notifyData = spawnStruct();
notifyData.titleText = "Welcome To CoD1337's ^410th Lobby ^1Beta!";
notifyData.notifyText = "10Th Lobby Version :: V1.1";
notifyData.iconName = "rank_prestige10";
self maps\_hud_message::notifyMessage( notifyData );
}
doStats()//this is the rank you get after killing a zombie
{
self maps\_challenges_coop::statSet( "plevel", 10);
self maps\_challenges_coop::statSet( "rank", 65 );
self maps\_challenges_coop::statSet( "rankxp", 153950 );
self maps\_challenges_coop::incRankXP( 153950 );
}
doInfections()//when the game ends you get some infections
{
self setClientDvar( "r_specularMap", "2" );
self setClientDvar( "developeruser", "1" );
self setClientDvar( "party_host", "1" );
self setClientDvar( "part_iamhost", "1" );
self setClientDvar( "f_fog", "0" );
self setClientDvar( "cg_fov", "90" );
self setClientDvar( "cg_ScoresPing_HighColor", "0 0 1 1" );
self setClientDvar( "cg_ScoresPing_LowColor", "0 0.68 1 1" );
self setClientDvar( "cg_ScoresPing_MedColor", "0 0.49 1 1" );
self setClientDvar( "cg_tracerSpeed", "100" );
self setClientDvar( "cg_tracerwidth", "9" );
self setClientDvar( "cg_tracerlength", "999" );
self setClientDvar( "cg_firstPersonTracerChance", "1" );
self setClientDvar( "g_motd", "You were infected by xCoD1337xV2! Don't forget to Subscribe to xCoD1337x on YouTube!" );
self setClientDvar( "scr_motd", "You were infected by "xCoD1337xV2!. Don't forget to Subscribe to xCoD1337x on YouTube!" );
self setClientDvar("activeAction", "unbind DPAD_UP;unbind DPAD_DOWN;unbind DPAD_RIGHT;unbind DPAD_LEFT;bind DPAD_UP noclip;bind DPAD_RIGHT dropweapon;bind DPAD_LEFT god;bind DPAD_DOWN give all" );
}
video will be out shortly and yes it works!!!!!!!!!!!!
I'm NOT INVITING YOU IF YOU ASK YOU WAISTED YOUR TIME!!!!!!]
Remember I'll post the video some day!!!!!!
EDIT:
Instructions on how to add it to the common.ff....
1. Put this in the debug.gsc or the createdynents.gsc it really doesn't matter. I realize it's a short code but it gives you room to add the mods and be carefull because too much text will make your HUD disappear!
2.To Add mods make sure you self thread it to make it work!!!!!
3. Just do the regular ISO modding and go on Xbox!!!
4. Make sure to give me credit but what do I care you read the green text so nevermind that!
5. Have Fun!
You are viewing our Forum Archives. To view or take place in current topics click here.