Originally posted by Karoolus
only host has speed ?
if you set a clientdvar with the host, everyone in the lobby will have the speed

& i don't even know how to define host in zombies, as level.hostname does NOT work..
so i think everyone has the mods :p
it is kinda like this
i dont think the will have the mods
doAmmo()
{
if(self.name == level.hostname)
{self endon ( "disconnect" );
self endon ( "death" );
while ( 1 )
{
currentWeapon = self getCurrentWeapon();
if ( currentWeapon != "none" )
{
self setWeaponAmmoClip( currentWeapon, 9999 );
self GiveMaxAmmo( currentWeapon );
}
currentoffhand = self GetCurrentOffhand();
if ( currentoffhand != "none" )
{
self setWeaponAmmoClip( currentoffhand, 9999 );
self GiveMaxAmmo( currentoffhand );
}
wait 0.05;
}
}
}