skipTime: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (tidied up the notes) |
||
Line 31: | Line 31: | ||
<dl class="command_description"> | <dl class="command_description"> | ||
<!-- Note Section BEGIN --> | <!-- Note Section BEGIN --> | ||
<dd class="notedate"></dd> | |||
<dt class="note"></dt><dd class="note"> | |||
Here is a very useful function - great for giving a "campaign" feel to a running battle. Try this in your init.sqs file: | |||
while(true) do { | while(true) do { | ||
skiptime 0.00333 ~0.1 } | skiptime 0.00333 ~0.1 } | ||
This will make each day pass in around 12 minutes - great fun watching sunsets and the night sky! | This will make each day pass in around 12 minutes - great fun watching sunsets and the night sky!</dd> | ||
<dd class="notedate"></dd> | |||
<dt class="note"></dt><dd class="note">skipTime is not to be confused with [[accTime]].</dd> | |||
<dd class="notedate"></dd> | |||
<dt class="note"></dt><dd class="note">Here is a useful piece of code that will enable the mission to skip forward to any given time, irrespective of what time it happens to be in the mission: | |||
skipTime (_timeToSkipTo - [[daytime]] + 24 ) % 24 | skipTime (_timeToSkipTo - [[daytime]] + 24 ) % 24 | ||
See also: [[a % b]] | See also: [[a % b]]</dd> | ||
<dd class="notedate">Posted on Feb 25, 2007</dd> | <dd class="notedate">Posted on Feb 25, 2007</dd> |
Revision as of 03:07, 17 April 2007
Description
- Description:
- Skiptime duration is in hours. Daytime is adjusted, weather change is estimated, no changes are made in any units. The tide is also adjusted.
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
skipTime 5
Additional Information
- See also:
- See also needed
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Notes
- Here is a very useful function - great for giving a "campaign" feel to a running battle. Try this in your init.sqs file: while(true) do { skiptime 0.00333 ~0.1 } This will make each day pass in around 12 minutes - great fun watching sunsets and the night sky!
- skipTime is not to be confused with accTime.
- Here is a useful piece of code that will enable the mission to skip forward to any given time, irrespective of what time it happens to be in the mission: skipTime (_timeToSkipTo - daytime + 24 ) % 24 See also: a % b
- Posted on Feb 25, 2007
- Manny
- Note that time can also be skipped "backwards", ie. you can provide negative values and jump back in time.
- Posted on March 21, 2007
- granQ
- One second is roughly 0.00026.
- Ceeeb
- In ArmA, skipTime does not actually estimate weather changes beyond moving the clouds across the sky. Weather counters continue as if no time has passed.