Difference between revisions of "PassTime - Game"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Iceburg333
(Created page with "Category:Scripting Category:Papyrus '''Member of:''' Game Script Passes the specified number of hours as if the player used the wait menu. This runs full updates of ...")
(No difference)

Revision as of 15:26, 26 April 2013

Member of: Game Script

Passes the specified number of hours as if the player used the wait menu. This runs full updates of AI so if the number of hours is large enough, this can produce a noticeable hitch best hidden insed of a menu.

Syntax

Function PassTime(int aiHours) native global

Parameters

  • aiHours: The number of hours to pass

Return Value

None

Examples

;make player wait until midnight
int iwait = 24 - GameHour;
PassTime( iwait );

See Also