IsWorldSpecialPropertyEnabled
From Multi Theft Auto: Wiki
Checks if a special world property (cheat) is enabled or not.
Syntax
bool isWorldSpecialPropertyEnabled ( string propname )
Required Arguments
- propname: the name of the property to retrieve. Possible values are:
- hovercars
- aircars
- extrabunny
- extrajump
Returns
Returns true if the property is enabled, false if it is disabled or the specified property name is invalid.
Example
Click to collapse [-]
Clientside exampleThis example detects any cheaters using these cheats on your server and sends them to hell, or you could kick them if you trigger a server event which does that.
function clientCheatScan() glp = getLocalPlayer() if isWorldSpecialPropertyEnabled("aircars") then clientCheat() end if isWorldSpecialPropertyEnabled("hovercars") then clientCheat() end if isWorldSpecialPropertyEnabled("extrabunny") then clientCheat() end if isWorldSpecialPropertyEnabled("extrajump") then clientCheat() end end setTimer(clientCheatScan, 15000, 0) function clientCheat() -- This function will send them to hell. fadeCamera(false, 1, 255, 0, 0) x,y,z = getElementPosition(glp) createExplosion(x,y,z, 1) toggleAllControls(false, true, true) createMarker(x,y,z, "cylinder", 1, 1, 1, 1) setTimer(clientCheat, 200, 1) outputChatBox("WELCOME TO CHEATERS HELL LMAO!") end
See Also
- areTrafficLightsLocked
- getAircraftMaxHeight
- getCloudsEnabled
- getGameSpeed
- getGravity
- getGroundPosition
- getHeatHaze
- getJetpackMaxHeight
- getScreenFromWorldPosition
- getTime
- getTrafficLightState
- getWeather
- getWindVelocity
- getWorldFromScreenPosition
- getZoneName
- isLineOfSightClear
- processLineOfSight
- resetHeatHaze
- resetSkyGradient
- resetWindVelocity
- setAircraftMaxHeight
- setCloudsEnabled
- setGameSpeed
- setGravity
- setHeatHaze
- setSkyGradient
- setTime
- setTrafficLightState
- setTrafficLightsLocked
- setWeather
- setWeatherBlended
- setWindVelocity
- testLineAgainstWater
- getGarageBoundingBox
- getGaragePosition
- getGarageSize
- getMinuteDuration
- getPlayerBlurLevel
- isGarageOpen
- isWorldSpecialPropertyEnabled
- setCloudsEnabled
- setGarageOpen
- setJetpackMaxHeight
- setMinuteDuration
- setPlayerBlurLevel
- setWorldSpecialPropertyEnabled
- setAmbientSoundEnabled
- isAmbientSoundEnabled
- resetAmbientSounds
- setWorldSoundEnabled
- isWorldSoundEnabled
- resetWorldSounds
- setInteriorSoundsEnabled
- getInteriorSoundsEnabled
- setRainLevel
- getRainLevel
- resetRainLevel
- setSunSize
- getSunSize
- resetSunSize
- setSunColor
- getSunColor
- resetSunColor
- setFarClipDistance
- getFarClipDistance
- resetFarClipDistance
- setFogDistance
- getFogDistance
- resetFogDistance
- createSWATRope
- removeWorldModel
- restoreWorldModel
- restoreAllWorldModels
- setOcclusionsEnabled
- getOcclusionsEnabled
- setBirdsEnabled
- getBirdsEnabled
FROM VERSION 1.3.1 r5000 ONWARDS
FROM VERSION 1.3.1 r5063 ONWARDS