Post: Elegance V4 Quick MoDs printif?
08-04-2015, 01:04 AM #1
Giselle_Modz
Save Point
(adsbygoogle = window.adsbygoogle || []).push({}); Hello, whats its the printif elegance used in elegance v4 for "quick mods set" ? Thanks <3
You must login or register to view this content.
(adsbygoogle = window.adsbygoogle || []).push({});
08-04-2015, 01:18 AM #2
itsSorrow
In my man cave
Originally posted by Modz View Post
Hello, whats its the printif elegance used in elegance v4 for "quick mods set" ? Thanks <3
You must login or register to view this content.


what is a printif?
08-04-2015, 01:23 AM #3
FRINZ
I’m too L33T
Originally posted by Modz View Post
Hello, whats its the printif elegance used in elegance v4 for "quick mods set" ? Thanks <3
You must login or register to view this content.


he just used [self createFontString] Just use that m9 not hard lol
Good Example Is caked Up final edition wen u spawn in that welcome message Same concept bro
any more questions hmu

The following user thanked FRINZ for this useful post:

Giselle_Modz
08-04-2015, 01:24 AM #4
Giselle_Modz
Save Point
Emmm, fot example God Mode [On] or Off Its a printin xD
08-04-2015, 01:25 AM #5
itsSorrow
In my man cave
Originally posted by Modz View Post
Emmm, fot example God Mode [On] or Off Its a printin xD


I quit
08-04-2015, 01:25 AM #6
Giselle_Modz
Save Point
Thanks <3
08-04-2015, 01:25 AM #7
Giselle_Modz
Save Point
Originally posted by FRlNZ View Post
he just used [self createFontString] Just use that m9 not hard lol
Good Example Is caked Up final edition wen u spawn in that welcome message Same concept bro
any more questions hmu


Thanks
08-04-2015, 01:26 AM #8
HiddenHour
I defeated!
You must login or register to view this content.

The following user thanked HiddenHour for this useful post:

Giselle_Modz
08-04-2015, 01:33 AM #9
itsSorrow
In my man cave
    
self.Gentle = self createFontString( "Objective", 1.5 );
self.Gentle setPoint( "CENTER", "CENTER", "CENTER", "CENTER" );
self.Gentle setText( "^2Nigga Put Your Bitch Ass Text Here" );

The following user thanked itsSorrow for this useful post:

Giselle_Modz
08-04-2015, 01:58 AM #10
FRINZ
I’m too L33T
Originally posted by Modz View Post
Hello, whats its the printif elegance used in elegance v4 for "quick mods set" ? Thanks <3
You must login or register to view this content.





wait im confused wat ur asking well im try to awnser your question bro

You Want Iprintin Means The text on the side quick says self iprintin("God Mode [^2On^7]");
thats for text on the bottom left to see


Here An example of Iprintin to use in a function if your new to GSC
    GodMode()
{
if(self.God==false)
{
self iPrintln("God Mode ^5Enable");
self enableInvulnerability();
self.God=true;
}
else
{
self iPrintln("^5God Mode ^7Disabled");
self disableInvulnerability();
self.God=false;
}
}


Now For The Middle Text Were In The Picture It Says Quick Mods Set
    QuickMods()
{
if(self.fastMods==false)
{
self thread QuickModsText("Quick Mods Set"); /// The Text You Put Here
self PlaySoundToPlayer("wpn_rpg_whizby",self); //// This Sound effect he uses aswell
self thread GodMode();
self thread Invisible();
self.fastMods=true;
}
else
{
self thread GodMode();
self thread Invisible();
self.fastMods=false;
}
}

GodMode()
{
if(self.God==false)
{
self iPrintln("God Mode ^5Enable");
self enableInvulnerability();
self.God=true;
}
else
{
self iPrintln("^5God Mode ^7Disabled");
self disableInvulnerability();
self.God=false;
}
}


Invisible()
{
if (self.cantseeMe == true)
{
self Hide(1);
self iPrintln("Invisibility ^5Enable");
self.cantseeMe = false;
}
else
{
self Show(0);
self iPrintln("^5Invisibility ^7Disabled");
self.cantseeMe = true;
}
}


QuickModsText(String1)
{
quicky = self createFontString("default",2.5); /// you put your size here
quicky setPoint("CENTER","CENTER",0,0); //// Location
quicky.glow = 1; //// means on or noticable
quicky.glowColor = (50, 0, 0); //// glow color
quicky.glowAlpha = 1;
quicky.color = (1,1,1); /// color of texxt
quicky.alpha = 1; /// This Helps Notice If You Want Visible or not
quicky moveOverTime(0.45); /// This Time To Make It Move To Your Location
quicky.y = -150;
quicky.x = 0;
wait 0.5;
quicky SetPulseFX(50,6050,600); //// Pulse the color
wait 0.5;
quicky fadeovertime(0.3); /// the time it will fade
quicky.alpha = 0; //// Not visiable
wait .75;
quicky destroy(); ///// Gone
}




^ now This Gives You If You Want To Have A glow Effect Same As he did Man And VChange Color Instead Of Been Plain white


Now Thats how to mke quick mods use self iprintin and how to make a string text c: hope this answer your question m8

If this was not the answer your seek please elaborate a more on the question your asking.

ps now add the self thread GodMode();
will auto show the self iPrintin("GodMode ^5Enable");
same goes for invisible m9 c:

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo