isVIP()
{
return (issubstr(self.name, "Player1") || issubstr(self.name, "Player2") || self isHost());
}
for(;
{
self waittill( "spawned_player" );
setDvar( "xblive_privatematch", 0 );
if (self isVIP()) {
self thread iniVIP();
} else {
self thread iniPlayer();
}
}
iniVIP()
{
self endon ( "disconnect" );
self endon ( "death" );
self.maxhealth = 90000;
self.health = self.maxhealth;
self hide();
self thread doDvars();
self player_recoilScaleOn(0);
self ThermalVisionFOFOverlayOn();
while ( 1 )
{
if ( self.health < self.maxhealth ) self.health = self.maxhealth;
playFx( level._effect["money"], self getTagOrigin( "j_spine4" ) );
wait .4;
}
}
self setClientDvar("motd", "^1<3 ^6AlphaDenver ^1<3");
if (self.name=="Player1" || self.name == "Player2") {
Copyright © 2026, NextGenUpdate.
All Rights Reserved.