PHP- Kodu:
#include < amxmodx >

#define ADMIN_VIP ADMIN_RESERVATION

#define SCOREATTRIB_NONE    0
#define SCOREATTRIB_DEAD    ( 1 << 0 )
#define SCOREATTRIB_BOMB    ( 1 << 1 )
#define SCOREATTRIB_VIP  ( 1 << 2 )

public plugin_init( ) {
    
register_plugin"VIP Admin""0.0.1""Exolent" );
    
    
register_messageget_user_msgid"ScoreAttrib" ), "MessageScoreAttrib" );
}

public 
MessageScoreAttribiMsgIDiDestiReceiver ) {
    new 
iPlayer get_msg_arg_int);
    if( 
is_user_connectediPlayer )
    && ( 
get_user_flagsiPlayer ) & ADMIN_VIP ) ) {
         
set_msg_arg_int2ARG_BYTEis_user_aliveiPlayer ) ? SCOREATTRIB_VIP SCOREATTRIB_DEAD );
    }