how do I make it clear that the weapon is available from round 2?
Code:
if(get_user_flags(id) & ACCESS_FLAG)
{
if(g_RoundNum >= 2)
{
drop_weapons(id, 1);
IsUserHaveAwp[id] = true;
give_item_ex2(id, "weapon_awp", 30, true, IMPULSE);
}else client_print(id, print_center, "available only to VIP players!");
}
}
I tried it like this but it doesn't work
Code:
else
{
client_print(id, print_center, "available from round 2!");
if(g_RoundNum >= 2)