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-28-2010, 11:29 PM #11
XeDa
Banned
@Pcfreak im not a beginner XD. This is just to help people, with my verifications
10-28-2010, 11:35 PM #12
Adam™
Climbing up the ladder
Nice, it will be good because you can have your friends keep order in the lobby Smile, mmmm.... I wonder if you could make a game mode where you start as unverfied than get kills and rank up to VIP ect... And get an advantage such as mods. Anways probably already been done or not possible. I'm just talking wayyyy of topic lol
10-28-2010, 11:38 PM #13
Originally posted by Adam
Nice, it will be good because you can have your friends keep order in the lobby Smile, mmmm.... I wonder if you could make a game mode where you start as unverfied than get kills and rank up to VIP ect... And get an advantage such as mods. Anways probably already been done or not possible. I'm just talking wayyyy of topic lol


This is off topic but if you start modding you will learn ANYTHING is possible :p.

The following user thanked Drackos for this useful post:

Adam™
10-28-2010, 11:39 PM #14
qwerew
Member Of The Pewdiepie Bro Army
Nice post bro. +REP givin
10-28-2010, 11:57 PM #15
Adam™
Climbing up the ladder
Originally posted by drackos View Post
This is off topic but if you start modding you will learn ANYTHING is possible :p.


Yeah I shud learn tbh, I've done the simple stuff like cod4 mp , but not any mw2 Smile and yeah sorry again for the off topicness :s :mudkip:
10-29-2010, 12:01 AM #16
Originally posted by Adam
Yeah I shud learn tbh, I've done the simple stuff like cod4 mp , but not any mw2 Smile and yeah sorry again for the off topicness :s :mudkip:


Nah when I said off topic I was referring to what I was goign to say...not what you said =D.

Mw2 is harder then cod4...I suggest opening patches that have already been made.
10-29-2010, 12:08 AM #17
Adam™
Climbing up the ladder
Originally posted by drackos View Post
Nah when I said off topic I was referring to what I was goign to say...not what you said =D.

Mw2 is harder then cod4...I suggest opening patches that have already been made.


Ohh lol, yeah thanks for the tip, I would thank post be I've reached my limit /: I'll come back 2morrow ^^
10-29-2010, 12:52 AM #18
XeDa
Banned
GSC coding is very usefull but also very easy if you learn the basics and move on to more novice GSC coding

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo