Hi,
I want to remove the arena logic from arena maps and koth timer huds from koth maps so I can make the gamemode objectiveless but how can I do it?
I have tried
1.
PHP Code:
ent_remove_all tf_logic_arena
2.
PHP Code:
new ent = 0;
ent = MaxClients+1;
while((ent = FindEntityByClassname(ent, "tf_logic_arena"))!=-1)
{
AcceptEntityInput(ent, "Kill");
}
3. Stripper:Source
PHP Code:
remove:
{
"classname" "tf_logic_arena"
}
All 3 methods does not seem to remove the arena player count at all and retains the arena gamemode. This functions are called on TF2_OnWaitingForPlayersStart().
I appreciate all forms of help given.
Thanks.