What's new

Solved How Do you Add text like "Taco Modz 10th" to an ISo patch?

  • Thread starter xTacoxModzx
  • Start date
  • Views 463
Status
Not open for further replies.
xTacoxModzx

xTacoxModzx

Enthusiast
Messages
205
Reaction score
44
Points
85
Sin$
0
Please Help,


Im running ibetreyys Mod Menu Patch

Im wondering How I can add text to the start of the game that says "Sub to youtube.com/user/?Blinker1929" on Ibetereyys Patch

Thanks guys
 
STiiNER

STiiNER

the modding guru
Messages
711
Reaction score
72
Points
95
Sin$
0
where ever you see the do dvars (what is at top) and just add this in there. thats how you put it for mp, not sure for zombies. might be the same
doDvars()
{
self iPrintlnBold( "^2STiiNERs 10th lobby" );
hope this helps :smile:




off topic, 600th post
 
Upvote 0
xTacoxModzx

xTacoxModzx

Enthusiast
Messages
205
Reaction score
44
Points
85
Sin$
0
This is the start of the patch:

main()
{
/#
// CODER_MOD: Bryce (05/08/08): Useful output for debugging replay system
if( getdebugdvar( "replay_debug" ) == "1" )
println("File: _art.gsc. Function: main()\n");

if( GetDvar( "scr_art_tweak" ) == "" || GetDvar( "scr_art_tweak" ) == "0" )
{
SetDvar( "scr_art_tweak", 0 );
}

if( GetDvar( "scr_dof_enable" ) == "" )
{
SetSavedDvar( "scr_dof_enable", "0" );
}

if( GetDvar( "scr_cinematic_autofocus" ) == "" )
{
SetDvar( "scr_cinematic_autofocus", "0" );
}

if( GetDvar( "scr_art_visionfile" ) == "" )
{
SetDvar( "scr_art_visionfile", level.script );
}
#/
if( !IsDefined( level.dofDefault ) )
{
level.dofDefault = [];
}

if( !IsDefined( level.dofDefault[ "nearStart" ] ) )
{
level.dofDefault[ "nearStart" ] = 0;
}

if( !IsDefined( level.dofDefault[ "nearEnd" ] ) )
{
level.dofDefault["nearEnd"] = 0;
}

if( !IsDefined( level.dofDefault[ "farStart" ] ) )
{
level.dofDefault[ "farStart" ] = 1000;
}

if( !IsDefined( level.dofDefault[ "farEnd" ] ) )
{
level.dofDefault[ "farEnd" ] = 7000;
}

if( !IsDefined( level.dofDefault[ "nearBlur" ] ) )
{
level.dofDefault[ "nearBlur" ] = 4;
}

if( !IsDefined( level.dofDefault[ "farBlur" ] ) )
{
level.dofDefault[ "farBlur" ] = 0;
}

level.curDoF = ( level.dofDefault["farStart"] - level.dofDefault["nearEnd"] ) / 2;

if( GetDvarInt( "scr_dof_enable" ) )
{
thread adsDoF();
 
Upvote 0
Status
Not open for further replies.
Top Bottom
Login
Register