PDA

View Full Version : No winners


pauliuzzz
02-20-2011, 05:21
Hey, how to make that if all CT/T down round never end(no one win)? I found plugin http://forums.alliedmods.net/showthread.php?p=736993
but it doesn't work with csdm

rx1983
02-24-2011, 16:26
remove. (http://www.csro.com.br/)objectives = abcd

no works ?



#include <engine>
#include <amxmod>

public plugin_init() RemoveEntities()

RemoveEntities() {


if (find_ent_by_class(iEnt, "func_bomb_target")) {
remove_entity_name("func_bomb_target")
remove_entity_name("info_bomb_target")
}

if (find_ent_by_class(iEnt, "hostage_entity")) {
remove_entity_name("func_hostage_rescue")
remove_entity_name("info_hostage_rescue")
remove_entity_name("hostage_entity")
}

return PLUGIN_CONTINUE
}