GetMoonSize: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 2: Line 2:
{{Server client function}}
{{Server client function}}
{{New feature/item|3.0132|1.3.1|5063|
{{New feature/item|3.0132|1.3.1|5063|
This function returns the moon size. Using this function server-side will return the server-side value, not necessarily the same that is set client-side.
This function returns the moon size.
{{Note|The function will return ''false'' server-side if moon size has not been set before the function is called.}}
 
}}
}}



Latest revision as of 17:07, 20 May 2020

This function returns the moon size.

[[{{{image}}}|link=|]] Note: The function will return false server-side if moon size has not been set before the function is called.

Syntax

int getMoonSize ()

Returns

Returns a integer being the moon size that is currently set, depending on which side it is used.

Example

Click to collapse [-]
Server

This example will tell the moon size to everyone when the resource is started.

function handleResourceStart( )
    outputChatBox( string.format( "Server's moon size is set to %d", getMoonSize() ) )
end
addEventHandler( "onResourceStart", resourceRoot, handleResourceStart )

Requirements

Minimum server version 1.3.1-9.05063
Minimum client version 1.3.1-9.05063

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version server="1.3.1-9.05063" client="1.3.1-9.05063" />

See Also