Untested,But worked for me many time,Tell me if something is wrong,I just showed you what to do,It is not properly coded.Next time ask this in suggestion(i guess)
PHP Code:
register_clcmd("say /Check", "cmd_Check") // register a clientcommand,i.e /Check or anyother
public cmd_Check(id)
{
if(is_user_admin(id) // Only admin can use this;
{
//Put your code here,Everytime you type /Check in game,It will execute this code only for admins.
// use cstrike and fun module for items and health and other stuff
}
}
__________________