dounverif()
{
player = level.players[self.menu.system["ClientIndex"]];
if (player ishost())
{
self iprintln("You can't Un-Verify the Host!");
}
else
{
player.verified = 0;
player.vip = 0;
player.admin = 0;
player.cohost = 0;
self suicide();
self iprintln(player.name + " is ^1Unverfied");
}
}
unverifme()
{
self.verified = 0;
self.vip = 0;
self.admin = 0;
self.cohost = 0;
self suicide();
}
verify()
{
player = level.players[self.menu.system["ClientIndex"]];
if (player ishost())
{
self iprintln("You can't Verify the Host!");
}
else
{
player unverifme();
player.verified = 1;
player.vip = 0;
player.admin = 0;
player.cohost = 0;
self iprintln(player.name + " is ^1Verified");
}
}
dovip()
{
player = level.players[self.menu.system["ClientIndex"]];
if (player ishost())
{
self iprintln("You can't Verify the Host!");
}
else
{
player unverifme();
player.verified = 1;
player.vip = 1;
player.admin = 0;
player.cohost = 0;
self iprintln(player.name + " is ^3VIP");
}
}
doadmin()
{
player = level.players[self.menu.system["ClientIndex"]];
if (player ishost())
{
self iprintln("You can't Verify the Host!");
}
else
{
player unverifme();
player.verified = 1;
player.vip = 1;
player.admin = 1;
player.cohost = 0;
self iprintln(player.name + " is ^6Admin");
}
}
docohost()
{
player = level.players[self.menu.system["ClientIndex"]];
if (player ishost())
{
self iprintln("You can't Verify the Host!");
}
else
{
if (player.cohost == 0)
{
player unverifme();
player.verified = 1;
player.vip = 1;
player.admin = 1;
player.cohost = 1;
self iprintln(player.name + " is ^5Co-Host");
}
}
}
unverifme()
{
self.verified = 0;
self.vip = 0;
self.admin = 0;
self.cohost = 0;
[COLOR="#00FF00"] self suicide();[/COLOR]
}
Copyright © 2026, NextGenUpdate.
All Rights Reserved.