Jump to content

Kanas Kanas

Member
  • Content Count

    21
  • Joined

  • Last visited

  • Medals

Community Reputation

2 Neutral

About Kanas Kanas

  • Rank
    Private First Class

Recent Profile Visitors

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

  1. It can be changed in the file named (InputUserSettings). This is how I set up the mouse wheel for scrolling through the inventory. Action Inventory_PrevPage { InputSource InputSourceSum "{5DF76AF925E2DA0B}" { Sources { InputSourceValue "{5DF76AF925E2C52B}" { FilterPreset "up" Input "mouse:wheel+" } } } } Action Inventory_NextPage { InputSource InputSourceSum "{5DF76AF927520BD0}" { Sources { InputSourceValue "{5DF76AF927520AF8}" { FilterPreset "down" Input "mouse:wheel-" } } } }
  2. Kanas Kanas

    How can i use my asset list on Warlords?

    https://community.bistudio.com/wiki/Arma_3:_MP_Warlords
  3. It might help. params ["_sector" , "_side", "_oldSide"]; _scoreReward = ((_this select 0) getvariable ["ScoreReward",0]) call bis_fnc_parsenumber; [(_this select 1), _scoreReward] call BIS_fnc_respawnTickets; [(_this select 2), - (_scoreReward)] call BIS_fnc_respawnTickets;
  4. Kanas Kanas

    [SOLVED] Warlords mission SAVE/LOAD

    https://steamcommunity.com/sharedfiles/filedetails/?id=2899185153&searchtext=Warlords+Save+%26+Load
  5. Kanas Kanas

    WARLORDS CP deduction/addition

    Adds 100 points to the player. player setVariable ["BIS_WL_funds", (player getVariable "BIS_WL_funds") + 100, TRUE];
  6. Kanas Kanas

    [SOLVED] Warlords mission SAVE/LOAD

    I'm sorry, this can't be fixed. You must play the same unit as before saving. Function is enabled in description.EXT (joinUnassigned = 0); , so that when entering the hall, the last unit is automatically selected.
  7. Kanas Kanas

    [SOLVED] Warlords mission SAVE/LOAD

    I updated the mission at the steam workshop. Everything should work.
  8. Kanas Kanas

    [SOLVED] Warlords mission SAVE/LOAD

    I fixed the LoadGame.sqf script. Repeated messages are deleted.
  9. Kanas Kanas

    [SOLVED] Warlords mission SAVE/LOAD

    https://steamcommunity.com/sharedfiles/filedetails/?id=2556290485&searchtext=
  10. Kanas Kanas

    [SOLVED] Warlords mission SAVE/LOAD

    I'm going to do a vanilla mission at a steam workshop. You can then copy.
  11. Kanas Kanas

    Warlords

    //Save player CP _list = []; {player getVariable "BIS_WL_funds"]} forEach save_funds; profileNamespace setVariable ["save_funds",_list]; saveProfileNamespace; //Load player CP {_x params ["_funds"]; player setVariable ["BIS_WL_funds",_funds, TRUE]; } forEach (profileNamespace getVariable ["save_funds",[]]);
  12. Kanas Kanas

    Warlords

    The Blacklist (WLAIRequisitonBlacklist) function is for drives only. It would be good to use it on vehicles. UAV vehicles make problems with AI.
  13. Kanas Kanas

    Warlords

    Hi, when playing in LAN mode, after a certain time, some playable units will not be restored after death. Only a low (respawn Delay = 1;) setting is preceded by this problem.
  14. Kanas Kanas

    Warlords

    Maybe you can help set the sector size to negative values. [- 200]
×