HoursToSeconds
From NWN Lexicon
Contents |
[edit] HoursToSeconds(int)
This function calculates the number of actual seconds in n game hour(s).
float HoursToSeconds( int nHours );
[edit] Parameters
nHours
The number of hours to turn into seconds.
[edit] 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).
[edit] Version
1.28
[edit] 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)); }
[edit] See Also
functions: |
author: Charles Feduke, editor: Jasperre, additional contributor(s): Lilac Soul