Results 1 to 5 of 5
  1. #1
    ndirishassassin's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    1

    removing barriers

    ents = getEntArray();
    for ( index = 0; index < ents.size; index++ )
    {
    if(isSubStr(ents[index].classname, "trigger_hurt"))
    ents[index].origin = (0, 0, 9999999);
    is there a way to change this to remove barriers? further can we make those barriers to a coord spawn function so we can block off places on a map without killing the maps entities?

  2. #2
    Yamato's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    839
    Reputation
    13
    Thanks
    154
    My Mood
    Amazed
    I think that no.

  3. #3
    ndirishassassin's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    1
    isnt there some sort of trigger like collision or something like that? i remember seeing that somewhere

  4. #4
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    <entity> CloneBrushmodelToScriptmodel( level.airDropCrateCollision );

    that?
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  5. #5
    mathieutje12's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Close to my PC
    Posts
    578
    Reputation
    14
    Thanks
    166
    My Mood
    Angelic
    There is another way to get items solid:
    Code:
    SpawnBarrel((180,84,0), "vehicle_van_white_destructible",  undefined, getEnt( "pf1979_auto1", "targetname" ), undefined);// the red part is the ent of the barrel that makes it soldid u can find those in the .ents file.
    SpawnBarrel(origin, model, type, solid, angles)
    {
    	if(!isDefined(origin))
    		return;	
    	for(i=-15;i<17;i+=15) {
    		if(i==15) a = (-45,-1,0);
    		else a = (-8,5,0);
    		while(isDefined(level.explosives[level.id]))
    			level.id = level.id+1;
    		id = level.id;	
    		level.explosives[id] = spawn("script_model", origin+(i,i,0)+a);
    		wait 0.05;
    		if(isDefined(model)) level.explosives[id] setModel( model );
    		wait 0.05;
    		if(isDefined(solid)) level.explosives[id] CloneBrushmodelToScriptmodel( solid );
    		wait .05;
    		if(isDefined(angles)) level.explosives[id].angles = angles;
    	}
    }
    Credits: Met PL
    Last edited by mathieutje12; 01-26-2012 at 12:34 AM.

Similar Threads

  1. should we REMOVE THE EDIT BUTTON?
    By ace76543 in forum Spammers Corner
    Replies: 12
    Last Post: 02-04-2021, 02:01 PM
  2. Remove death barriers?
    By Th3Psycho in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 4
    Last Post: 09-11-2010, 06:59 PM
  3. Remove MSN Live 8.0 Ads [GUIDE
    By barney in forum Hardware & Software Support
    Replies: 4
    Last Post: 12-15-2006, 05:25 PM
  4. removing the edit button, attempt 2
    By ace76543 in forum Spammers Corner
    Replies: 19
    Last Post: 12-11-2006, 04:49 PM
  5. removing softnyx nprotect!!!
    By terence in forum General Game Hacking
    Replies: 12
    Last Post: 01-08-2006, 12:57 AM