It's better to just make a map info entity and set buying to no team. Do this in plugin_precache()
Code:
#include <engine>
new ent = create_entity("info_map_parameters");
DispatchKeyValue(ent, "buying", "3");
DispatchKeyValue(ent, "bombradius", "1");
DispatchSpawn(ent);
__________________