/*******************************************************************************
							 --- TimeXleration ---
									  v1.0

	Author      : gammadust (GAM)

	Additional  : - BIS for the awesome sandbox 
	Credits		  - Whole community for the help given in learning ArmA
					scripting and making the ArmA experience even better

	Features    : Allows to accelerate the in-game time maintaining the rest of
				  the simulation acceleration intact

-----------------

	Installation: Copy files under "GAM_TimeXleration\addons" to an existing
	(as an addon) modfolder or copy the root folder itself to ArmA's path and
				  add the newly created modfolder (ie. -mod=GAM_TimeXleration)

	Usage		: Access the menu options by pressing "5" followed by "9"

		1 - Toggle TimeXleration *
	    2 - Acceleration (+20)
		3 - Acceleration (-20)
		4 - Update Rate + (doubles the rate)
		5 - Update Rate - (halves the rate)
		6 - Reset

	 * Defaults to 60 times normal acceleration, 1 minute gameplay = 1 in-game hour
	   at ~33,3 updates per second, this gives the best smoothness experience
	   there is no point in increasing this value since difference won't be noticed
	   lower values result in sudden repositioning of sun and clouds movement
	   but might be a useful if this script load interferes with other ones

	** includes signature keys

-----------------

	Installation: From "mission_scripts" folder, copy both "init.sqf" and
	(as mission)  "timexleration.sqf" scripts into your mission folder,
	   script	  alternatively, add the following line in your pre-existing
				  "init.sqf" in a suitable place
				  
		[] spawn compile preprocessFileLineNumbers "timexleration.sqf";
		
		Defaults to 60 times normal acceleration at ~33,3 updates per second
		
		Optionaly insert acceleration and updates per second values between
		the square brackets:
				  
		[60,100/3] spawn compile preprocessFileLineNumbers "timexleration.sqf";

*******************************************************************************/