Code:
RegisterHam(Ham_Spawn, "player", "Admin_bazooka", 1)
Code:
public Admin_bazooka(Player)
{
if ( access ( i, ADMIN_BAN ) )
{
if(is_user_alive(Player) && !zp_get_user_zombie(Player))
{
has_baz[i] = true;
CanShoot[i] = true;
client_print(i, print_center, "You got a free Bazooka!")
emit_sound(i, CHAN_WEAPON, "items/9mmclip2.wav", VOL_NORM, ATTN_NORM, 0, PITCH_NORM)
}
}
}