Thread: bear trap

Results 1 to 6 of 6
  1. #1
    Algorithm's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0

    bear trap

    Anyone know the code to spawn a bear trap?

    A search has thrown up nothing

  2. #2
    lockdown6435's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    DayZ Forum Babysitter
    Posts
    1,369
    Reputation
    98
    Thanks
    5,698
    My Mood
    Tired
    Code:
    TrapBear
    Is the code AFAIK, I don't have time to look it up, but I think that's it if I remember right.
    Quote Originally Posted by VindictusMods
    I'll just change my IP, and I have all your IP's guys. So watch it. I may hack or put a virus in ur computer.
    Quote Originally Posted by sd333221
    Injecting in the lobby gets you directly banned. Thats my secret deal with Battleye, I let them have the people who can't read the instructions and they don't ban the others in return.

  3. #3
    Dave84311's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    The Wild Wild West
    Posts
    35,837
    Reputation
    5782
    Thanks
    41,292
    My Mood
    Devilish
    I have NEVER seen a bear trap in game.





    THE EYE OF AN ADMINISTRATOR IS UPON YOU. ANY WRONG YOU DO IM GONNA SEE, WHEN YOU'RE ON MPGH, LOOK BEHIND YOU, 'CAUSE THATS WHERE IM GONNA BE


    "First they ignore you. Then they laugh at you. Then they fight you. Then you lose.” - Dave84311

    HAVING VIRTUAL DETOX

  4. #4
    Sindreh93's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Drunk
    Posts
    539
    Reputation
    28
    Thanks
    1,330
    My Mood
    Cynical
    I did a mistake and spawned like 200 armed bear traps in our camp.. I had to manually remove them all again be careful with these littl bastards..
    If you need to get in touch with me fast, add me on STEAM.

    Succesful Trades:7/7

    [IMG]https://post.barkbo*****m/wp-content/uploads/2013/02/tumblr_mhdh3aaPE51r2afs6o1_500.gif[/IMG]


    My current Releases/Guides:
    RapidFire script
    DayZ Custom Skins guide



  5. #5
    Kaweth's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    My Mood
    Yeehaw
    I have already get and use a bear trap but is bugged when you use it he are on the air.

  6. #6
    lockdown6435's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    DayZ Forum Babysitter
    Posts
    1,369
    Reputation
    98
    Thanks
    5,698
    My Mood
    Tired
    wuat had a couple...it's funny as hell to use.

    If you wanna mess around with them make a folder structure of "wuat\scripts\" and place both of these in there. Make sure to execute beartrap.sqf first.

    Beartrap.sqf:
    Code:
    [3, 9, 250, 1000, (position player), 30] execVM '\wuat\scripts\MineField.sqf';
    MineField.sqf:
    Code:
    _width = _this select 0; // In metres.
    _length = _this select 1; // In metres.
    _shells = _this select 2; // Total shells to expend.
    _speed = _this select 3; // In km/h.
    _Pos = _this select 4; // Centre of strike.
    _dir = _this select 5;
    
    _shellsPerMetre = _shells / _length;
    _speedMps = _speed;
    _timePerShell = 1 / (_shellsPerMetre * _speedMps);
    
    sleep 1;
    
    hint "Here it comes...";
    
    
    
    _expectedtime = time;
    
    //sleep 2;
    
    for [{ _i = -(_length / 2) }, {_i < (_length / 2) }, { _i = _i + (1 / _shellsPerMetre) }] do
    {
    	// Horizontal deviation. This is a more linear spread than
    	// (random 80) - (random 80), which has most bombs nearer the centre line.
    	_rnd = (random _width) - (_width / 2); 
    	
    	_round = "BearTrap_DZ" createVehicle [(_Pos select 0) + (_i * sin _dir) + (_rnd * cos _dir), (_Pos select 1) + (_i * cos _dir) + (_rnd * sin _dir), (_Pos select 2)];
    	_round animate ['LeftShutter', 0];
    	_round animate ['RightShutter', 0];
    
    	_expectedtime = _expectedtime + _timePerShell;
    	if (_expectedtime > time) then
    	{
    		sleep (_expectedtime - time);
    	};
    };
    [COLOR="Silver"]
    Last edited by lockdown6435; 08-08-2012 at 08:50 PM. Reason: Fucking double post.
    Quote Originally Posted by VindictusMods
    I'll just change my IP, and I have all your IP's guys. So watch it. I may hack or put a virus in ur computer.
    Quote Originally Posted by sd333221
    Injecting in the lobby gets you directly banned. Thats my secret deal with Battleye, I let them have the people who can't read the instructions and they don't ban the others in return.

Similar Threads

  1. Instant Plant Bear Trap Mines
    By supercarz1991 in forum Combat Arms Mods & Rez Modding
    Replies: 80
    Last Post: 02-12-2011, 09:18 PM
  2. [\Custom Model Mod/] M16 Mines to Bear Traps
    By supercarz1991 in forum Combat Arms Mods & Rez Modding
    Replies: 67
    Last Post: 10-19-2010, 03:23 PM
  3. Gunz X-trap Bypass!!! by Me:D
    By EleMentX in forum Gunz General
    Replies: 6
    Last Post: 01-04-2009, 09:45 AM
  4. X-Trap Bypass (JP WarRock)
    By aduckie in forum WarRock - International Hacks
    Replies: 4
    Last Post: 02-07-2007, 03:18 PM
  5. X - Trap
    By usernameee in forum Gunz General
    Replies: 1
    Last Post: 03-18-2006, 06:03 PM