GetMTAVersion: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (Visual improvement)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
{{Deprecated}}
{{DeprecatedWithAlt|getVersion|}}
 
Please use [[getVersion]]


This function returns a string which tell you which MTA version player uses. From DP2.1 onwards.
This function returns a string which tell you which MTA version player uses. From DP2.1 onwards.

Revision as of 14:24, 25 June 2014

Template:DeprecatedWithAlt

This function returns a string which tell you which MTA version player uses. From DP2.1 onwards.

Syntax

string getMTAVersion( )

Required Arguments

None

Returns

A string - currently: "1.0 dp2.1"

Example

Click to collapse [-]
Client
function checkVersion( )
    if getMTAVersion( ) ~= "1.0 dp2.1" then
        outputChatBox( "Download the latest MTA:SA DM and come back!" )
    end
end
addEventHandler( "onClientResourceStart", getResourceRootElement(getThisResource()), checkVersion )

See Also