World::time.hour: Difference between revisions
CocaColaBear (talk | contribs) (CHAUMONT Emas) |
|||
| (7 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
{{ | __NOTOC__ | ||
This property gets/sets the hour in the game. | |||
==Getter== | |||
* '''<span style="color:green;">Number</span><span style="color:blue;"> (0 - 23)</span>''' | |||
==Setter== | |||
* '''<span style="color:green;">Number</span><span style="color:blue;"> (0 - 23)</span>''' | |||
==Example== | |||
<syntaxhighlight lang="javascript"> | |||
var hour = mp.world.time.hour; // GETTER | |||
mp.world.time.hour = 4; // SETTER | |||
</syntaxhighlight> | |||
==See Also== | |||
{{World_definition}} | |||
Latest revision as of 16:02, 29 January 2018
This property gets/sets the hour in the game.
Getter
- Number (0 - 23)
Setter
- Number (0 - 23)
Example
var hour = mp.world.time.hour; // GETTER
mp.world.time.hour = 4; // SETTER