HoursToSeconds(int)
This function calculates the number of actual seconds in n game hour(s).
float HoursToSeconds( int nHours );
Parameters
nHours
The number of hours to turn into seconds.
Description
Converts nHours into a number of seconds. The result will depend on how many minutes there are per hour, configured in the advanced properties of the module (default is 2 minutes per hour, so the default settings would return 120 seconds if nHours were 1).
Version
1.28
Example
// Delay a speakstring command for 1 hour (executed on the object that calls it) void main() { // Declare the variables string sHello = "Hello"; float fSeconds = HoursToSeconds(1); // Delay the speakstring DelayCommand(fSeconds, SpeakString(sHello)); }
See Also
functions: | GetTimeHour | GetTimeSecond | SetTime |
categories: | Time Functions |
author: Charles Feduke, editor: Jasperre, additional contributor(s): Lilac Soul