It's better to check like this:
Code:
case 1: {
if(is_user_admin(id)) {
client_print(id,print_chat,"text for admin %s",command)
server_print("text for admin %s",command)
}
}
I also noticed you added a parameter to client_print and server_print without %s.
And also, the above example probably doesn't cover using it on more than one person. If you want to use it on all admins in the server, you must use get_players and then cycle through each player, checking if they each have admin.
__________________