Neka7350 Posted April 13, 2015 Report Share Posted April 13, 2015 I tried with this : else { hint "The AutoLockPicker worked! Unlocking Vehicle"; _nearVehicle lock false; } And now the unlocking of vehicle is working well. Thank you again for the release ! Link to comment Share on other sites More sharing options...
second_coming Posted April 13, 2015 Author Report Share Posted April 13, 2015 Hello second_coming, First, I have to say that's a great script you released here. Thank you very much. I tested it and saw that everything is working very well except one thing : When the unlocking of a vehicle is success, the vehicle is still lock. I saw in your script that the function for the unlocking of a vehicle is empty (except the hint) : else { hint "The AutoLockPicker worked! Unlocking Vehicle"; } So I just decided to add " _nearVehicle lock 0; " after the hint like that : else { hint "The AutoLockPicker worked! Unlocking Vehicle"; _nearVehicle lock 0; } So I can enter in the vehicle but I'm stuck in it because he stay lock. You confirm that the autolockpick of vehicle isn't working ? Thank you again. Greetings, Neka The unlocking is done server side, if you have installed the a3_epoch_autolockpicker.pbo to your epochhive addons folder properly. The trigger to unlock it is: ALPUNLOCK = [_nearVehicle]; uiSleep 3; publicVariableServer "ALPUNLOCK"; Link to comment Share on other sites More sharing options...
Neka7350 Posted April 13, 2015 Report Share Posted April 13, 2015 Oh ok ! My bad, I guess I made something wrong. I will investigate more to check what I missed. Thank you for your help. Link to comment Share on other sites More sharing options...
second_coming Posted April 14, 2015 Author Report Share Posted April 14, 2015 /* AutoLockPicker by second_coming (http://epochmod.com/forum/index.php?/user/16619-second-coming/) with help from SpiRe Allow players to have a chance to lock pick any vehicle or locked door (also a chance to eloctrocute on failed unlocking!) Initial Script Code: Stealthstick's "Explosive-To-Vehicle" Script Electrocution effect: http://www.altisliferpg.com/topic/224-effects-on-marijuana-use/ v1.2 Swapped to cursortarget instead of the nearest item to get around putting the AutoLockPicker onto the wrong item Added variables for the materials required Added EnergyRequired Added AllowLockPicksNear to stop multiple locks being placed together */ // ====================================================================================================================================================================================== // User configurable Variables // ====================================================================================================================================================================================== // Which locks can be opened LockpickLandVehicles = true; // All land vehicles (cars, vans, trucks etc) ::: acceptable values true or false LockpickAir = true; // Helis and jets ::: acceptable values true or false LockpickShip = true; // Boats, jetskis and submarines ::: acceptable values true or false LockpickEpochDoors = true; // Epoch build-able doors ::: acceptable values true or false // Chance to succeed or be electrocuted SuccessChance = 20; // (Between 1-100) % Chance to successfully pick the lock ElectrocuteChance = 10; // (Between 1-100) % Chance of electrocution on if the lock pick fails // Damage Settings InflictDamage = true; // If true damage is added, if false just stun MinimumDamage = 50; // (Between 1-100) min% of full health Damage to inflict must be less than MaximumDamage MaximumDamage = 90; // (Between 1-100) max% of full health Damage to inflict must be more than MinimumDamage StunTime = 15; // Time in seconds to stun the player on electrocution (if it doesn't kill them) // Materials Required to Create AutoLockPicker EnergyRequired = 100; // Amount of energy expended operating AutoLockPicker (0 for zero energy required) MaterialRequired1 = 'CircuitParts'; // First material required to create AutoLockPicker (default is 'CircuitParts' or Electronic Component) MaterialRequired2 = 'ItemCorrugated'; // Second material required to create AutoLockPicker (default is 'ItemCorrugated' or small metal parts) // Usage Restrictions AllowInSafeZone = false; // (Leave true if you don't use inSafezone) Allow use of AutoLockPicker in safezones // (using the boolean variable inSafezone set here // http://epochmod.com/forum/index.php?/topic/32555-extended-safezone-script-working/) _MinimumPlayers = 0; // Number of players required online before the option to lock pick becomes available (set to 0 to always allow) AllowLockPicksNear = false; // (Leave true for no restriction) selecting false will make the script check if one has been placed within 5m of the player // ====================================================================================================================================================================================== // End of User configurable Variables // ====================================================================================================================================================================================== if(AllowInSafeZone && count playableUnits >= _MinimumPlayers) then { SafeToALP = true; } else { if(!inSafezone && count playableUnits >= _MinimumPlayers) then { SafeToALP = true; } else { SafeToALP = false; }; }; LockPickableItems = []; if(LockpickLandVehicles) then { LockPickableItems = LockPickableItems + ["LandVehicle"]; }; if(LockpickAir) then { LockPickableItems = LockPickableItems + ["Air"]; }; if(LockpickShip) then { LockPickableItems = LockPickableItems + ["Ship"]; }; if(LockpickEpochDoors) then { LockPickableItems = LockPickableItems + ["CinderWallGarage_EPOCH","WoodLargeWallDoorL_EPOCH","WoodLargeWallDoor_EPOCH"]; }; AutoLockPicker_MatsCheck = { _charge1 = _this select 0; _charge2 = _this select 1; _unit = _this select 2; _hasIt1 = _charge1 in (magazines _unit); _hasIt2 = _charge2 in (magazines _unit); _hasEnergy = false; if(EnergyRequired == 0 || EPOCH_playerEnergy - EnergyRequired >= 0) then { _hasEnergy = true; }; _CanPlace = false; _nearALP = nearestObjects [_unit,["Land_PortableLongRangeRadio_F"],5]; if(AllowLockPicksNear || (count _nearALP == 0 && !AllowLockPicksNear)) then { _CanPlace = true; }; _target = cursorTarget; _LockPickable = false; if ((typeOf cursorTarget) in LockPickableItems) then { _LockPickable = true; } else { if (_target isKindOf "LandVehicle" && LockpickLandVehicles) then { _LockPickable = true; }; if (_target isKindOf "Air" && LockpickAir) then { _LockPickable = true; }; if (_target isKindOf "Ship" && LockpickShip) then { _LockPickable = true; }; }; //hint format ["Target: %1 Lockpickable: %2 Locked: %3 Distance: %4",(typeOf cursorTarget),_LockPickable,locked cursorTarget,_unit distance cursorTarget]; _nearVehs = false; if (_LockPickable && _unit distance _target < 5 && (locked _target == 2 || locked _target == -1) ) then { _nearVehs = true; }; _return = (_hasIt1 && _hasIt2 && _nearVehs && alive _unit && SafeToALP && _hasEnergy && _CanPlace); _return }; AutoLockPicker_Activate = { _array = _this select 3; _unit = _array select 0; _lockpicks = _unit getVariable ["lockpicks",[]]; { if(alive _x && SafeToALP) then { // Chance to unlock _chance = Ceil random 100; if(_chance <= SuccessChance) then{ // Unlock the door or vehicle _nearVehicle = (nearestObjects [_x,LockPickableItems,5]) select 0; deleteVehicle _x; ALPUNLOCK = [_nearVehicle]; uiSleep 3; publicVariableServer "ALPUNLOCK"; uiSleep 1; if ((typeOf _nearVehicle) in ["CinderWallGarage_EPOCH","WoodLargeWallDoorL_EPOCH","WoodLargeWallDoor_EPOCH"]) then { hint "The AutoLockPicker worked! Opening door"; _nearVehicle animate ['open_left', 1]; _nearVehicle animate ['open_right', 1]; _nearVehicle animate ['Open_Door', 1]; } else { hint "The AutoLockPicker worked! Unlocking Vehicle"; } } else { _chance2 = Ceil random 100; if(_chance2 <= ElectrocuteChance) then { // Chance of electrocution _DamagetoInflict = (Ceil random (MaximumDamage - MinimumDamage))/100; _damage = Damage player; _damage = _damage + (MinimumDamage/100) + _DamagetoInflict; playSound "shocker"; if(_damage > 1 && InflictDamage) then { hint "The AutoLockPicker malfunctioned and electrocuted you"; // Activate ppEffects "chromAberration" ppEffectEnable true; "radialBlur" ppEffectEnable true; enableCamShake true; // 5secs of effects for "_i" from 0 to 4 do { "chromAberration" ppEffectAdjust [random 0.25,random 0.25,true]; "chromAberration" ppEffectCommit 1; "radialBlur" ppEffectAdjust [random 0.02,random 0.02,0.15,0.15]; "radialBlur" ppEffectCommit 1; addcamShake[random 3, 1, random 3]; uiSleep 1; }; //Stop effects "chromAberration" ppEffectAdjust [0,0,true]; "chromAberration" ppEffectCommit 5; "radialBlur" ppEffectAdjust [0,0,0,0]; "radialBlur" ppEffectCommit 5; uiSleep 6; //Deactivate ppEffects "chromAberration" ppEffectEnable false; "radialBlur" ppEffectEnable false; resetCamShake; player setDamage 1; } else { hint "The AutoLockPicker malfunctioned and gave you an electric shock"; if(InflictDamage) then { player setDamage _damage; }; player playMove "amovpknlmstpsraswrfldnon"; // Activate ppEffects "chromAberration" ppEffectEnable true; "radialBlur" ppEffectEnable true; enableCamShake true; uiSleep 1; // Stop the player from moving while shocked player enablesimulation false; // StunTime seconds of effects for "_i" from 0 to StunTime do { "chromAberration" ppEffectAdjust [random 0.25,random 0.25,true]; "chromAberration" ppEffectCommit 1; "radialBlur" ppEffectAdjust [random 0.02,random 0.02,0.15,0.15]; "radialBlur" ppEffectCommit 1; addcamShake[random 3, 1, random 3]; uiSleep 1; }; player enablesimulation true; //Stop effects "chromAberration" ppEffectAdjust [0,0,true]; "chromAberration" ppEffectCommit 5; "radialBlur" ppEffectAdjust [0,0,0,0]; "radialBlur" ppEffectCommit 5; uiSleep 6; //Deactivate ppEffects "chromAberration" ppEffectEnable false; "radialBlur" ppEffectEnable false; resetCamShake; }; deleteVehicle _x; } else { hint "The AutoLockPicker failed to unlock the door, try again"; deleteVehicle _x; } }; }; } forEach _lockpicks; _unit setVariable ["lockpicks",[]]; }; AutoLockPicker_UnitCheck = { private "_return"; _unit = _this select 0; _lockpicks = _unit getVariable ["lockpicks",[]]; if(count _lockpicks > 0) then { _return = true; } else { _return = false; }; _return }; AutoLockPicker_AttachALP = { _array = _this select 3; _charge = _array select 0; _unit = _array select 1; private "_class"; _unit removeMagazine MaterialRequired1; _unit removeMagazine MaterialRequired2; EPOCH_playerEnergy = EPOCH_playerEnergy - EnergyRequired; _unit playMove "AinvPercMstpSnonWnonDnon_Putdown_AmovPercMstpSnonWnonDnon"; switch _charge do { case "Land_PortableLongRangeRadio_F": { _class = "Land_PortableLongRangeRadio_F"; }; }; _nearVehicle = (nearestObjects [_unit,LockPickableItems,5]) select 0; _autolockpick = _class createVehicle [0,0,0]; _autolockpick attachTo [_unit,[0,0,0],"leftHand"]; _random0 = random 180; _random1 = random 180; [_autolockpick,_random0,_random1] call BIS_fnc_SetPitchBank; [_autolockpick,_nearVehicle,_unit,_random0,_random1] spawn { _autolockpick = _this select 0; _nearVehicle = _this select 1; _unit = _this select 2; _random0 = _this select 3; _random1 = _this select 4; uiSleep 1.5; _autolockpick attachTo [_nearVehicle, [0,0,0.2]]; [_autolockpick,_random0,_random1] call BIS_fnc_SetPitchBank; _unit setVariable ["lockpicks",(_unit getVariable ["lockpicks",[]]) + [_autolockpick]]; }; }; AutoLockPicker_Actions = { private ["_unit"]; _unit = _this select 0; _unit addAction ["<t color=""#0099FF"">" +"Attach AutoLockPicker", AutoLockPicker_AttachALP, ["Land_PortableLongRangeRadio_F",_unit], 1, true, true, "","[MaterialRequired1,MaterialRequired2,_target] call AutoLockPicker_MatsCheck"]; _unit addAction ["<t color=""#3D993D"">" +"Activate AutoLockPicker", AutoLockPicker_Activate, [_unit], 1, true, true, "","[_target] call AutoLockPicker_UnitCheck"]; }; //======================= [player] call AutoLockPicker_Actions; Version 1.2 released Original download has been updated to include this: https://www.dropbox.com/s/fckqubg2mvw21r1/AutoLockPicker.rar?dl=0 Link to comment Share on other sites More sharing options...
Tobias Solem Posted April 14, 2015 Report Share Posted April 14, 2015 Thanks, I've installed this on the WTP-server now. =) Link to comment Share on other sites More sharing options...
Tobias Solem Posted April 14, 2015 Report Share Posted April 14, 2015 Script Restriction #19: #19 "LockPicksNear = false; if(AllowInSafeZone && count playableUnits >= _MinimumPlayers) then { SafeToALP = true; } else { if(" also #47 ""radialBlur" ppEffectEnable false; resetCamShake; player setDamage 1; } else on #19 I did !="if(AllowInSafeZone && count playableUnits >= _MinimumPlayers) then" on #47 I did !="player setDamage1;" However this is probably a bad idea? Link to comment Share on other sites More sharing options...
second_coming Posted April 14, 2015 Author Report Share Posted April 14, 2015 Script Restriction #19: also on #19 I did !="if(AllowInSafeZone && count playableUnits >= _MinimumPlayers) then" on #47 I did !="player setDamage1;" However this is probably a bad idea? I already had !="player setDamage1;" from another script. I suppose it could be exploited but if someone is able to run a command like that at will then they are probably getting round infiSTAR or the standard AH anyway, so it would be the least of your worries :) Link to comment Share on other sites More sharing options...
Tobias Solem Posted April 14, 2015 Report Share Posted April 14, 2015 Well... so much for that, Stock AH bans everyone for the AddAction-part of it. :/ Link to comment Share on other sites More sharing options...
second_coming Posted April 14, 2015 Author Report Share Posted April 14, 2015 Did it work previously? Link to comment Share on other sites More sharing options...
Tobias Solem Posted April 14, 2015 Report Share Posted April 14, 2015 Did it work previously? Test server had no anti-hack active, so unsure. The weird thing is that it was fine one restart, and then the other restart it wasn't. Link to comment Share on other sites More sharing options...
second_coming Posted April 14, 2015 Author Report Share Posted April 14, 2015 I had the same issues with addactions when using the standard AH, it was the main reason I switched to infiSTAR Link to comment Share on other sites More sharing options...
TPwalker Posted April 15, 2015 Report Share Posted April 15, 2015 How would one go about making it so multiple of one item is needed for lockpick? I tried a couple ways i thought would work but i broke the script doing it ;p Link to comment Share on other sites More sharing options...
second_coming Posted April 15, 2015 Author Report Share Posted April 15, 2015 How would one go about making it so multiple of one item is needed for lockpick? I tried a couple ways i thought would work but i broke the script doing it ;p try this:/* AutoLockPicker by second_coming (http://epochmod.com/forum/index.php?/user/16619-second-coming/) with help from SpiRe Allow players to have a chance to lock pick any vehicle or locked door (also a chance to eloctrocute on failed unlocking!) Initial Script Code: Stealthstick's "Explosive-To-Vehicle" Script Electrocution effect: http://www.altisliferpg.com/topic/224-effects-on-marijuana-use/ v1.2 Swapped to cursortarget instead of the nearest item to get around putting the AutoLockPicker onto the wrong item Added variables for the materials required Added EnergyRequired Added AllowLockPicksNear to stop multiple locks being placed together */ // ====================================================================================================================================================================================== // User configurable Variables // ====================================================================================================================================================================================== // Which locks can be opened LockpickLandVehicles = true; // All land vehicles (cars, vans, trucks etc) ::: acceptable values true or false LockpickAir = true; // Helis and jets ::: acceptable values true or false LockpickShip = true; // Boats, jetskis and submarines ::: acceptable values true or false LockpickEpochDoors = true; // Epoch build-able doors ::: acceptable values true or false // Chance to succeed or be electrocuted SuccessChance = 20; // (Between 1-100) % Chance to successfully pick the lock ElectrocuteChance = 10; // (Between 1-100) % Chance of electrocution on if the lock pick fails // Damage Settings InflictDamage = true; // If true damage is added, if false just stun MinimumDamage = 50; // (Between 1-100) min% of full health Damage to inflict must be less than MaximumDamage MaximumDamage = 90; // (Between 1-100) max% of full health Damage to inflict must be more than MinimumDamage StunTime = 15; // Time in seconds to stun the player on electrocution (if it doesn't kill them) // Materials Required to Create AutoLockPicker EnergyRequired = 100; // Amount of energy expended operating AutoLockPicker (0 for zero energy required) MaterialRequired1 = 'CircuitParts'; // First material required to create AutoLockPicker (default is 'CircuitParts' or Electronic Component) MaterialRequired1Count = 1; MaterialRequired2 = 'ItemCorrugated'; // Second material required to create AutoLockPicker (default is 'ItemCorrugated' or small metal parts) MaterialRequired2Count = 1; // Usage Restrictions AllowInSafeZone = false; // (Leave true if you don't use inSafezone) Allow use of AutoLockPicker in safezones // (using the boolean variable inSafezone set here http://epochmod.com/forum/index.php?/topic/32555-extended-safezone-script-working/) _MinimumPlayers = 0; // Number of players required online before the option to lock pick becomes available (set to 0 to always allow) AllowLockPicksNear = false; // (Leave true for no restriction) selecting false will make the script check if one has been placed within 5m of the player // ====================================================================================================================================================================================== // End of User configurable Variables // ====================================================================================================================================================================================== if(AllowInSafeZone && count playableUnits >= _MinimumPlayers) then { SafeToALP = true; } else { if(!inSafezone && count playableUnits >= _MinimumPlayers) then { SafeToALP = true; } else { SafeToALP = false; }; }; LockPickableItems = []; if(LockpickLandVehicles) then { LockPickableItems = LockPickableItems + ["LandVehicle"]; }; if(LockpickAir) then { LockPickableItems = LockPickableItems + ["Air"]; }; if(LockpickShip) then { LockPickableItems = LockPickableItems + ["Ship"]; }; if(LockpickEpochDoors) then { LockPickableItems = LockPickableItems + ["CinderWallGarage_EPOCH","WoodLargeWallDoorL_EPOCH","WoodLargeWallDoor_EPOCH"]; }; AutoLockPicker_MatsCheck = { _charge1 = _this select 0; _charge2 = _this select 1; _unit = _this select 2; _hasIt1 = _charge1 in (magazines _unit); _hasIt1Count = {_x == _charge1} count magazines player; _hasIt2 = _charge2 in (magazines _unit); _hasIt2Count = {_x == _charge2} count magazines player; _hasEnough = false; if(_hasIt1Count >= MaterialRequired1Count && _hasIt2Count >= MaterialRequired2Count) then { _hasEnough = true; }; _hasEnergy = false; if(EnergyRequired == 0 || EPOCH_playerEnergy - EnergyRequired >= 0) then { _hasEnergy = true; }; _CanPlace = false; _nearALP = nearestObjects [_unit,["Land_PortableLongRangeRadio_F"],5]; if(AllowLockPicksNear || (count _nearALP == 0 && !AllowLockPicksNear)) then { _CanPlace = true; }; _target = cursorTarget; _LockPickable = false; if ((typeOf cursorTarget) in LockPickableItems) then { _LockPickable = true; } else { if (_target isKindOf "LandVehicle" && LockpickLandVehicles) then { _LockPickable = true; }; if (_target isKindOf "Air" && LockpickAir) then { _LockPickable = true; }; if (_target isKindOf "Ship" && LockpickShip) then { _LockPickable = true; }; }; //hint format ["Target: %1 Lockpickable: %2 Locked: %3 Distance: %4",(typeOf cursorTarget),_LockPickable,locked cursorTarget,_unit distance cursorTarget]; _nearVehs = false; if (_LockPickable && _unit distance _target < 5 && (locked _target == 2 || locked _target == -1) ) then { _nearVehs = true; }; _return = (_hasEnough && _nearVehs && alive _unit && SafeToALP && _hasEnergy && _CanPlace); _return }; AutoLockPicker_Activate = { _array = _this select 3; _unit = _array select 0; _lockpicks = _unit getVariable ["lockpicks",[]]; { if(alive _x && SafeToALP) then { // Chance to unlock _chance = Ceil random 100; if(_chance <= SuccessChance) then{ // Unlock the door or vehicle _nearVehicle = (nearestObjects [_x,LockPickableItems,5]) select 0; deleteVehicle _x; ALPUNLOCK = [_nearVehicle]; uiSleep 3; publicVariableServer "ALPUNLOCK"; uiSleep 1; if ((typeOf _nearVehicle) in ["CinderWallGarage_EPOCH","WoodLargeWallDoorL_EPOCH","WoodLargeWallDoor_EPOCH"]) then { hint "The AutoLockPicker worked! Opening door"; _nearVehicle animate ['open_left', 1]; _nearVehicle animate ['open_right', 1]; _nearVehicle animate ['Open_Door', 1]; } else { hint "The AutoLockPicker worked! Unlocking Vehicle"; } } else { _chance2 = Ceil random 100; if(_chance2 <= ElectrocuteChance) then { // Chance of electrocution _DamagetoInflict = (Ceil random (MaximumDamage - MinimumDamage))/100; _damage = Damage player; _damage = _damage + (MinimumDamage/100) + _DamagetoInflict; playSound "shocker"; if(_damage > 1 && InflictDamage) then { hint "The AutoLockPicker malfunctioned and electrocuted you"; // Activate ppEffects "chromAberration" ppEffectEnable true; "radialBlur" ppEffectEnable true; enableCamShake true; // 5secs of effects for "_i" from 0 to 4 do { "chromAberration" ppEffectAdjust [random 0.25,random 0.25,true]; "chromAberration" ppEffectCommit 1; "radialBlur" ppEffectAdjust [random 0.02,random 0.02,0.15,0.15]; "radialBlur" ppEffectCommit 1; addcamShake[random 3, 1, random 3]; uiSleep 1; }; //Stop effects "chromAberration" ppEffectAdjust [0,0,true]; "chromAberration" ppEffectCommit 5; "radialBlur" ppEffectAdjust [0,0,0,0]; "radialBlur" ppEffectCommit 5; uiSleep 6; //Deactivate ppEffects "chromAberration" ppEffectEnable false; "radialBlur" ppEffectEnable false; resetCamShake; player setDamage 1; } else { hint "The AutoLockPicker malfunctioned and gave you an electric shock"; if(InflictDamage) then { player setDamage _damage; }; player playMove "amovpknlmstpsraswrfldnon"; // Activate ppEffects "chromAberration" ppEffectEnable true; "radialBlur" ppEffectEnable true; enableCamShake true; uiSleep 1; // Stop the player from moving while shocked player enablesimulation false; // StunTime seconds of effects for "_i" from 0 to StunTime do { "chromAberration" ppEffectAdjust [random 0.25,random 0.25,true]; "chromAberration" ppEffectCommit 1; "radialBlur" ppEffectAdjust [random 0.02,random 0.02,0.15,0.15]; "radialBlur" ppEffectCommit 1; addcamShake[random 3, 1, random 3]; uiSleep 1; }; player enablesimulation true; //Stop effects "chromAberration" ppEffectAdjust [0,0,true]; "chromAberration" ppEffectCommit 5; "radialBlur" ppEffectAdjust [0,0,0,0]; "radialBlur" ppEffectCommit 5; uiSleep 6; //Deactivate ppEffects "chromAberration" ppEffectEnable false; "radialBlur" ppEffectEnable false; resetCamShake; }; deleteVehicle _x; } else { hint "The AutoLockPicker failed to unlock the door, try again"; deleteVehicle _x; } }; }; } forEach _lockpicks; _unit setVariable ["lockpicks",[]]; }; AutoLockPicker_UnitCheck = { private "_return"; _unit = _this select 0; _lockpicks = _unit getVariable ["lockpicks",[]]; if(count _lockpicks > 0) then { _return = true; } else { _return = false; }; _return }; AutoLockPicker_AttachALP = { _array = _this select 3; _charge = _array select 0; _unit = _array select 1; private "_class"; _unit removeMagazine MaterialRequired1; _unit removeMagazine MaterialRequired2; EPOCH_playerEnergy = EPOCH_playerEnergy - EnergyRequired; _unit playMove "AinvPercMstpSnonWnonDnon_Putdown_AmovPercMstpSnonWnonDnon"; switch _charge do { case "Land_PortableLongRangeRadio_F": { _class = "Land_PortableLongRangeRadio_F"; }; }; _nearVehicle = (nearestObjects [_unit,LockPickableItems,5]) select 0; _autolockpick = _class createVehicle [0,0,0]; _autolockpick attachTo [_unit,[0,0,0],"leftHand"]; _random0 = random 180; _random1 = random 180; [_autolockpick,_random0,_random1] call BIS_fnc_SetPitchBank; [_autolockpick,_nearVehicle,_unit,_random0,_random1] spawn { _autolockpick = _this select 0; _nearVehicle = _this select 1; _unit = _this select 2; _random0 = _this select 3; _random1 = _this select 4; uiSleep 1.5; _autolockpick attachTo [_nearVehicle, [0,0,0.2]]; [_autolockpick,_random0,_random1] call BIS_fnc_SetPitchBank; _unit setVariable ["lockpicks",(_unit getVariable ["lockpicks",[]]) + [_autolockpick]]; }; }; AutoLockPicker_Actions = { private ["_unit"]; _unit = _this select 0; _unit addAction ["<t color=""#0099FF"">" +"Attach AutoLockPicker", AutoLockPicker_AttachALP, ["Land_PortableLongRangeRadio_F",_unit], 1, true, true, "","[MaterialRequired1,MaterialRequired2,_target] call AutoLockPicker_MatsCheck"]; _unit addAction ["<t color=""#3D993D"">" +"Activate AutoLockPicker", AutoLockPicker_Activate, [_unit], 1, true, true, "","[_target] call AutoLockPicker_UnitCheck"]; }; //removeAllActions player; //======================= [player] call AutoLockPicker_Actions; Link to comment Share on other sites More sharing options...
TPwalker Posted April 16, 2015 Report Share Posted April 16, 2015 try this: /* AutoLockPicker by second_coming (http://epochmod.com/forum/index.php?/user/16619-second-coming/) with help from SpiRe Allow players to have a chance to lock pick any vehicle or locked door (also a chance to eloctrocute on failed unlocking!) Initial Script Code: Stealthstick's "Explosive-To-Vehicle" Script Electrocution effect: http://www.altisliferpg.com/topic/224-effects-on-marijuana-use/ v1.2 Swapped to cursortarget instead of the nearest item to get around putting the AutoLockPicker onto the wrong item Added variables for the materials required Added EnergyRequired Added AllowLockPicksNear to stop multiple locks being placed together */ // ====================================================================================================================================================================================== // User configurable Variables // ====================================================================================================================================================================================== // Which locks can be opened LockpickLandVehicles = true; // All land vehicles (cars, vans, trucks etc) ::: acceptable values true or false LockpickAir = true; // Helis and jets ::: acceptable values true or false LockpickShip = true; // Boats, jetskis and submarines ::: acceptable values true or false LockpickEpochDoors = true; // Epoch build-able doors ::: acceptable values true or false // Chance to succeed or be electrocuted SuccessChance = 20; // (Between 1-100) % Chance to successfully pick the lock ElectrocuteChance = 10; // (Between 1-100) % Chance of electrocution on if the lock pick fails // Damage Settings InflictDamage = true; // If true damage is added, if false just stun MinimumDamage = 50; // (Between 1-100) min% of full health Damage to inflict must be less than MaximumDamage MaximumDamage = 90; // (Between 1-100) max% of full health Damage to inflict must be more than MinimumDamage StunTime = 15; // Time in seconds to stun the player on electrocution (if it doesn't kill them) // Materials Required to Create AutoLockPicker EnergyRequired = 100; // Amount of energy expended operating AutoLockPicker (0 for zero energy required) MaterialRequired1 = 'CircuitParts'; // First material required to create AutoLockPicker (default is 'CircuitParts' or Electronic Component) MaterialRequired1Count = 1; MaterialRequired2 = 'ItemCorrugated'; // Second material required to create AutoLockPicker (default is 'ItemCorrugated' or small metal parts) MaterialRequired2Count = 1; // Usage Restrictions AllowInSafeZone = false; // (Leave true if you don't use inSafezone) Allow use of AutoLockPicker in safezones // (using the boolean variable inSafezone set here http://epochmod.com/forum/index.php?/topic/32555-extended-safezone-script-working/) _MinimumPlayers = 0; // Number of players required online before the option to lock pick becomes available (set to 0 to always allow) AllowLockPicksNear = false; // (Leave true for no restriction) selecting false will make the script check if one has been placed within 5m of the player // ====================================================================================================================================================================================== // End of User configurable Variables // ====================================================================================================================================================================================== if(AllowInSafeZone && count playableUnits >= _MinimumPlayers) then { SafeToALP = true; } else { if(!inSafezone && count playableUnits >= _MinimumPlayers) then { SafeToALP = true; } else { SafeToALP = false; }; }; LockPickableItems = []; if(LockpickLandVehicles) then { LockPickableItems = LockPickableItems + ["LandVehicle"]; }; if(LockpickAir) then { LockPickableItems = LockPickableItems + ["Air"]; }; if(LockpickShip) then { LockPickableItems = LockPickableItems + ["Ship"]; }; if(LockpickEpochDoors) then { LockPickableItems = LockPickableItems + ["CinderWallGarage_EPOCH","WoodLargeWallDoorL_EPOCH","WoodLargeWallDoor_EPOCH"]; }; AutoLockPicker_MatsCheck = { _charge1 = _this select 0; _charge2 = _this select 1; _unit = _this select 2; _hasIt1 = _charge1 in (magazines _unit); _hasIt1Count = {_x == _charge1} count magazines player; _hasIt2 = _charge2 in (magazines _unit); _hasIt2Count = {_x == _charge2} count magazines player; _hasEnough = false; if(_hasIt1Count >= MaterialRequired1Count && _hasIt2Count >= MaterialRequired2Count) then { _hasEnough = true; }; _hasEnergy = false; if(EnergyRequired == 0 || EPOCH_playerEnergy - EnergyRequired >= 0) then { _hasEnergy = true; }; _CanPlace = false; _nearALP = nearestObjects [_unit,["Land_PortableLongRangeRadio_F"],5]; if(AllowLockPicksNear || (count _nearALP == 0 && !AllowLockPicksNear)) then { _CanPlace = true; }; _target = cursorTarget; _LockPickable = false; if ((typeOf cursorTarget) in LockPickableItems) then { _LockPickable = true; } else { if (_target isKindOf "LandVehicle" && LockpickLandVehicles) then { _LockPickable = true; }; if (_target isKindOf "Air" && LockpickAir) then { _LockPickable = true; }; if (_target isKindOf "Ship" && LockpickShip) then { _LockPickable = true; }; }; //hint format ["Target: %1 Lockpickable: %2 Locked: %3 Distance: %4",(typeOf cursorTarget),_LockPickable,locked cursorTarget,_unit distance cursorTarget]; _nearVehs = false; if (_LockPickable && _unit distance _target < 5 && (locked _target == 2 || locked _target == -1) ) then { _nearVehs = true; }; _return = (_hasEnough && _nearVehs && alive _unit && SafeToALP && _hasEnergy && _CanPlace); _return }; AutoLockPicker_Activate = { _array = _this select 3; _unit = _array select 0; _lockpicks = _unit getVariable ["lockpicks",[]]; { if(alive _x && SafeToALP) then { // Chance to unlock _chance = Ceil random 100; if(_chance <= SuccessChance) then{ // Unlock the door or vehicle _nearVehicle = (nearestObjects [_x,LockPickableItems,5]) select 0; deleteVehicle _x; ALPUNLOCK = [_nearVehicle]; uiSleep 3; publicVariableServer "ALPUNLOCK"; uiSleep 1; if ((typeOf _nearVehicle) in ["CinderWallGarage_EPOCH","WoodLargeWallDoorL_EPOCH","WoodLargeWallDoor_EPOCH"]) then { hint "The AutoLockPicker worked! Opening door"; _nearVehicle animate ['open_left', 1]; _nearVehicle animate ['open_right', 1]; _nearVehicle animate ['Open_Door', 1]; } else { hint "The AutoLockPicker worked! Unlocking Vehicle"; } } else { _chance2 = Ceil random 100; if(_chance2 <= ElectrocuteChance) then { // Chance of electrocution _DamagetoInflict = (Ceil random (MaximumDamage - MinimumDamage))/100; _damage = Damage player; _damage = _damage + (MinimumDamage/100) + _DamagetoInflict; playSound "shocker"; if(_damage > 1 && InflictDamage) then { hint "The AutoLockPicker malfunctioned and electrocuted you"; // Activate ppEffects "chromAberration" ppEffectEnable true; "radialBlur" ppEffectEnable true; enableCamShake true; // 5secs of effects for "_i" from 0 to 4 do { "chromAberration" ppEffectAdjust [random 0.25,random 0.25,true]; "chromAberration" ppEffectCommit 1; "radialBlur" ppEffectAdjust [random 0.02,random 0.02,0.15,0.15]; "radialBlur" ppEffectCommit 1; addcamShake[random 3, 1, random 3]; uiSleep 1; }; //Stop effects "chromAberration" ppEffectAdjust [0,0,true]; "chromAberration" ppEffectCommit 5; "radialBlur" ppEffectAdjust [0,0,0,0]; "radialBlur" ppEffectCommit 5; uiSleep 6; //Deactivate ppEffects "chromAberration" ppEffectEnable false; "radialBlur" ppEffectEnable false; resetCamShake; player setDamage 1; } else { hint "The AutoLockPicker malfunctioned and gave you an electric shock"; if(InflictDamage) then { player setDamage _damage; }; player playMove "amovpknlmstpsraswrfldnon"; // Activate ppEffects "chromAberration" ppEffectEnable true; "radialBlur" ppEffectEnable true; enableCamShake true; uiSleep 1; // Stop the player from moving while shocked player enablesimulation false; // StunTime seconds of effects for "_i" from 0 to StunTime do { "chromAberration" ppEffectAdjust [random 0.25,random 0.25,true]; "chromAberration" ppEffectCommit 1; "radialBlur" ppEffectAdjust [random 0.02,random 0.02,0.15,0.15]; "radialBlur" ppEffectCommit 1; addcamShake[random 3, 1, random 3]; uiSleep 1; }; player enablesimulation true; //Stop effects "chromAberration" ppEffectAdjust [0,0,true]; "chromAberration" ppEffectCommit 5; "radialBlur" ppEffectAdjust [0,0,0,0]; "radialBlur" ppEffectCommit 5; uiSleep 6; //Deactivate ppEffects "chromAberration" ppEffectEnable false; "radialBlur" ppEffectEnable false; resetCamShake; }; deleteVehicle _x; } else { hint "The AutoLockPicker failed to unlock the door, try again"; deleteVehicle _x; } }; }; } forEach _lockpicks; _unit setVariable ["lockpicks",[]]; }; AutoLockPicker_UnitCheck = { private "_return"; _unit = _this select 0; _lockpicks = _unit getVariable ["lockpicks",[]]; if(count _lockpicks > 0) then { _return = true; } else { _return = false; }; _return }; AutoLockPicker_AttachALP = { _array = _this select 3; _charge = _array select 0; _unit = _array select 1; private "_class"; _unit removeMagazine MaterialRequired1; _unit removeMagazine MaterialRequired2; EPOCH_playerEnergy = EPOCH_playerEnergy - EnergyRequired; _unit playMove "AinvPercMstpSnonWnonDnon_Putdown_AmovPercMstpSnonWnonDnon"; switch _charge do { case "Land_PortableLongRangeRadio_F": { _class = "Land_PortableLongRangeRadio_F"; }; }; _nearVehicle = (nearestObjects [_unit,LockPickableItems,5]) select 0; _autolockpick = _class createVehicle [0,0,0]; _autolockpick attachTo [_unit,[0,0,0],"leftHand"]; _random0 = random 180; _random1 = random 180; [_autolockpick,_random0,_random1] call BIS_fnc_SetPitchBank; [_autolockpick,_nearVehicle,_unit,_random0,_random1] spawn { _autolockpick = _this select 0; _nearVehicle = _this select 1; _unit = _this select 2; _random0 = _this select 3; _random1 = _this select 4; uiSleep 1.5; _autolockpick attachTo [_nearVehicle, [0,0,0.2]]; [_autolockpick,_random0,_random1] call BIS_fnc_SetPitchBank; _unit setVariable ["lockpicks",(_unit getVariable ["lockpicks",[]]) + [_autolockpick]]; }; }; AutoLockPicker_Actions = { private ["_unit"]; _unit = _this select 0; _unit addAction ["<t color=""#0099FF"">" +"Attach AutoLockPicker", AutoLockPicker_AttachALP, ["Land_PortableLongRangeRadio_F",_unit], 1, true, true, "","[MaterialRequired1,MaterialRequired2,_target] call AutoLockPicker_MatsCheck"]; _unit addAction ["<t color=""#3D993D"">" +"Activate AutoLockPicker", AutoLockPicker_Activate, [_unit], 1, true, true, "","[_target] call AutoLockPicker_UnitCheck"]; }; //removeAllActions player; //======================= [player] call AutoLockPicker_Actions; ah perfect! this is my favorite script at the moment good work! Link to comment Share on other sites More sharing options...
second_coming Posted April 16, 2015 Author Report Share Posted April 16, 2015 Just realised it only removes 1 of each, use this instead :)/* AutoLockPicker by second_coming (http://epochmod.com/forum/index.php?/user/16619-second-coming/) with help from SpiRe Allow players to have a chance to lock pick any vehicle or locked door (also a chance to eloctrocute on failed unlocking!) Initial Script Code: Stealthstick's "Explosive-To-Vehicle" Script Electrocution effect: http://www.altisliferpg.com/topic/224-effects-on-marijuana-use/ v1.2 Swapped to cursortarget instead of the nearest item to get around putting the AutoLockPicker onto the wrong item Added variables for the materials required Added EnergyRequired Added AllowLockPicksNear to stop multiple locks being placed together */ // ====================================================================================================================================================================================== // User configurable Variables // ====================================================================================================================================================================================== // Which locks can be opened LockpickLandVehicles = true; // All land vehicles (cars, vans, trucks etc) ::: acceptable values true or false LockpickAir = true; // Helis and jets ::: acceptable values true or false LockpickShip = true; // Boats, jetskis and submarines ::: acceptable values true or false LockpickEpochDoors = true; // Epoch build-able doors ::: acceptable values true or false // Chance to succeed or be electrocuted SuccessChance = 20; // (Between 1-100) % Chance to successfully pick the lock ElectrocuteChance = 10; // (Between 1-100) % Chance of electrocution on if the lock pick fails // Damage Settings InflictDamage = true; // If true damage is added, if false just stun MinimumDamage = 50; // (Between 1-100) min% of full health Damage to inflict must be less than MaximumDamage MaximumDamage = 90; // (Between 1-100) max% of full health Damage to inflict must be more than MinimumDamage StunTime = 15; // Time in seconds to stun the player on electrocution (if it doesn't kill them) // Materials Required to Create AutoLockPicker EnergyRequired = 100; // Amount of energy expended operating AutoLockPicker (0 for zero energy required) MaterialRequired1 = 'CircuitParts'; // First material required to create AutoLockPicker (default is 'CircuitParts' or Electronic Component) MaterialRequired1Count = 1; MaterialRequired2 = 'ItemCorrugated'; // Second material required to create AutoLockPicker (default is 'ItemCorrugated' or small metal parts) MaterialRequired2Count = 1; // Usage Restrictions AllowInSafeZone = false; // (Leave true if you don't use inSafezone) Allow use of AutoLockPicker in safezones // (using the boolean variable inSafezone set here http://epochmod.com/forum/index.php?/topic/32555-extended-safezone-script-working/) _MinimumPlayers = 0; // Number of players required online before the option to lock pick becomes available (set to 0 to always allow) AllowLockPicksNear = false; // (Leave true for no restriction) selecting false will make the script check if one has been placed within 5m of the player // ====================================================================================================================================================================================== // End of User configurable Variables // ====================================================================================================================================================================================== if(AllowInSafeZone && count playableUnits >= _MinimumPlayers) then { SafeToALP = true; } else { if(!inSafezone && count playableUnits >= _MinimumPlayers) then { SafeToALP = true; } else { SafeToALP = false; }; }; LockPickableItems = []; if(LockpickLandVehicles) then { LockPickableItems = LockPickableItems + ["LandVehicle"]; }; if(LockpickAir) then { LockPickableItems = LockPickableItems + ["Air"]; }; if(LockpickShip) then { LockPickableItems = LockPickableItems + ["Ship"]; }; if(LockpickEpochDoors) then { LockPickableItems = LockPickableItems + ["CinderWallGarage_EPOCH","WoodLargeWallDoorL_EPOCH","WoodLargeWallDoor_EPOCH"]; }; AutoLockPicker_MatsCheck = { _charge1 = _this select 0; _charge2 = _this select 1; _unit = _this select 2; _hasIt1 = _charge1 in (magazines _unit); _hasIt1Count = {_x == _charge1} count magazines player; _hasIt2 = _charge2 in (magazines _unit); _hasIt2Count = {_x == _charge2} count magazines player; _hasEnough = false; if(_hasIt1Count >= MaterialRequired1Count && _hasIt2Count >= MaterialRequired2Count) then { _hasEnough = true; }; _hasEnergy = false; if(EnergyRequired == 0 || EPOCH_playerEnergy - EnergyRequired >= 0) then { _hasEnergy = true; }; _CanPlace = false; _nearALP = nearestObjects [_unit,["Land_PortableLongRangeRadio_F"],5]; if(AllowLockPicksNear || (count _nearALP == 0 && !AllowLockPicksNear)) then { _CanPlace = true; }; _target = cursorTarget; _LockPickable = false; if ((typeOf cursorTarget) in LockPickableItems) then { _LockPickable = true; } else { if (_target isKindOf "LandVehicle" && LockpickLandVehicles) then { _LockPickable = true; }; if (_target isKindOf "Air" && LockpickAir) then { _LockPickable = true; }; if (_target isKindOf "Ship" && LockpickShip) then { _LockPickable = true; }; }; //hint format ["Target: %1 Lockpickable: %2 Locked: %3 Distance: %4",(typeOf cursorTarget),_LockPickable,locked cursorTarget,_unit distance cursorTarget]; _nearVehs = false; if (_LockPickable && _unit distance _target < 5 && (locked _target == 2 || locked _target == -1) ) then { _nearVehs = true; }; _return = (_hasEnough && _nearVehs && alive _unit && SafeToALP && _hasEnergy && _CanPlace); _return }; AutoLockPicker_Activate = { _array = _this select 3; _unit = _array select 0; _lockpicks = _unit getVariable ["lockpicks",[]]; { if(alive _x && SafeToALP) then { // Chance to unlock _chance = Ceil random 100; if(_chance <= SuccessChance) then{ // Unlock the door or vehicle _nearVehicle = (nearestObjects [_x,LockPickableItems,5]) select 0; deleteVehicle _x; ALPUNLOCK = [_nearVehicle]; uiSleep 3; publicVariableServer "ALPUNLOCK"; uiSleep 1; if ((typeOf _nearVehicle) in ["CinderWallGarage_EPOCH","WoodLargeWallDoorL_EPOCH","WoodLargeWallDoor_EPOCH"]) then { hint "The AutoLockPicker worked! Opening door"; _nearVehicle animate ['open_left', 1]; _nearVehicle animate ['open_right', 1]; _nearVehicle animate ['Open_Door', 1]; } else { hint "The AutoLockPicker worked! Unlocking Vehicle"; } } else { _chance2 = Ceil random 100; if(_chance2 <= ElectrocuteChance) then { // Chance of electrocution _DamagetoInflict = (Ceil random (MaximumDamage - MinimumDamage))/100; _damage = Damage player; _damage = _damage + (MinimumDamage/100) + _DamagetoInflict; playSound "shocker"; if(_damage > 1 && InflictDamage) then { hint "The AutoLockPicker malfunctioned and electrocuted you"; // Activate ppEffects "chromAberration" ppEffectEnable true; "radialBlur" ppEffectEnable true; enableCamShake true; // 5secs of effects for "_i" from 0 to 4 do { "chromAberration" ppEffectAdjust [random 0.25,random 0.25,true]; "chromAberration" ppEffectCommit 1; "radialBlur" ppEffectAdjust [random 0.02,random 0.02,0.15,0.15]; "radialBlur" ppEffectCommit 1; addcamShake[random 3, 1, random 3]; uiSleep 1; }; //Stop effects "chromAberration" ppEffectAdjust [0,0,true]; "chromAberration" ppEffectCommit 5; "radialBlur" ppEffectAdjust [0,0,0,0]; "radialBlur" ppEffectCommit 5; uiSleep 6; //Deactivate ppEffects "chromAberration" ppEffectEnable false; "radialBlur" ppEffectEnable false; resetCamShake; player setDamage 1; } else { hint "The AutoLockPicker malfunctioned and gave you an electric shock"; if(InflictDamage) then { player setDamage _damage; }; player playMove "amovpknlmstpsraswrfldnon"; // Activate ppEffects "chromAberration" ppEffectEnable true; "radialBlur" ppEffectEnable true; enableCamShake true; uiSleep 1; // Stop the player from moving while shocked player enablesimulation false; // StunTime seconds of effects for "_i" from 0 to StunTime do { "chromAberration" ppEffectAdjust [random 0.25,random 0.25,true]; "chromAberration" ppEffectCommit 1; "radialBlur" ppEffectAdjust [random 0.02,random 0.02,0.15,0.15]; "radialBlur" ppEffectCommit 1; addcamShake[random 3, 1, random 3]; uiSleep 1; }; player enablesimulation true; //Stop effects "chromAberration" ppEffectAdjust [0,0,true]; "chromAberration" ppEffectCommit 5; "radialBlur" ppEffectAdjust [0,0,0,0]; "radialBlur" ppEffectCommit 5; uiSleep 6; //Deactivate ppEffects "chromAberration" ppEffectEnable false; "radialBlur" ppEffectEnable false; resetCamShake; }; deleteVehicle _x; } else { hint "The AutoLockPicker failed to unlock the door, try again"; deleteVehicle _x; } }; }; } forEach _lockpicks; _unit setVariable ["lockpicks",[]]; }; AutoLockPicker_UnitCheck = { private "_return"; _unit = _this select 0; _lockpicks = _unit getVariable ["lockpicks",[]]; if(count _lockpicks > 0) then { _return = true; } else { _return = false; }; _return }; AutoLockPicker_AttachALP = { _array = _this select 3; _charge = _array select 0; _unit = _array select 1; private "_class"; _unit removemagazines [MaterialRequired1, MaterialRequired1Count]; _unit removemagazines [MaterialRequired2, MaterialRequired2Count]; EPOCH_playerEnergy = EPOCH_playerEnergy - EnergyRequired; _unit playMove "AinvPercMstpSnonWnonDnon_Putdown_AmovPercMstpSnonWnonDnon"; switch _charge do { case "Land_PortableLongRangeRadio_F": { _class = "Land_PortableLongRangeRadio_F"; }; }; _nearVehicle = (nearestObjects [_unit,LockPickableItems,5]) select 0; _autolockpick = _class createVehicle [0,0,0]; _autolockpick attachTo [_unit,[0,0,0],"leftHand"]; _random0 = random 180; _random1 = random 180; [_autolockpick,_random0,_random1] call BIS_fnc_SetPitchBank; [_autolockpick,_nearVehicle,_unit,_random0,_random1] spawn { _autolockpick = _this select 0; _nearVehicle = _this select 1; _unit = _this select 2; _random0 = _this select 3; _random1 = _this select 4; uiSleep 1.5; _autolockpick attachTo [_nearVehicle, [0,0,0.2]]; [_autolockpick,_random0,_random1] call BIS_fnc_SetPitchBank; _unit setVariable ["lockpicks",(_unit getVariable ["lockpicks",[]]) + [_autolockpick]]; }; }; AutoLockPicker_Actions = { private ["_unit"]; _unit = _this select 0; _unit addAction ["<t color=""#0099FF"">" +"Attach AutoLockPicker", AutoLockPicker_AttachALP, ["Land_PortableLongRangeRadio_F",_unit], 1, true, true, "","[MaterialRequired1,MaterialRequired2,_target] call AutoLockPicker_MatsCheck"]; _unit addAction ["<t color=""#3D993D"">" +"Activate AutoLockPicker", AutoLockPicker_Activate, [_unit], 1, true, true, "","[_target] call AutoLockPicker_UnitCheck"]; }; //removeAllActions player; //======================= [player] call AutoLockPicker_Actions; Link to comment Share on other sites More sharing options...
Ghostrider-GRG Posted April 17, 2015 Report Share Posted April 17, 2015 Neat idea second_coming. Have you tinkered with adding a bypass that allows admins access to the unlock functions ? I was going to tinker with that this weekend but thought I'd ask just in case you have already sorted it out. Link to comment Share on other sites More sharing options...
Tobias Solem Posted April 19, 2015 Report Share Posted April 19, 2015 Hah, switched to infiSTAR this weekend, and the players aren't getting the option to lockpick :S Seems to load, but the action doesn't appear on cars or doors with the items in inventory. Link to comment Share on other sites More sharing options...
second_coming Posted April 19, 2015 Author Report Share Posted April 19, 2015 check the options in your run.sqf for infoSTAR, it's probably removing the player addaction /* Check Actions Plr */ _CAP = false; /* true or false */ /* *experimental* - only logs to Surveillancelog so far */ /* Remove Actions Plr */ _OAP = false; /* true or false */ /* Remove ALL Actions on Player Object: (mousewheel actions) needs to be false for AltisLife for e.g. gathering */ /* Remove Actions Objs */ _OAO = false; /* true or false */ /* Remove ALL Actions on Objects near Player: (mousewheel actions) needs to be false when using e.g. IgiLoad */ Link to comment Share on other sites More sharing options...
Tobias Solem Posted April 20, 2015 Report Share Posted April 20, 2015 Yeah, those three are all false. And the ALP is loaded, even says so in the startup. :/ This shows up in the client RPT though: 23:51:21 Error in expression <_SuffBlur ppEffectCommit 8; sleep 8; BIS_SuffCC ppEffectEnable FALSE; BIS_Suf> 23:51:21 Error position: <BIS_SuffCC ppEffectEnable FALSE; BIS_Suf> 23:51:21 Error Undefined variable in expression: bis_suffcc 2 Link to comment Share on other sites More sharing options...
second_coming Posted April 20, 2015 Author Report Share Posted April 20, 2015 Yeah, those three are all false. And the ALP is loaded, even says so in the startup. :/ This shows up in the client RPT though: I think that is related to the headless client checking if he is suffocating or not. I can send you my run.sqf if you want to compare the setting? Link to comment Share on other sites More sharing options...
Tobias Solem Posted April 20, 2015 Report Share Posted April 20, 2015 Sure, PM meh. Link to comment Share on other sites More sharing options...
Friendly Posted April 21, 2015 Report Share Posted April 21, 2015 btw in your script restrictions !="player setDamage1;" Should be !="player setDamage 1;" Incase anyone get confused. Link to comment Share on other sites More sharing options...
second_coming Posted April 21, 2015 Author Report Share Posted April 21, 2015 btw in your script restrictions !="player setDamage1;" Should be !="player setDamage 1;" Incase anyone get confused. Cheers :) Updated the OP Link to comment Share on other sites More sharing options...
second_coming Posted April 21, 2015 Author Report Share Posted April 21, 2015 Neat idea second_coming. Have you tinkered with adding a bypass that allows admins access to the unlock functions ? I was going to tinker with that this weekend but thought I'd ask just in case you have already sorted it out.As I think people are having issues getting this to work with the standard AH there isn't much point adding in an admin function. You can already do it with infiSTAR by targeting the door or vehicle and just pressing the 7 key. Link to comment Share on other sites More sharing options...
Tobias Solem Posted April 21, 2015 Report Share Posted April 21, 2015 Any plans on separating the success chances depending on ie. if it's a car, chopper or door? I think lockpicks should have higher success rates on cars for example. Link to comment Share on other sites More sharing options...