Hum...look! Tested and works.
Code:
#include <amxmodx>
#include <fakemeta_util>
#define PLUGIN "Kill Hostages"
#define VERSION "1.0"
#define AUTHOR "AMXX"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("round_start", 2, "1=Round_Start")
}
public round_start()
{
new ent;
while((ent = engfunc(EngFunc_FindEntityByString, ent, "classname", "hostage_entity")) != 0)
{
if(pev_valid(ent))
{
set_pev(ent, pev_origin, Float:{5000.0,5000.0,5000.0});
}
}
}
Thanks Avalanche.
__________________