
Posts
2,148
Respect
346Add +1
Forum Rank
King of the Zombies
Primary Group
Donator ♥
Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
check_for_ammo_regen()
{
while( 1 )
{
players = getplayers();
for( j=0; j<players.size; j++ )
{
if( players[j] HasPerk( "specialty_leadfoot" ) )
{
player_weapons = players[j] GetWeaponsListPrimaries();
for( k=0; k<player_weapons.size; k++ )
{
max_ammo = WeaponMaxAmmo( player_weapons[k] );
current_ammo = players[j] GetWeaponAmmoStock( player_weapons[k] );
if( current_ammo < max_ammo )
players[j] SetWeaponAmmoStock( player_weapons[k], current_ammo + 5 );
iprintln("The ammo perk is working");
}
}
}
wait( 5 );
}
}![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
Search through your files if you used specialty_leadfood somewhere else too.
- Phil.