All public logs

Combined display of all available logs of RAGE Multiplayer Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 04:23, 25 April 2024 Shr0x talk contribs created page Ui::setShowHudComponentsThisFrameBatch (Created page with "{{ClientsideJsFunction}} {{JSContainer| === Required Params === *'''show''' {{RageType|Boolean}} *'''components''' {{RageType|Number[]}} === Return Value === *'''void''' {{RageType|void}} ==Syntax== <pre> mp.game.hud.setShowHudComponentsThisFrameBatch(show, components); </pre> ==Example== {{ClientsideCode| <syntaxhighlight lang="javascript"> const hudComponents = { HUD_WANTED_STARS: 1, HUD_WEAPON_ICON: 2, HUD_CASH: 3, HUD_MP_CASH: 4 } //hide hud comp...")
  • 04:13, 25 April 2024 Shr0x talk contribs created page Controls::applyDisableControlActionBatch (Created page with "{{ClientsideJsFunction}} {{JSContainer| Applies disabled control given in https://wiki.rage.mp/index.php?title=Controls::setDisableControlActionBatch setDisableControlActionBatch === Return Value === *'''void''' {{RageType|void}} ==Syntax== <pre> mp.game.controls.applyDisableControlActionBatch(); </pre> ==Example== {{ClientsideCode| <syntaxhighlight lang="javascript"> const disablePlayerControls = [ 0, 30, 31, 21, 36, 22, 44, 38, 71, 72, 59, 60, 42, 43, 85, 8...")
  • 04:11, 25 April 2024 Shr0x talk contribs created page Controls::setDisableControlActionBatch (Created page with "{{ClientsideJsFunction}} {{JSContainer| === Required Params === *'''isMoveOrLookInputGroup''' {{RageType|Boolean}} *'''controls''' {{RageType|Number[]}} === Return Value === *'''void''' {{RageType|void}} ==Syntax== <pre> mp.game.controls.setDisableControlActionBatch(isMoveOrLookInputGroup, controls); </pre> ==Example== {{ClientsideCode| <syntaxhighlight lang="javascript"> const disablePlayerControls = [ 0, 30, 31, 21, 36, 22, 44, 38, 71, 72, 59, 60, 42, 43, 85, 8...")
  • 18:21, 23 April 2024 Shr0x talk contribs created page Vehicle::setLiveryTexture (Created page with "{{ClientsideJsFunction}} {{JSContainer| Set a custom texture livery to the given vehicle. === Required Params === *'''textureDict:''' {{RageType|string}} *'''textureName:''' {{RageType|string}} === Return Value === *'''void''' {{RageType|void}} ==Syntax== <pre> vehicle.setLiveryTexture(textureDict, textureName); </pre> ==Example== {{ClientsideCode| <syntaxhighlight lang="javascript"> const vehicle = mp.vehicles.atRemoteId(0); if (!vehicle || !mp.vehicles.exists(vehicl...")
  • 18:16, 23 April 2024 Shr0x talk contribs created page Cursor.registerCustomIcon (Created page with "{{ClientsideJsFunction}} {{JSContainer| Register a custom cursor. === Required Params === *'''type:''' {{RageType|Number}} *'''packageFilePath:''' {{RageType|String}} *'''offsetX:''' {{RageType|Float}} *'''offsetY:''' {{RageType|Float}} === Return Value === *'''void''' {{RageType|void}} ==Syntax== //This types are taken from here: https://rage.mp/files/file/495-windows-style-cursor-pack/ <pre> const MAP_CURSOR_NAME_TO_TYPE = { CT_POINTER: 0, CT_CROSS: 1, C...")
  • 18:06, 23 April 2024 Shr0x talk contribs created page Vehicle::fixBumper (Created page with "{{ClientsideJsFunction}} {{JSContainer| Fixes given front or back bumper of a vehicle. === Required Params === *'''front:''' {{RageType|Boolean}} === Return Value === *'''void''' {{RageType|void}} ==Syntax== <pre> vehicle.fixBumper(front); </pre> ==Example== {{ClientsideCode| <syntaxhighlight lang="javascript"> const vehicle = mp.vehicles.atRemoteId(0); if (!vehicle || !mp.vehicles.exists(vehicle)) return; vehicle.fixBumper(true); //fixes vehicle's front bumper. </syn...")
  • 18:04, 23 April 2024 Shr0x talk contribs created page Vehicle::breakOffBumper (Created page with "{{ClientsideJsFunction}} {{JSContainer| Breaks off front or back bumper of the vehicle. === Required Params === *'''front:''' {{RageType|Boolean}} *'''deleteMapObject:''' {{RageType|Boolean}} === Return Value === *'''void''' {{RageType|void}} ==Syntax== <pre> vehicle.breakOffBumper(front, deleteMapObject); </pre> ==Example== {{ClientsideCode| <syntaxhighlight lang="javascript"> const vehicle = mp.vehicles.atRemoteId(0); if (!vehicle || !mp.vehicles.exists(vehicle)) re...")
  • 18:02, 23 April 2024 Shr0x talk contribs created page Vehicle::isWheelBrokenOff (Created page with "{{ClientsideJsFunction}} {{JSContainer| Check whether the given wheel id of the vehicle is broken or not. === Required Params === *'''wheelId:''' {{RageType|Number}} === Return Value === *'''void''' {{RageType|void}} ==Syntax== <pre> vehicle.isWheelBrokenOff(wheelId); </pre> ==Example== {{ClientsideCode| <syntaxhighlight lang="javascript"> const vehicle = mp.vehicles.atRemoteId(0); if (!vehicle || !mp.vehicles.exists(vehicle)) return; mp.console.logInfo(`Wheel id 1 is...")
  • 18:00, 23 April 2024 Shr0x talk contribs created page Vehicle::fixWheel (Created page with "{{ClientsideJsFunction}} {{JSContainer| Fixes broken given wheel id of the vehicle. === Required Params === *'''wheelId:''' {{RageType|Number}} === Return Value === *'''void''' {{RageType|void}} ==Syntax== <pre> vehicle.fixWheel(wheelId); </pre> ==Example== {{ClientsideCode| <syntaxhighlight lang="javascript"> const vehicle = mp.vehicles.atRemoteId(0); if (!vehicle || !mp.vehicles.exists(vehicle)) return; vehicle.fixWheel(1); </syntaxhighlight> }} }} ==See also== {{V...")
  • 17:59, 23 April 2024 Shr0x talk contribs created page Vehicle::breakOffWheel (Created page with "{{ClientsideJsFunction}} {{JSContainer| Breaks specified wheel from vehicle. === Required Params === *'''wheelId:''' {{RageType|Number}} *'''removeFromWorld:''' {{RageType|Boolean}} === Return Value === *'''void''' {{RageType|void}} ==Syntax== <pre> vehicle.breakOffWheel(wheelId, removeFromWorld); </pre> ==Example== {{ClientsideCode| <syntaxhighlight lang="javascript"> const vehicle = mp.vehicles.atRemoteId(0); if (!vehicle || !mp.vehicles.exists(vehicle)) return; veh...")
  • 10:43, 23 April 2024 Shr0x talk contribs created page Streaming::forceStreamingUpdate (Created page with "__NOTOC__ {{ClientsideJsFunction}} Forcefully update ('reload') streaming. {{JSContainer| === Return Value === *'''void''' {{RageType|void}} ==Syntax== <pre> mp.game.streaming.forceStreamingUpdate(); </pre> ==Example== {{ClientsideCode| <syntaxhighlight lang="javascript"> const [position, dimension, heading] = [mp.players.local.position, mp.players.local.dimension, mp.players.local.getHeading()]; const ped = mp.peds.new(mp.game.joaat("mp_m_freemode_01"), position, hea...")
  • 10:36, 23 April 2024 Shr0x talk contribs created page Streaming::setRenderHdOnly (Created page with "__NOTOC__ {{ClientsideJsFunction}} Enable or disable the game to only render HD models {{JSContainer| === Required Arguments === *'''enable:''' {{RageType|Boolean}} === Return Value === *'''void''' {{RageType|void}} ==Syntax== <pre> mp.game.streaming.setRenderHdOnly(enable); </pre> ==Example== {{ClientsideCode| <syntaxhighlight lang="javascript"> mp.game.streaming.setRenderHdOnly(true); //enable HD models only to render </syntaxhighlight> }} }} ==See also== {{Streami...")
  • 10:18, 23 April 2024 Shr0x talk contribs created page Audio::playPoliceCrimeReport (Created page with "__NOTOC__ {{ClientsideJsFunction}} {{JSContainer| === Required Arguments === *'''position:''' {{RageType|Vector3}} *'''crimeIndex:''' {{RageType|Number}} *'''playDelay:''' {{RageType|Number}} *'''localPlayer:''' {{RageType|Boolean}} === Return Value === *'''void:''' {{RageType|void}} ==Syntax== <pre> mp.game.streaming.playPoliceCrimeReport(position, crimeIndex, playDelay, localPlayer); </pre> ==Example== {{ClientsideCode| <syntaxhighlight lang="javascript"> const pos...")
  • 10:06, 23 April 2024 Shr0x talk contribs created page Streaming::streamvolCreateFrustum (Created page with "__NOTOC__ {{ClientsideJsFunction}} {{JSContainer| Creates a new frustum streaming volume for the specified asset types. === Required Arguments === *'''x''' {{RageType|Float}} *'''y''' {{RageType|Float}} *'''z''' {{RageType|Float}} *'''dirX''' {{RageType|Float}} *'''dirY''' {{RageType|Float}} *'''dirZ''' {{RageType|Float}} *'''flag''' {{RageType|Number}} *'''lodFlag''' {{RageType|Number}} === Return Value === *'''handle''' {{RageType|Handle}} ==Syntax== <pre> mp.game.s...")
  • 10:04, 23 April 2024 Shr0x talk contribs created page Streaming::streamvolCreateLine (Created page with "__NOTOC__ {{ClientsideJsFunction}} {{JSContainer| Creates a new line streaming volume for the specified asset types. === Required Arguments === *'''x1''' {{RageType|Float}} *'''y1''' {{RageType|Float}} *'''z1''' {{RageType|Float}} *'''x2''' {{RageType|Float}} *'''y2''' {{RageType|Float}} *'''z2''' {{RageType|Float}} *'''flag''' {{RageType|Number}} === Return Value === *'''void''' {{RageType|Void}} ==Syntax== <pre> mp.game.streaming.streamvolCreateLine(x1, y1, z1, x2,...")
  • 10:01, 23 April 2024 Shr0x talk contribs created page Streaming::streamvolDelete (Created page with "__NOTOC__ {{ClientsideJsFunction}} {{JSContainer| === Required Arguments === *'''streamvol''' {{RageType|Handle}} === Return Value === *'''void''' {{RageType|Void}} ==Syntax== <pre> mp.game.streaming.streamvolDelete(streamvol); </pre> ==Example== {{ClientsideCode| <syntaxhighlight lang="javascript"> const {x, y, z} = mp.players.local.position; const streamvol = mp.game.streaming.streamvolCreateSphere(x, y, z, 1, 1); mp.game.streaming.streamvolDelete(streamvol); //del...")
  • 09:59, 23 April 2024 Shr0x talk contribs created page Streaming::streamvolHasLoaded (Created page with "__NOTOC__ {{ClientsideJsFunction}} {{JSContainer| Returns true if the stream volume has loaded, false if not === Required Arguments === *'''streamvol''' {{RageType|Handle}} === Return Value === *'''boolean''' {{RageType|Boolean}} ==Syntax== <pre> mp.game.streaming.streamvolHasLoaded(streamvol); </pre> ==Example== {{ClientsideCode| <syntaxhighlight lang="javascript"> const {x, y, z} = mp.players.local.position; const streamvol = mp.game.streaming.streamvolCreateSphere...")
  • 09:57, 23 April 2024 Shr0x talk contribs created page Streaming::streamvolIsValid (Created page with "__NOTOC__ {{ClientsideJsFunction}} {{JSContainer| Returns true if the stream volume handle is valid and active, false if its not. === Required Arguments === *'''streamvol''' {{RageType|Handle}} === Return Value === *'''boolean''' {{RageType|Boolean}} ==Syntax== <pre> mp.game.streaming.streamvolIsValid(streamvol); </pre> ==Example== {{ClientsideCode| <syntaxhighlight lang="javascript"> const {x, y, z} = mp.players.local.position; const streamvol = mp.game.streaming.st...")
  • 09:55, 23 April 2024 Shr0x talk contribs created page Streaming::streamvolCreateSphere (Created page with "__NOTOC__ {{ClientsideJsFunction}} {{JSContainer| Creates a new spherical streaming volume for the specified asset types === Required Arguments === *'''x:''' {{RageType|Float}} *'''y:''' {{RageType|Float}} *'''z:''' {{RageType|Float}} *'''flag:''' {{RageType|Number}} *'''lodflag''' {{RageType|Number}} === Return Value === *'''handle''' {{RageType|Handle}} //returns -1 if invalid ==Syntax== <pre> mp.game.streaming.streamvolCreateSphere(x, y, z, flag, lodFlag); </pre> =...")
  • 09:17, 23 April 2024 Shr0x talk contribs created page Streaming::getAllModelHashes (Created page with "__NOTOC__ {{ClientsideJsFunction}} {{JSContainer| === Required Arguments === *'''p1:''' {{RageType|Number}} ==Syntax== <pre> mp.game.streaming.getAllModelHashes(p1); </pre> ==Example== {{ClientsideCode| <pre> const vehicleList = mp.game.streaming.getAllModelHashes(5); //return a number array of all vehicle hashes </pre> }} }} ==See also== {{Streaming_functions_c}} Category:Clientside API Category:Client-side Function")
  • 09:06, 23 April 2024 Shr0x talk contribs created page Player::getEntityIsFreeAimingAtRaw (Created page with "{{JSContainer| ==Syntax== <syntaxhighlight lang="javascript">mp.game.player.getEntityIsFreeAimingAtRaw();</syntaxhighlight> ===Return value=== *'''handle or undefined''' ==Example== <syntaxhighlight lang="javascript"> const targetEntity = mp.game.player.getEntityIsFreeAimingAtRaw(); if (targetEntity) { const ped = mp.peds.atHandle(targetEntity); if (ped && mp.peds.exists(ped)) { mp.gui.chat.push(`You are aiming at ped id ${ped.id}`); } } </syntaxhi...")
  • 17:31, 22 April 2024 Shr0x talk contribs created page Graphics::setLightsState (Created page with "{{JSContainer| === Required Arguments === *'''lightid:''' Number(0-16) *'''disable:''' Boolean ===Return value=== *'''void''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.graphics.setLightsState(lightid, disable); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> mp.game.graphics.setLightsState(1, true); </syntaxhighlight> }} ==See also== {{Graphics_s_function_c}} Category:Clientside API")
  • 17:27, 22 April 2024 Shr0x talk contribs created page Graphics::createWorldTextureSwap (Created page with "{{JSContainer| === Required Arguments === *'''oldTextureDict:''' string *'''oldTextureName:''' string *'''newTextureDict:''' string *'''newTextureName:''' string ===Return value=== *'''void''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.graphics.createWorldTextureSwap(oldTextureDict, oldTextureName, newTextureDict, newTextureName); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> mp.game.graphics.createWorldTextureSwap('hw1_16_build', 'h...")
  • 17:26, 22 April 2024 Shr0x talk contribs created page Graphics::removeWorldTextureSwap (Created page with "{{JSContainer| === Required Arguments === *'''oldTextureDict:''' string *'''oldTextureName:''' string ===Return value=== *'''void''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.graphics.removeWorldTextureSwap(oldTextureDict, oldTextureName); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> mp.game.graphics.createWorldTextureSwap('hw1_16_build', 'hw1_16_tpage_ro_01', 'gta5_bill', 'prop_billboard_02_dm'); mp.game.graphics.removeWorldTextur...")
  • 17:24, 22 April 2024 Shr0x talk contribs created page Graphics::resetWorldTextureSwaps (Created page with "{{JSContainer| This function will reset all texture swaps in the world ===Return value=== *'''void''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.graphics.resetWorldTextureSwaps(); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> mp.game.grapgics.resetWorldTextureSwaps(); </syntaxhighlight> }} ==See also== {{Graphics_s_function_c}} Category:Clientside API")
  • 17:23, 22 April 2024 Shr0x talk contribs created page Graphics::registerTextFontId (Created page with "{{JSContainer| === Required Arguments === *'''name:''' string ===Return value=== *'''void''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.graphics.registerTextFontId(name); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Graphics_s_function_c}} Category:Clientside API")
  • 17:20, 22 April 2024 Shr0x talk contribs created page Vehicle::setGeneratesEngineShockingEvents (Created page with "{{JSContainer| === Required Arguments === *'''handle:''' Vehicle handle *'''enable:''' Boolean ===Return value=== *'''void''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.vehicle.setGeneratesEngineShockingEvents(handle, enable); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> const vehicle = mp.vehicles.atRemoteId(0); //get vehicle with remote id 0 if (!vehicle || !mp.vehicles.exists(vehicle)) return; //if the vehicle don't exist we retu...")
  • 17:17, 22 April 2024 Shr0x talk contribs created page Vehicle::setPlanePropellersHealth (Created page with "{{JSContainer| === Required Arguments === *'''handle:''' Vehicle handle *'''health:''' number ===Return value=== *'''void''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.vehicle.setPlanePropellersHealth(handle, health); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> const plane = mp.vehicles.atRemoteId(0); //get vehicle with remote id 0 if (!plane || !mp.vehicles.exists(plane)) return; //if the vehicle don't exist we return here if (mp....")
  • 17:14, 22 April 2024 Shr0x talk contribs created page Vehicle::setDriftTyresEnabled (Created page with "{{JSContainer| === Required Arguments === *'''handle:''' Vehicle handle *'''enable:''' Boolean ===Return value=== *'''void''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.vehicle.setDriftTyresEnabled(handle, enable); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> const vehicle = mp.vehicles.atRemoteId(0); //get vehicle with remote id 0 if (!vehicle || !mp.vehicles.exists(vehicle)) return; //if the vehicle don't exist we return here //Ve...")
  • 17:13, 22 April 2024 Shr0x talk contribs created page Vehicle::setRandomBoatsInMp (Created page with "{{JSContainer| === Required Arguments === *'''enable:''' Boolean ===Return value=== *'''void''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.vehicle.setRandomBoatsInMp(enable); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> mp.game.vehicle.setRandomBoatsInMp(true); </syntaxhighlight> }} ==See also== {{Vehicle_s_function_c}} Category:Clientside API Category:TODO: Example")
  • 17:08, 22 April 2024 Shr0x talk contribs created page Vehicle::setParachuteTextureVariation (Created page with "{{JSContainer| === Required Arguments === *'''handle:''' Vehicle handle *'''variation:''' Number ===Return value=== *'''void''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.vehicle.setParachuteTextureVariation(handle, variation); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> const vehicle = mp.vehicles.atRemoteId(0); //get vehicle with remote id 0 if (!vehicle || !mp.vehicles.exists(vehicle)) return; //if the vehicle don't exist we ret...")
  • 17:06, 22 April 2024 Shr0x talk contribs created page Vehicle::getDriftTyresEnabled (Created page with "{{JSContainer| === Required Arguments === *'''handle:''' Vehicle handle ===Return value=== *'''void''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.vehicle.getDriftTyresEnabled(handle); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> const vehicle = mp.vehicles.atRemoteId(0); //get vehicle with remote id 0 if (!vehicle || !mp.vehicles.exists(vehicle)) return; //if the vehicle don't exist we return here //Vehicle is valid, processing the...")
  • 17:02, 22 April 2024 Shr0x talk contribs created page Vehicle::setExperimentalHornSyncEnabled (Created page with "{{JSContainer| === Required Arguments === *'''enable:''' Boolean ===Return value=== *'''void''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.vehicle.setExperimentalHornSyncEnabled(enable); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> mp.game.vehicle.setExperimentalHornSyncEnabled(false); //disable experimental horn sync. </syntaxhighlight> }} ==See also== {{Vehicle_s_function_c}} Category:Clientside API Category:TODO: Example")
  • 17:01, 22 April 2024 Shr0x talk contribs created page Vehicle::setExperimentalAttachmentSyncEnabled (Created page with "{{JSContainer| === Required Arguments === *'''enable:''' Boolean ===Return value=== *'''void''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.vehicle.setExperimentalAttachmentSyncEnabled(enable); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> mp.game.vehicle.setExperimentalAttachmentSyncEnabled(false); //disable experimental attachment sync. </syntaxhighlight> }} ==See also== {{Vehicle_s_function_c}} Category:Clientside API Categor...")
  • 17:43, 4 March 2024 Shr0x talk contribs created page Events::binded (Created page with "__TOC__ {{SharedFunctionJS}} {{JSContainer| ===Returned value=== *{{RageType|An array of event names and handlers}} ===Example=== <pre> mp.events.add('myevent', () => { //code here }); console.log(mp.events.binded); //Output [{ 'myevent': [Function (anonymous)] }] </pre> }} ==See Also== {{Event_functions}}")
  • 10:56, 1 March 2024 Shr0x talk contribs created page Player::setCanLosePropsOnDamage (Created page with " {{ClientsideJsEvent}} Enable or disable the ability for entity to drop props when they're damaged. {{JSContainer| {{Parameters}} * '''enable''': {{RageType|boolean}} * '''p0''': {{RageType|Number}} {{Example}} <syntaxhighlight lang="javascript" style="width: 98%; background-color: #E4F1FE;"> mp.players.local.setCanLosePropsOnDamage(false, 0); </syntaxhighlight> }} ==See also== {{Player_function_c}} Category:Clientside API")
  • 16:29, 30 November 2022 Shr0x talk contribs created page Projectile (Created page with " {{ClientsideJsEvent}} {{JSContainer| {{Parameters}} * '''sourcePlayer''': {{RageType|Player}} * '''weaponHash''': {{RageType|Number}} * '''ammoType''': {{RageType|Number}}...")
  • 16:20, 30 November 2022 Shr0x talk contribs created page Explosion (Created page with " {{ClientsideJsEvent}} {{JSContainer| {{Parameters}} * '''sourcePlayer''': {{RageType|Player}} * '''type''': {{RageType|Number}} * '''position''': {{RageType|Vector3}} {{Ex...")
  • 02:25, 1 June 2022 Shr0x talk contribs created page Camera::attachToVehicleBone (Created page with "__NOTOC__ Attaches a camera to the bone specified. == Syntax == <pre> camera.attachToVehicleBone(handle, boneIndex, relativeRotation, rotX, rotY, rotZ, offsetX, offsetY, offs...")
  • 23:14, 12 December 2021 Shr0x talk contribs created page Graphics::drawMarker2 (Created page with "{{ClientSide}} Use this function to draw a marker. This function is used in a ''render'' event. __TOC__ <br> {{JSContainer| <pre> mp.game.graphics.drawMarker2(type, posX, p...")
  • 19:07, 29 November 2021 Shr0x talk contribs created page Vehicle::getEntryPositionOfDoor (Created page with "==Syntax== <syntaxhighlight lang="javascript">vehicle.getEntryPositionOfDoor(doorindex: number);</syntaxhighlight> ===Required Args=== *'''doorIndex''' The door index of the v...")
  • 19:03, 29 November 2021 Shr0x talk contribs created page Vehicle::getNumberOfDoors (Missing functions)
  • 21:47, 3 October 2021 Shr0x talk contribs created page Weapon::cancelCurrentDamageEvent (Created page with "==Syntax== unlike "return true" in the event (outgoingDamage/incomingDamage), it only cancels outgoing damage locally <syntaxhighlight lang="javascript">mp.game.weapon.cancelC...")
  • 21:42, 3 October 2021 Shr0x talk contribs created page Weapon::setCurrentDamageEventAmount (Created page with "==Syntax== <syntaxhighlight lang="javascript">mp.game.weapon.setCurrentDamageEventAmount(number);</syntaxhighlight> === Required Arguments === *'''amount:''' Number ===Return...")
  • 17:16, 18 September 2021 Shr0x talk contribs created page Vehicle::forceSubmarineSurfaceMode (Created page with "==Syntax== <syntaxhighlight lang="javascript">vehicle.forceSubmarineSurfaceMode(toggle);</syntaxhighlight> ===Required Arguments=== *'''boolean''' toggle ===Return value=== *'...")
  • 17:14, 18 September 2021 Shr0x talk contribs created page Vehicle::setFarDrawS (Created page with "==Syntax== <syntaxhighlight lang="javascript">vehicle.setFarDrawS(toggle);</syntaxhighlight> ===Required Arguments=== *'''bolean''' toggle ===Return value=== *'''undefined'''...")
  • 17:11, 18 September 2021 Shr0x talk contribs created page Vehicle::doesAllowRappel (Created page with "==Syntax== <syntaxhighlight lang="javascript">vehicle.doesAllowRappel();</syntaxhighlight> ===Return value=== *'''boolean''' ==Example== <syntaxhighlight lang="javascript"> //...")
  • 12:34, 17 September 2021 Shr0x talk contribs created page Vehicle::isSirenAudioOn (Created page with "Checks whether the vehicle audio siren is on or not. Works only in vehicles that have siren. ==Syntax== <syntaxhighlight lang="javascript">vehicle.isSirenAudioOn();</syntaxhig...")
  • 23:03, 16 September 2021 Shr0x talk contribs created page Vehicle::isEngineOnFire (Created page with "==Syntax== <syntaxhighlight lang="javascript">vehicle.isEngineOnFire();</syntaxhighlight> ===Return value=== *'''boolean''' ==Example== <syntaxhighlight lang="javascript"> //t...")
  • 23:00, 16 September 2021 Shr0x talk contribs created page Vehicle::isAnyNearPoint (Created page with "==Syntax== <syntaxhighlight lang="javascript">vehicle.isAnyNearPoint(x, y, z, radius);</syntaxhighlight> === Required Arguments === *'''x:''' float *'''y:''' float *'''z:''' f...")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)