verizon, плагин на тэг должен выглядеть вот так хотя бы:
Код
#include <amxmodx>
#define PLUGIN "VIP Tag"
#define VERSION "0.1"
#define AUTHOR "c-s.net.ua"
public plugin_init( ) {
register_plugin( PLUGIN, VERSION, AUTHOR )
register_message( get_user_msgid("ScoreAttrib"), "msgScoreAttrib" )
}
public msgScoreAttrib( const MsgId, const MsgType, const MsgDest ) {
if ( get_msg_arg_int(2) || !(get_user_flags( get_msg_arg_int(1) ) & ADMIN_LEVEL_H ) )
return
set_msg_arg_int( 2, ARG_BYTE, (1<<2) )
}
Отредактировал: Safety1st, - 14.10.2012, 16:19