Hi there, could some1 say me how could i do, that noone can buy AWP, except the VIP players. Weapon Restriction Won't Work!
i need something like
PHP Code:
if(get_user_flags(id) & ADMIN_LEVEL_H)
{
return PLUGIN_CONTINUE;
} else {
//* RESTRICTION HERE (THIS IS WHAT I NEED) *\\
client_print(id, print_chat, "Only VIP Can buy AWP");
}
return PLUGIN_CONTINUE;
}