SetTimeFrozen: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(create page)
 
m (minor change)
(One intermediate revision by the same user not shown)
Line 7: Line 7:
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool setTimeFrozen( bool state)
bool setTimeFrozen ( bool state )
</syntaxhighlight>  
</syntaxhighlight>  


Line 19: Line 19:
This example let you freeze the time
This example let you freeze the time
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local setTimeFrozen(true)
local setTimeFrozen ( true )
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Client world functions}}
{{Client world functions}}

Revision as of 20:42, 16 August 2024

BETA: NEW FEATURE (BUILD: 1.6.0 r22676)

This function affecting the weather as well

Syntax

bool setTimeFrozen ( bool state )

Required arguments

  • state: if true it will freeze the time, false otherwise.

Returns

Always returns true.

Example

This example let you freeze the time

local setTimeFrozen ( true )

See Also