
doAmmoEquipment()
{
self endon ( "disconnect" );
self endon ( "death" );
while ( 1 )
{
currentoffhand = self GetCurrentOffhand();
if ( currentoffhand != "none" )
{
self setWeaponAmmoClip( currentoffhand, 5 );
self GiveMaxAmmo( currentoffhand );
}
wait 0.05;
}
}