• 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help Remove Death Barriers? Help Please!
#1
Hi everybody..

I'm looking for something that will remove all the death barriers in the map. I'm designing a gametype where everyone spawns outside. Any ideas?
Thanks.
  Reply
#2
This will do the thing:

Code:
ents = getEntArray();
for( i = 0; i < ents.size; i ++ )
{
if( isSubStr( ents[i].classname, "trigger_hurt" ) )
ents[i].origin = ( 0, 0, 9999999 );
}

I think that this would also work:

Code:
ents = getEntArray();
for( i = 0; i < ents.size; i ++ )
{
if( isSubStr( ents[i].classname, "trigger_hurt" ) )
ents[i] delete();
}
  Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Is it safe exactly when i remove the battery from the laptop? checkitnowa 2 2,928 09-13-2013, 08:15
Last Post: CJGreenLabel
  Help remove timer Dynasty 15 7,614 08-25-2013, 13:56
Last Post: hillbilly
  How to delete HUD elements on death? camxxcore 6 4,418 08-21-2013, 08:54
Last Post: Yamato
  how to remove commands in the chat ExoGamer* 6 3,993 07-20-2013, 09:24
Last Post: Pozzuh
  Change death animation Keouf 3 3,629 07-05-2013, 18:39
Last Post: Nekochan
  Turoial please, how do you add death machine to your slots? Erik The Born 9 4,719 02-15-2013, 21:38
Last Post: Gladio
  Help threading remove EnVi Sweden Rocks 3 3,016 01-28-2013, 15:26
Last Post: JariZ
  Help Remove Threading/tidyup hillbilly 4 4,189 09-16-2012, 11:09
Last Post: zxz0O0
  [Request] plugin to remove all secondary ammo ALEXFDR 1 2,124 09-08-2012, 23:32
Last Post: Nekochan
  Remove mini map moosa67 2 2,377 08-22-2012, 21:26
Last Post: Nukem

Forum Jump:


Users browsing this thread: 1 Guest(s)