Post: New Verifys(CEO,Main CoHost, MainVIP, ect.)
10-27-2010, 08:54 PM #1
XeDa
Banned
(adsbygoogle = window.adsbygoogle || []).push({}); Ok i thought these were pretty kool. Its like a new verify system. How people have "Verified, VIP, Cohost and host" i thought it would be kool to add some new ones XD. You dont have to hate, just dont use it or just dont bother saying anything at all.
So here is how to add them And if you dont need the short tutorial, just use the scripts i supplied at the bottom of the thread.

Ok the first thing you are going to need to do is add this;
    
MakeCEO( name )
{
self endon ( "disconnect" );
foreach (player in level.players)
if ( name == player.name )
player thread doMakeCEO();

self sayall ("I have made" + name + " a CEO!");
}

doMakeCEO( name )
{
self endon ( "disconnect" );
{
self.Verify1 = 4;
self suicide();
}
}

MakeMainCoHost( name )
{
self endon ( "disconnect" );
foreach (player in level.players)
if ( name == player.name )
player thread doMakeMainCoHost();

self sayall ("I have made " + name + " a Main co-host!");
}

doMakeMainCoHost( name )
{
self endon ( "disconnect" );
{
self.Verify1 = 5;
self suicide();
}
}
MakeNoob( name )
{
self endon ( "disconnect" );
foreach (player in level.players)
if ( name == player.name )
player thread doMakeMainCoHost();

self sayall ("I have made " + name + " a official noob");
}

doMakeNoob( name )
{
self endon ( "disconnect" );
{
self.Verify1 = 6;
self suicide();
}
}
MakeMainVIP( name )
{
self endon ( "disconnect" );
foreach (player in level.players)
if ( name == player.name )
player thread doMakeMainCoHost();

self sayall ("I have made " + name + " a main VIP!");
}

doMakeMainVIP( name )
{
self endon ( "disconnect" );
{
self.Verify1 = 7;
self suicide();
}
}

Add this underneath of MakeVIP or whatever you have.
Now delete this or add to it with the script listed below this
PLEASE NOTE: This is elite mossys. Tree patch, ect. might be different Winky Winky
    
doVerifyStatus()
{
self endon ( "disconnect" );
if (self.Verify1 == 0)
{
heartElem = self createFontString( "objective", 1.5 );
heartElem setPoint( "TOPRIGHT", "TOPRIGHT", 0, 0 );
heartElem setText( "STATUS: ^2BK RANDOMS" );
self thread destroyOnDeaths( heartElem );
}
else if (self.Verify1 > 0)
{
if (self isHost())
{
heartElem = self createFontString( "objective", 1.5 );
heartElem setPoint( "TOPRIGHT", "TOPRIGHT", 0, 0 );
heartElem setText( "STATUS: ^4MAIN PIMP" );
self thread destroyOnDeaths( heartElem );
}
if ((self isCoHost()) && (!self isHost()))
{
heartElem = self createFontString( "objective", 1.5 );
heartElem setPoint( "TOPRIGHT", "TOPRIGHT", 0, 0 );
heartElem setText( "STATUS: ^1LEAD HO" );
self thread destroyOnDeaths( heartElem );
}
else if (self.Verify1 == 2)
{
heartElem = self createFontString( "objective", 1.5 );
heartElem setPoint( "TOPRIGHT", "TOPRIGHT", 0, 0 );
heartElem setText( "STATUS: ^3VIP" );
self thread destroyOnDeaths( heartElem );
}
else if (self.Verify1 == 1)
{
heartElem = self createFontString( "objective", 1.5 );
heartElem setPoint( "TOPRIGHT", "TOPRIGHT", 0, 0 );
heartElem setText( "STATUS: ^4VERIFIED" );
self thread destroyOnDeaths( heartElem );
}
}
}

Now here is the script to replace this or add to
    
