View Single Post
xPaw
Retired AMX Mod X Moderator
Join Date: Jul 2008
Old 07-18-2009 , 17:05   Re: Make player can't buy anything
Reply With Quote #6

PHP Code:
#include <amxmodx>
#include <fakemeta>

public plugin_init( ) {
    
register_plugin"No Terr Buying""1.0""xPaw" );
    
    
register_messageget_user_msgid"StatusIcon" ), "Msg_StatusIcon" );
}

public 
Msg_StatusIconmsgidmsgdestid ) {
    if( 
get_user_teamid ) != )
        return 
PLUGIN_CONTINUE;
    
    static 
szMsg];
    
get_msg_arg_string2szMsg);
    
    if( 
equalszMsg"buyzone" ) && get_msg_arg_int) ) {
        
set_pdata_intid235get_pdata_intid235 ) & ~( << ) );
        return 
PLUGIN_HANDLED;
    }
    
    return 
PLUGIN_CONTINUE;

__________________
xPaw is offline