Quote:
Originally Posted by fysiks
The error is from the hamsandwich module but I don't see any hamsandwich code there.
|
Yeah thats what i said lol...
It works just fine in battlefield mod/vip mod/ and like 4 other plugins i have it in.
Quote:
Originally Posted by Tirant
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);
|
Plugin precahce is only fired at plugin start correct?? which means it would always block? i need to only block if bool is true.