Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More feature requests #5

Open
Slowrider8 opened this issue Jul 26, 2016 · 2 comments
Open

More feature requests #5

Slowrider8 opened this issue Jul 26, 2016 · 2 comments

Comments

@Slowrider8
Copy link

Seems like a good mod, but I have a couple of problems with it right now.

  1. It would be much better if rappelling required the unit to be carrying some sort of rope item in their inventory. Ideally, this would stop every unit being able to climb down the side of a building when it is unlikely for them to be carrying a rope or be at a pre-placed rappel position. An example of this being abused can be shown through a few of the missions I play with my groups. Occasionally we have civilians or enemy players as hostages in a mission and have them on a rooftop. With this mod enabled and without anything stopping a player from using it, the players could run off at any point when we weren't looking at them and start rappelling down the building, without us being able to see them.
    I understand that adding a rope item to the game would coincide with a major part of the mod; the fact that it can be run serverside without players having to run it, as well as requiring any AI to also need to carry rope items. However, maybe this could be considered for a separate, more "realistic" version of the mod.
  2. There is currently no stamina loss when using a rope. This may make more sense when you are rappelling down (though I would imagine it still would be somewhat straining to hold yourself in place) but definitely needs to be considered when climbing up the rope.
  3. Right now the mod seems to struggle with some certain keybinds. For example, I have my sprint bound to W+S so that I can slide my finger down from W to start sprinting. However, the mod doesn't seem to support this and I, therefore, cannot push off from the side of a building without changing my binds. Maybe integration with CBA keybinding would help?
@LckyLgs
Copy link

LckyLgs commented Jul 28, 2016

+1 for point 3, as I also use the W+S keybind for sprint.

@syn7ax
Copy link

syn7ax commented Apr 17, 2017

i found this comment by Duda on the EXILEmod.com forum

Here's an easier way to make the rope required. Add this code to your init.sqf file. Don't need to unpack/modify the addon.

[] spawn {
waitUntil {!isNil "AR_Rappel_From_Heli_Action_Check"};
AR_Rappel_From_Heli_Action_Check = {
params ["_player","_vehicle"];
if!([_vehicle] call AR_Is_Supported_Vehicle) exitWith {false};
if(((getPos _vehicle) select 2) < 5 ) exitWith {false};
if(((getPos _vehicle) select 2) > 150 ) exitWith {false};
if(driver _vehicle == _player && isEngineOn _vehicle) exitWith {false};
if(speed _vehicle > 100) exitWith {false};
if!("Exile_Item_Rope" in magazines _player) exitWith {false};
true;
};
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants