Quote:
Originally Posted by Baws
I'm asking for the full code.
|
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
public msg_StatusValue(iMsgID, iDest, iClient)
{
if(!get_pcvar_num(g_pcvar_status_style))
return PLUGIN_CONTINUE
if(get_pcvar_num(g_pcvar_status_style) == 2 && !is_user_admin(iClient))
return PLUGIN_HANDLED
static value, status[2]
value = get_msg_arg_int(2)
if(value && get_msg_arg_int(1) == 1)
{
status[0] = iClient
status[1] = value
show_status(status)
}
return PLUGIN_HANDLED
}
This is