isWorldSpecialPropertyEnabled | Multi Theft Auto: Wiki Skip to content

isWorldSpecialPropertyEnabled

Client-side
Server-side
Shared

Pair: setWorldSpecialPropertyEnabled

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


Checks if a special world property (cheat) is enabled or not.

Syntax

isWorldSpecialPropertyEnabled ( )

Code Examples

server

This code allows you to enable/disable aircars world property using /toggleAirCars command.

function toggleAirCars()
setWorldSpecialPropertyEnabled( "aircars", not isWorldSpecialPropertyEnabled("aircars") )
end
addCommandHandler("toggleAirCars", toggleAirCars)

See Also

World Functions