Cannot remove wrecks

DocProteus

New Member
Hi all.

I've been adding in a bunch of scripts to my server though somewhere along the way I've disabled the ability to remove wrecks and barricades. I recently installed BB 1.3 though Im not sure if it was that or self blood bag that disabled it.

I think its this line that is the problem in my fn_selfActions.sqf

Code:
// CURSOR TARGET ALIVE
    if(_isAlive) then {
     
        //Allow player to delete objects
        if(_isDestructable or _isWreck or _isRemovable or _isWreckBuilding) then {
            if(_hasToolbox and "ItemCrowbar" in _itemsPlayer) then {
                _player_deleteBuild = true;
            };
        };

but I've compaired it to the original in dayz_code and it all seems fine so Im not sure what is causing it to not work any more. Im no code wizz by any means so any help I can get would be very appreciated.

If it helps at all Im running Chern Epoch 1.0.4.2 on a dayz.st server.
 
Here is my fn_selfactions.sqf if it helps.

https://www.dropbox.com/s/3x1m1tik2meianu/fn_selfActions.sqf

As far as I can see it should be working?.. help me open dayz your my only hope ;)

Fixed it with the help of a post done by the fella who made base building improvements. i will post up what i did, it works but its not the answer as there is still a few bugs ive got. would love feed back from anyone who has bb 1.3 on a epoch 1.0.4.2 server
 
Back
Top