can i remove the buy zone like this?
PHP Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
remove_entity_name( "game_text" );
}
public remove_buyzone() {
new iEntity = -1;
while( ( iEntity = find_ent_by_class(iEntity, "func_buyzone") ) )
remove_entity( iEntity );
}