Epoch/Sources/epoch_config/Configs/CfgMasterLoop.hpp
He-Man 096f03e7b9 AutoRun
- Default Key is "W"
- You can change the key in EPOCH ESC Menu
- If choosen key is same as "moveforward" (default), you have to 2x tap
it, else you only have to 1x tap it
- If your legs are broken, you get a hint "can not autorun - legs are
broken"
- If the terrain is too steep, you only walk in AutoRun
- Inside Water, you can not Autorun
2018-01-18 21:40:18 +01:00

63 lines
1.4 KiB
C++

/*[[[cog from arma_config_tools import *; json_to_arma()]]]*/
/*
@author = "Aaron Clark - https://EpochMod.com";
@contributors[] = {};
@description = "Master loop is a simple config based event scheduler that handles all time based player related tasks.";
@licence = "Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike";
@github = "https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_config/Configs/CfgMasterLoop.hpp";
*/
class CfgMasterLoop
{
class Init
{
file = "epoch_code\compile\setup\masterLoop\init.sqf";
};
class Events
{
condition = "alive player";
file = "epoch_code\compile\setup\masterLoop";
class Event0
{
delay = 0.4;
};
class Event1
{
delay = 1;
};
class Event2
{
delay = 10;
};
class Event3
{
delay = 15;
};
class Event4
{
delay = 30;
};
class Event5
{
delay = 60;
};
class Event6
{
delay = 300;
};
class Event7
{
delay = 600;
};
class Event8
{
delay = 5; //used for FavBar, adjust as required
};
class Event9
{
delay = 2; //used for geiger counter UI
};
};
};
/*[[[end]]]*/