fodev.net
FOnline Development => Questions and Answers => Topic started by: Nykaen on December 31, 2013, 02:39:08 am
-
Is there anything to do if I wanted to change ingame time cycle.
I was thinking of changing the whole time system to realtime. 1 second in real life = 1 second in game.
-
You can change time multiplier to 1 inside main@get_start_time; note that this function is called only when starting 'clean' world - without previous saves. Additionally, there's a ~settime function for manipulating time stuff runtime.
-
You can change time multiplier to 1 inside main@get_start_time; note that this function is called only when starting 'clean' world - without previous saves. Additionally, there's a ~settime function for manipulating time stuff runtime.
thank you, sir.
Edit: I had to edit battle timeouts aswell, seeing that modifying time multipliers affects also to battle timeouts aswell.
cr.TimeoutBase[TO_BATTLE] = 10;
And I guess I have to edit every timeouts also. **sigh**
-
...and THAT'S why you should switch to defines from _time.fos :)