This mod provides the players with a system that allows them to initialises a Remain Over Night Time Skip themselves, no Zeus shenanigans needed.
It also supports "Interruptions", meaning the players RON attempt could be interrupted by an enemy patrol strolling by.
Its highly inspired by the RON scenes expierenced during the SOG:PF Campaign Missions.
Several Conditions are being checked when attempting to RON Inital Checks
- Initiator needs to be Squadlead
- It needs to be night time between sunset and sunrise. Further Checks
- All players need to be within a certain range to the Initiator
- Outside of Minimum Distance to nearby Enemies
- Outside of Minimum Distance to nearby Villages
- No player has been under fire (suppressed) for a certain amount of time
CBA_A3
ACE3
SOG:Prarie Fire
This mods needs to be loaded on both, the server and all clients.
- Instead of all players needing to be near the Initiator, they only need to be near their squadleader.
Integration of Blacklisted Areas. Bascially means that, if the player is within a certain area (Position & Range), they will not be accounted for the proximity check. (For example, at spawn/base )Implemented
- Predefined area's for RON Spots, meaning RON only possible at these locations
useful for homebase / respawn area or similar.
missionNamespace setVariable [
"ron_api_blacklist_playerDistance",
createHashMapFromArray [
// [markerName as String, radius of blacklist]
["ourHomebaseMarkerName", 500],
["ourRespawnAreaMarkerName", 1000]
],
true
];missionNamespace setVariable [
"ron_api_interruption_overwrite",
true, // boolean - true: force interruption - false: force no interuption
true
];missionNamespace setVariable [
"ron_api_block",
true, // type or value does not matter
true
];missionNamespace setVariable [
"ron_api_block",
nil, // nil'ing the var on every client will remove the block
true
];Target time for the Custom RON Mode
missionNamespace setVariable [
"ron_api_custom_targetTime",
6.5, // number - 0..24 - reference: https://community.bistudio.com/wiki/dayTime
true
];