Diddl3s

Member
  • Content count

    140
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

Community Reputation

13 Neutral

About Diddl3s

  • Rank
    Capo

Recent Profile Visitors

1584 profile views
  1. Love this script, thank you very much for the release Do you know how it would be possible to add different colors to the listed items depending on their damage percent ? I have made multiple attempts with the 'replace engine' section but could not get a different color to show in the in-game menu. if(_x == "hitEngine") then { _damage = _vehicle getHitPointDamage _x; if (_damage == 1) then { _engineReplaceList pushback _x; } else { if (_damage > .49 && _damage < 1) then { _engineRepairList pushback _x; } else { _engineSalvageList pushback _x; }; }; }; For the if (_damage == 1) I wanted to make the text Red show as red for "Replace Engine" Thanks for any help!
  2. Diddl3s

    Is it possible to open Hangar doors on server start?

    Still looking for a way to work around this if anyone knows how The "Automated Doors A3" seems like it is adding way to much for me to want to use it. I simply want the Hangar Doors open when the server first starts. Any help is much appreciated.
  3. Diddl3s

    ExileMod Advanced Repair Script

    Hey, is it possible to incorporate colors into the menu depending on the damage level of an item? Such as it was in DayZ Mod. ASL_Show_Repair_Options_Menu_Array = [ ["Repair Menu",false], ["Repair Body",[0],"",-5,[["expression","['repairCarHull'] Call salvage_setup"]],"1","1"], ["Repair Wheel",[0],"",-5,[["expression","['repairWheel'] Call salvage_setup"]],"1","1"], ["Repair Engine",[0],"",-5,[["expression","['repairCarEngine'] Call salvage_setup"]],"1","1"], ["Repair Fuel Tank",[0],"",-5,[["expression","['repairCarFuel'] Call salvage_setup"]],"1","1"], ["Repair Glass",[0],"",-5,[["expression","['repairCarGlass'] Call salvage_setup"]],"1","1"], ["Salvage Wheel",[0],"",-5,[["expression","['salvageWheel'] Call salvage_setup"]],"1","1"], ["Salvage Fuel Tank",[0],"",-5,[["expression","['salvageCarFuel'] Call salvage_setup"]],"1","1"], ["Salvage Engine",[0],"",-5,[["expression","['salvageCarEngine'] Call salvage_setup"]],"1","1"] ]; showCommandingMenu ""; showCommandingMenu "#USER:ASL_Show_Repair_Options_Menu_Array"; salvage_setup = { _vehicle = cursorObject; _action = _this select 0; [_action,_vehicle] execVM 'Custom\advancedRepair\Bones_fnc_salvageAndRepair.sqf'; }; add something like this to it ? if (_damage > 0) then { _color = switch true do { case (_damage <= 0.25): {"color='#00ff00'"}; //green case (_damage <= 0.50): {"color='#ffff00'"}; //yellow case (_damage <= 0.75): {"color='#ff8800'"}; //orange default {"color='#ff0000'"}; //red };
  4. Diddl3s

    Chance for loot to spawn

    @Kurewe Thank you very much, works perfectly for what I was hoping to achieve You folks are all so helpful, much appreciated !!
  5. Diddl3s

    Chance for loot to spawn

    Did you ever get this working as intended? I would like to reduce the % chance of buildings spawning loot but seeing as spawnChancePerBuilding is not available I'm at a loss as to how it can be done. Any help is appreciated.
  6. Hi, Since the CUP update yesterday all Land_Ss_hangar doors are closed on server start. Is there a script that can be run in order to open all of the Land_Ss_hangar doors when the server is started? Thanks for any help
  7. Thanks for the code @aussie battler , worked great for me Really appreciate your help with it ! Do you know if it's possible to incorporate a % chance for a rare item in the box you created ? A random rare item from a list. I wanted to limit the chance of weapons at the crash site if possible.
  8. Thanks for the help and point in the right direction Would I need to call the ExileZ_Mod zombie spawner (SpawnZombie.sqf) here instead of the DMS Ai (DMS_fnc_SpawnAISoldier) ? Thank you for this I will check it out as soon as possible and report back !
  9. Diddl3s

    Loot Search Exile

    This works perfectly for what I wanted to achieve to be honest !! Thank you for the information regarding the condition Do you know if I can remove action the 'Pump Water' that comes up on scroll wheel when at a pump ?
  10. Diddl3s

    Loot Search Exile

    Thanks for the reply I thought it might be possible to have something like: iF Empty Canteen in inventory = run script else iF Empty Bottle in inventory = run script
  11. Diddl3s

    Loot Search Exile

    I have butchered LordRampantHumps Apple Picking script in order to come up with a simple'ish script for filling water at pumps via scroll wheel and playing a sound. I'm sure it contains some unnecessary bits and also lacks some more but could anyone offer some help in order to differentiate the canteen from the plastic bottle? As it stands, the script does the following: - Must have an Empty Plastic Bottle and also an Empty Canteen in your inventory - Menu comes up to 'Fill Water Bottle' at pumps - Empty Plastic Bottle is removed / Empty Canteen is removed - Plastic Bottle (Dirty Water) is added / Canteen (Dirty Water) is added Ideally, it would check if you have a plastic bottle or canteen in inventory and fill one of them separately. Any help is much appreciated
  12. Diddl3s

    Loot Search Exile

    Thanks for sharing this Is it possible to add Exitem_canteen to the water scavenge too so that it would be possible to fill either a canteen or plastic bottle at the source and return the respective item with dirty water?
  13. Thanks for the help and point in the right direction Would I need to call the ExileZ_Mod zombie spawner (SpawnZombie.sqf) here instead of the DMS Ai (DMS_fnc_SpawnAISoldier) ? @Kuplion Thanks for the link, it's a great script that I have tried out and the zombies spawn perfectly. I just much prefer the way the loot spawns from the Occupation script though.
  14. Diddl3s

    Items Pack for Arma 3

    Opening pandoras box..... Some more trash loot would be great.. * Empty drinks can * Empty whiskey bottle * Razor * Rotten fruit * Sandbags / E Tool / Stash * Improvised fishing net * Silencer picture for the crafting menu? Silencers dont show.. Edit: But seriously buddy, love the addon. Keep up the great work.
  15. Diddl3s

    Items Pack for Arma 3

    I really like this addon too, keep up the good work @LordRampantHump Would love to see more additions to it