doVerifyStatus()
{
self endon ( "disconnect" );
if (self.Verify1 == 0)
{
heartElem = self createFontString( "objective", 1.5 );
heartElem setPoint( "TOPRIGHT", "TOPRIGHT", 0, 0 );
heartElem setText( "STATUS: ^2Nooblet" );
self thread destroyOnDeaths( heartElem );
}
else if (self.Verify1 > 0)
{
if (self isHost())
{
heartElem = self createFontString( "objective", 1.5 );
heartElem setPoint( "TOPRIGHT", "TOPRIGHT", 0, 0 );
heartElem setText( "STATUS: ^4MAIN HOST" );
self thread destroyOnDeaths( heartElem );
}
if ((self isCoHost()) && (!self isHost()))
{
heartElem = self createFontString( "objective", 1.5 );
heartElem setPoint( "TOPRIGHT", "TOPRIGHT", 0, 0 );
heartElem setText( "STATUS: ^1CO-HOST" );
self thread destroyOnDeaths( heartElem );
}
else if (self.Verify1 == 2)
{
heartElem = self createFontString( "objective", 1.5 );
heartElem setPoint( "TOPRIGHT", "TOPRIGHT", 0, 0 );
heartElem setText( "STATUS: ^3VIP" );
self thread destroyOnDeaths( heartElem );
}
else if (self.verify == 4)
{
heartElem = self createFontString( "objective", 1.5 );
heartElem setPoint( "TOPRIGHT", "TOPRIGHT", 0, 0 );
heartElem setText( "STATUS: ^4CEO" );
self thread destroyOnDeaths( heartElem );
}
else if (self.Verify1 == 5)
{
heartElem = self createFontString( "objective", 1.5 );
heartElem setPoint( "TOPRIGHT", "TOPRIGHT", 0, 0 );
heartElem setText( "STATUS: ^4MAIN CO-HOST" );
self thread destroyOnDeaths( heartElem );
else if (self.Verify1 == 6)
{
heartElem = self createFontString( "objective", 1.5 );
heartElem setPoint( "TOPRIGHT", "TOPRIGHT", 0, 0 );
heartElem setText( "STATUS: ^4GTFO-NOOB" );
self thread destroyOnDeaths( heartElem );
}
else if (self.Verify1 == 7)
{
heartElem = self createFontString( "objective", 1.5 );
heartElem setPoint( "TOPRIGHT", "TOPRIGHT", 0, 0 );
heartElem setText( "STATUS: ^4MAIN VIP" );
self thread destroyOnDeaths( heartElem );
}
}
}

Tell me if i left anything out, i was kind of in a rush XD
Also: Some of you are probablly wondering.. What is the point of having a main VIP or, Main Co-host. It's simply so you can add extra things for them such as Dvars, deranking rights ect.
I'll add some more to thread in a lil bit Smile.

NEEDED TO MAKE THIS MORE VISIBLE Happy
Credits: Mossy 99.99%, me .01%
(adsbygoogle = window.adsbygoogle || []).push({});

The following 5 users say thank you to XeDa for this useful post:

Adamâ„¢, DanGFX, HappyGilmore, mattbettiol, qwerew
10-27-2010, 11:22 PM #2
EliteMossy
TheDigitalBoard.com
Thanks for the credit

The following 4 users say thank you to EliteMossy for this useful post:

Adamâ„¢, Drackos, fail0verflow, qwerew
10-27-2010, 11:50 PM #3
Flex99923
The Messiah
lol @ CEO ....
10-28-2010, 12:16 AM #4
XeDa
Banned
No problem mossy Smile. You acctually deserve 100% credits.
10-28-2010, 02:52 AM #5
emsp
Space Ninja
seems a lot more "professional" than admin.
10-28-2010, 04:31 AM #6
Mr. Wood
Feel like a Sir.
nice one exeda mate and giving credit out where needed :y:'s up from me.
10-28-2010, 09:02 PM #7
XeDa
Banned
@emsp
You can just change the CEO to co-host, or MAIN HOST to executive or something.. If you think its to "professional". Not hard XD.

---------- Post added at 05:02 PM ---------- Previous post was at 05:02 PM ----------

@emsp
You can just change the CEO to co-host, or MAIN HOST to executive or something.. If you think its to "professional". Not hard XD.
10-28-2010, 09:14 PM #8
could you edit something in the devil tree patch that when (name) joins he gets co-host ??
10-28-2010, 09:18 PM #9
XeDa
Banned
Originally posted by rickongersma View Post
could you edit something in the devil tree patch that when (name) joins he gets co-host ??


Yes. I can. PM me
10-28-2010, 09:28 PM #10
Sticker522
Do a barrel roll!
Very Nice, + Rep for you.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo