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).
- 21:58, 2 November 2024 Shr0x talk contribs created page Browser::orderId (Created page with "{{ClientsideJsFunction}} {{JSContainer| This property controls the browser's `orderId`, which acts like a z-index for determining the rendering order of browser instances. Higher `orderId` values display in front of those with lower values. Useful for managing overlapping UIs. ==Syntax== <syntaxhighlight lang="javascript"> browser.orderId = value; // Sets the orderId let value = browser.orderId; // Gets the current orderId </syntaxhighlight> === Required Arguments ===...")
- 17:31, 20 October 2024 User account Kv talk contribs was created automatically
- 20:42, 6 October 2024 Caballero talk contribs created page User:Caballero (Created page with ":)")
- 20:32, 16 September 2024 Sander talk contribs created page SendMouseMoveEvent (Created page with "== browser.sendMouseMoveEvent(x, y) (Client-Side) == '''Client-side function to simulate mouse movement within a browser.''' === Usage: === <syntaxhighlight lang="javascript"> // Example: Simulating mouse movement to (500, 400). browser.sendMouseMoveEvent(500, 400); </syntaxhighlight> === Description: === Simulates mouse movement at the specified coordinates within the browser. === Parameters: === * <code>x</code>: X-coordinate of the mouse movement. * <code>y</c...")
- 17:15, 8 September 2024 Pietrodc0 talk contribs created page EntityDeleted (Created page with "This event is triggered when an Entity Is Deleted. From my testing, this event is only accessible on the serverside. {{ServersideCsJsEvent}} {{JSContainer| {{Parameters}} * '''entity''': {{RageType|Entity}} - the entity that was deleted {{Example}} <pre> function entityDeletedHandler(entity) { console.log(`Entity with handle id ${entity.id} has beenb deleted`); } mp.events.add("entityDeleted", entityDeletedHandler); </pre> }} {{CSharpConta...")
- 14:34, 8 September 2024 User account Caballero talk contribs was created automatically
- 14:33, 8 September 2024 User account Sander talk contribs was created automatically
- 14:29, 8 September 2024 User account Pietrodc0 talk contribs was created automatically
- 20:02, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppSetString (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Required Params=== *'''property:''' {{RageType|string}} *'''value:''' {{RageType|string}} ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> RAGE.Game.App.AppSetString(property, value) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 20:02, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppSetInt (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Required Params=== *'''property:''' {{RageType|string}} *'''value:''' {{RageType|int}} ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> RAGE.Game.App.AppSetInt(property, value) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 20:02, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppSetFloat (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Required Params=== *'''property:''' {{RageType|string}} *'''value:''' {{RageType|float}} ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> RAGE.Game.App.AppSetFloat(property, value) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 20:02, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppSetBlock (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Required Params=== *'''blockName:''' {{RageType|string}} ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> RAGE.Game.App.AppSetBlock(blockName) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 20:01, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppSetApp (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Required Params=== *'''appName:''' {{RageType|string}} ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> RAGE.Game.App.AppSetApp(appName) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 20:01, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppSaveData (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> RAGE.Game.App.AppSaveData() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 20:01, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppHasSyncedData (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Required Params=== *'''appName:''' {{RageType|string}} ===Return value=== *''' {{RageType|bool}} ''' ==Syntax== <syntaxhighlight lang="javascript"> RAGE.Game.App.AppHasSyncedData(appName) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 20:01, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppHasLinkedSocialClubAccount (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Return value=== *''' {{RageType|bool}} ''' ==Syntax== <syntaxhighlight lang="javascript"> RAGE.Game.App.AppHasLinkedSocialClubAccount() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 20:01, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppGetString (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Required Params=== *'''property:''' {{RageType|string}} ===Return value=== *''' {{RageType|string}} ''' ==Syntax== <syntaxhighlight lang="javascript"> RAGE.Game.App.AppGetString(property) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 20:01, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppGetInt (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Required Params=== *'''property:''' {{RageType|string}} ===Return value=== *''' {{RageType|int}} ''' ==Syntax== <syntaxhighlight lang="javascript"> RAGE.Game.App.AppGetInt(property) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 20:00, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppGetFloat (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Required Params=== *'''property:''' {{RageType|string}} ===Return value=== *''' {{RageType|float}} ''' ==Syntax== <syntaxhighlight lang="javascript"> RAGE.Game.App.AppGetFloat(property) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 20:00, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppGetDeletedFileStatus (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Return value=== *''' {{RageType|int}} ''' ==Syntax== <syntaxhighlight lang="javascript"> RAGE.Game.App.AppGetDeletedFileStatus() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 20:00, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppDeleteAppData (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Required Params=== *'''appName:''' {{RageType|string}} ===Return value=== *''' {{RageType|bool}} ''' ==Syntax== <syntaxhighlight lang="javascript"> RAGE.Game.App.AppDeleteAppData(appName) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 19:58, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppDataValid (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Return value=== *''' {{RageType|bool}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.AppDataValid() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 19:58, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppCloseBlock (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.AppCloseBlock() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 19:58, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppCloseApp (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.AppCloseApp() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 19:58, 20 August 2024 Shr0x talk contribs created page RAGE.Game.App.AppClearBlock (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.AppClearBlock() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{App_definition_cs}} Category:Clientside API Category:TODO: Example")
- 19:49, 20 August 2024 Shr0x talk contribs created page RAGE.Game.Ai.SetNextDesiredMoveState (Created page with " {{ClientsideCsFunction}} {{CSharpContainer| ===Required Params=== *'''p0:''' {{RageType|float}} ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> RAGE.Game.Ai.SetNextDesiredMoveState(p0) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Ai_definition_cs}} Category:Clientside API Category:TODO: Example")
- 19:44, 20 August 2024 Shr0x talk contribs created page RAGE.Elements.Checkpoint.Radius (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| Sets the checkpoint radius. ===Required Params=== *'''radius:''' {{RageType|float}} ===Return value=== *''' {{RageType|float}} ''' ==Syntax== <syntaxhighlight lang="javascript"> checkpoint.Radius = radius; </syntaxhighlight> ==Example== <syntaxhighlight lang="cs"> //todo </syntaxhighlight> }} ==See also== {{Checkpoint_definition_cs}} Category:Clientside API Category:TODO: Example")
- 19:43, 20 August 2024 Shr0x talk contribs created page RAGE.Elements.Checkpoint.Visible (Created page with " {{ClientsideCsFunction}} {{CSharpContainer| ===Required Params=== *'''visible:''' {{RageType|boolean}} ===Return value=== *''' {{RageType|boolean}} ''' ==Syntax== <syntaxhighlight lang="javascript"> checkpoint.Visible = visible; </syntaxhighlight> ==Example== <syntaxhighlight lang="cs"> //todo </syntaxhighlight> }} ==See also== {{Checkpoint_definition_cs}} Category:Clientside API Category:TODO: Example")
- 19:43, 20 August 2024 Shr0x talk contribs created page RAGE.Elements.Checkpoint.Direction (Created page with "{{ClientsideCsFunction}} {{CSharpContainer| ===Required Params=== *'''direction:''' {{RageType|Vector3}} ===Return value=== *''' {{RageType|Vector3}} ''' ==Syntax== <syntaxhighlight lang="javascript"> checkpoint.Direction = direction; </syntaxhighlight> ==Example== <syntaxhighlight lang="cs"> //todo </syntaxhighlight> }} ==See also== {{Checkpoint_definition_cs}} Category:Clientside API Category:TODO: Example")
- 18:08, 19 August 2024 Shr0x talk contribs created page Browser::mouseInputEnabled (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''toggle:''' {{RageType|boolean}} ===Return value=== *''' {{RageType|boolean}} ''' ==Syntax== <syntaxhighlight lang="javascript"> browser.mouseInputEnabled = toggle; </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Browser_definition_c}} Category:Clientside API Category:TODO: Example")
- 17:14, 19 August 2024 Shr0x talk contribs created page Vehicle::setTrailerAttachmentsUnbreakable (Created page with "{{ClientsideJsFunction}} {{JSContainer| ==Required Params== *'''toggle:''' {{RageType|boolean}} ==Return value== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.vehicle.setTrailerAttachmentsUnbreakable(toggle) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Vehicle_functions_c}} Category:Clientside API Category:TODO: Example")
- 09:47, 19 August 2024 Shr0x talk contribs created page Object::streamingRange (Created page with "{{ClientsideJsFunction}} {{JSContainer| This property will set the object's streaming distance (range). ===Required Params=== *'''distance:''' {{RageType|number}} ===Return value=== *''' {{RageType|number}} ''' ==Syntax== <syntaxhighlight lang="javascript"> object.streamingRange = distance; </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> const object = mp.objects.new(mp.game.joaat("02gate3_l"), mp.players.local.position); object.streamingRange = 3...")
- 13:31, 15 August 2024 Shr0x talk contribs created page Gameplay::enableSnow (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''enable:''' {{RageType|boolean}} ===Return value=== *''' {{RageType|boolean}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.enableSnow = enable; </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:30, 15 August 2024 Shr0x talk contribs created page Gameplay::setPlayerRockstarEditorDisabled (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''toggle:''' {{RageType|boolean}} ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.setPlayerRockstarEditorDisabled(toggle) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:30, 15 August 2024 Shr0x talk contribs created page Gameplay::getIsPlayerInAnimalForm (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|boolean}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.getIsPlayerInAnimalForm() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:30, 15 August 2024 Shr0x talk contribs created page Gameplay::setPlayerIsInAnimalForm (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''toggle:''' {{RageType|boolean}} ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.setPlayerIsInAnimalForm(toggle) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:30, 15 August 2024 Shr0x talk contribs created page Gameplay::getPowerSavingModeDuration (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|number}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.getPowerSavingModeDuration() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:30, 15 August 2024 Shr0x talk contribs created page Gameplay::isInPowerSavingMode (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|boolean}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.isInPowerSavingMode() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:30, 15 August 2024 Shr0x talk contribs created page Gameplay::cleanupAsyncInstall (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.cleanupAsyncInstall() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:30, 15 August 2024 Shr0x talk contribs created page Gameplay::hasAsyncInstallFinished (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|boolean}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.hasAsyncInstallFinished() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:29, 15 August 2024 Shr0x talk contribs created page Gameplay::forceSocialClubUpdate (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.forceSocialClubUpdate() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:29, 15 August 2024 Shr0x talk contribs created page Gameplay::restartGame (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.restartGame() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:29, 15 August 2024 Shr0x talk contribs created page Gameplay::getBenchmarkPassFromCommandLine (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|number}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.getBenchmarkPassFromCommandLine() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:29, 15 August 2024 Shr0x talk contribs created page Gameplay::getBenchmarkIterationsFromCommandLine (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|number}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.getBenchmarkIterationsFromCommandLine() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:29, 15 August 2024 Shr0x talk contribs created page Gameplay::isCommandLineBenchmarkValueSet (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|boolean}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.isCommandLineBenchmarkValueSet() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:29, 15 August 2024 Shr0x talk contribs created page Gameplay::landingMenuIsActive (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|boolean}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.landingMenuIsActive() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:29, 15 August 2024 Shr0x talk contribs created page Gameplay::uiIsSingleplayerPauseMenuActive (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|boolean}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.uiIsSingleplayerPauseMenuActive() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:29, 15 August 2024 Shr0x talk contribs created page Gameplay::saveBenchmarkRecording (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.saveBenchmarkRecording() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:28, 15 August 2024 Shr0x talk contribs created page Gameplay::resetBenchmarkRecording (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.resetBenchmarkRecording() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 13:28, 15 August 2024 Shr0x talk contribs created page Gameplay::stopBenchmarkRecording (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|void}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.stopBenchmarkRecording() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")