Leebleh

Member
  • Content count

    3
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

Community Reputation

0 Neutral

About Leebleh

  • Rank
    Bambi

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Leebleh

    Temporary building

    -removed- way too buggy.
  2. Leebleh

    Adding Pop Tabs to DMS mission crates

    bit of a necro post but still here for anyone looking at this post in the future. DMS_Spawn_AI_With_Money is already built into DMS. fn_FillCrate.sqf: _moneyLootChance = 10; // (Maybe) Add money if(random 100 < _moneyLootChance) then { _money = round(random [500,1000,2500]); _crate setVariable ["ExileMoney",_money ,true]; }; I added this just under the "// (Maybe) Add rare loot" section.
  3. Leebleh

    [Updated] R3F Logistics Exile (with CUP)

    ExileServer_object_lock_network_hotwireLockRequest.sqf Line 52: _object enableRopeAttach true; _object setVariable ["R3F_LOG_disabled", false, true]; ExileServer_object_lock_network_lockToggle.sqf Line 66: [_sessionID,"lockResponse",["Unlocked!", true , netId _object , _objectPinCode, 0]] call ExileServer_system_network_send_to; _object enableRopeAttach true; _object setVariable ["R3F_LOG_disabled", false, true]; Line 92: [_sessionID,"lockResponse",["Locked!",true, netId _object, _objectPinCode, 2]] call ExileServer_system_network_send_to; _object enableRopeAttach false; _object setVariable ["R3F_LOG_disabled", true, true];