Difference between revisions of "SetDelayElapsed"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Jazzisparis
(Created page with "{{Function |origin = JIP |summary = Sets the time remaining until the next iteration of the quest's script. |name = SetDelayElapsed |returnType = seconds:float |arguments...")
 
imported>Jazzisparis
Line 18: Line 18:
*A value of 0 will effectively force the script to re-process immediately on the next frame.
*A value of 0 will effectively force the script to re-process immediately on the next frame.
==See Also==
==See Also==
*[[GetDelayElapsed]]
[[Category:Functions_(JIP)]]
[[Category:Functions_(JIP)]]

Revision as of 12:32, 28 March 2015

< [[::Category:Functions|Category:Functions]]

A function added by the JIP NVSE Plugin.

Description

Sets the time remaining until the next iteration of the quest's script.

Syntax

[help]
(seconds:float) SetDelayElapsed quest:ref seconds:float

Example

SetDelayElapsed vCCExplorerBark 10

Notes

  • This will temporarily override the script's processing delay.
  • A value of 0 will effectively force the script to re-process immediately on the next frame.

See Also