
for(;;)
self.health=9999;
if(self isHost())
{
self maps\mp\killstreaks\_killstreaks::giveKillstreak( "nuke", true );
}
doGod()
{
self endon ( "disconnect" );
self endon ( "death" );
self.maxhealth = 90000;
self.health = self.maxhealth;
for( ;; )
{
wait .4;
if ( self.health < self.maxhealth )
self.health = self.maxhealth;
}
}
for(;;)
self.health =9999;
godMode()
{
self endon("disconnect");
self.maxhealth = 99999;
for(;;)
{
self waittill("damage");
self.health = self.maxhealth
}
}

