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).
- 12:32, 2 June 2026 Basinger talk contribs created page User:Basinger (Created page with "I'm exist!")
- 18:06, 11 February 2026 Shr0x talk contribs created page System::connectToServer (Created page with "{{ClientsideJsFunction}} {{JSContainer| === Required Params === *'''ip:''' {{RageType|string}} *'''port:''' {{RageType|number}} *'''sessionData:''' {{RageType|string}} (Optional) === Return value === *''' {{RageType|void}} ''' == Syntax == <syntaxhighlight lang="javascript"> mp.system.connectToServer(ip, port, sessionData); </syntaxhighlight> == Example == <syntaxhighlight lang="javascript"> mp.system.connectToServer("127.0.0.1", 22005, "playerAuthToken"); </syntaxhi...")
- 18:04, 11 February 2026 Shr0x talk contribs created page System::setConnectableServers (Created page with "{{ClientsideJsFunction}} {{JSContainer| === Required Params === *'''serverIps:''' {{RageType|Array<string>}} === Return value === *''' {{RageType|void}} ''' == Syntax == <syntaxhighlight lang="javascript"> mp.system.setConnectableServers(serverIps); </syntaxhighlight> == Example == <syntaxhighlight lang="javascript"> mp.system.setConnectableServers(["127.0.0.1", "192.168.1.10"]); </syntaxhighlight> == Notes == * Can only be called once during script initialization....")
- 17:51, 11 February 2026 Shr0x talk contribs created page Object::disableGlow (Created page with "{{ClientsideJsFunction}} {{JSContainer| === Required Params === *'''handle:''' {{RageType|number}} === Return value === *''' {{RageType|void}} ''' == Syntax == <syntaxhighlight lang="javascript"> mp.game.object.disableGlow(handle); </syntaxhighlight> == Example == <syntaxhighlight lang="javascript"> mp.game.object.disableGlow(object.handle); </syntaxhighlight> }} ==See also== {{Object_function_c}} Category:Clientside API")
- 17:50, 11 February 2026 Shr0x talk contribs created page Object::enableGlow (Created page with "{{ClientsideJsFunction}} {{JSContainer| === Required Params === *'''handle:''' {{RageType|number}} *'''glowStyle:''' {{RageType|number}} === Return value === *''' {{RageType|void}} ''' == Syntax == <syntaxhighlight lang="javascript"> mp.game.object.enableGlow(handle, glowStyle); </syntaxhighlight> == Example == <syntaxhighlight lang="javascript"> mp.game.object.enableGlow(object.handle, glow); </syntaxhighlight> }} ==See also== {{Object_function_c}} Category:Client...")
- 17:49, 11 February 2026 Shr0x talk contribs created page Object::modifyGlowStyle (Created page with "{{ClientsideJsFunction}} {{JSContainer| === Required Params === *'''glowStyle:''' {{RageType|number}} *'''freq:''' {{RageType|number}} *'''minIntensity:''' {{RageType|number}} *'''maxIntensity:''' {{RageType|number}} === Return value === *''' {{RageType|void}} ''' == Syntax == <syntaxhighlight lang="javascript"> mp.game.object.modifyGlowStyle(glowStyle, freq, minIntensity, maxIntensity); </syntaxhighlight> == Example == <syntaxhighlight lang="javascript"> mp.game.obj...")
- 17:48, 11 February 2026 Shr0x talk contribs created page Object::releaseGlowStyle (Created page with "{{ClientsideJsFunction}} {{JSContainer| === Required Params === *'''glowStyle:''' {{RageType|number}} === Return value === *''' {{RageType|void}} ''' == Syntax == <syntaxhighlight lang="javascript"> mp.game.object.releaseGlowStyle(glowStyle); </syntaxhighlight> == Example == <syntaxhighlight lang="javascript"> mp.game.object.releaseGlowStyle(glow); </syntaxhighlight> }} ==See also== {{Object_function_c}} Category:Clientside API")
- 17:46, 11 February 2026 Shr0x talk contribs created page Object::createGlowStyle (Created page with "{{ClientsideJsFunction}} {{JSContainer| === Required Params === *'''freq:''' {{RageType|number}} *'''minIntensity:''' {{RageType|number}} *'''maxIntensity:''' {{RageType|number}} === Return value === *''' {{RageType|number}} ''' (glowStyle id) == Syntax == <syntaxhighlight lang="javascript"> const glowStyle = mp.game.object.createGlowStyle(freq, minIntensity, maxIntensity); </syntaxhighlight> == Example == <syntaxhighlight lang="javascript"> const glow = mp.game.obje...")
- 00:07, 27 December 2025 Shr0x talk contribs created page PerformanceTimer::reset (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Return value=== *'''{{RageType|void}}''' ==Syntax== <syntaxhighlight lang="javascript"> const timer = mp.game.misc.startPerformanceTimer(); timer.reset() </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API")
- 00:06, 27 December 2025 Shr0x talk contribs created page PerformanceTimer::getElapsedUs (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Return value=== *'''{{RageType|number}}''' — Elapsed time in microseconds. ==Syntax== <syntaxhighlight lang="javascript"> const timer = mp.game.misc.startPerformanceTimer(); timer.getElapsedUs() </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API")
- 00:05, 27 December 2025 Shr0x talk contribs created page PerformanceTimer::getElapsedMs (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Return value=== *'''{{RageType|number}}''' — Elapsed time in ms. ==Syntax== <syntaxhighlight lang="javascript"> const timer = mp.game.misc.startPerformanceTimer(); timer.getElapsedMs() </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API")
- 00:04, 27 December 2025 Shr0x talk contribs created page PerformanceTimer::getElapsedSec (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Return value=== *'''{{RageType|number}}''' — Elapsed time in seconds. ==Syntax== <syntaxhighlight lang="javascript"> const timer = mp.game.misc.startPerformanceTimer(); timer.getElapsedSec() </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API")
- 23:59, 26 December 2025 Shr0x talk contribs created page Gameplay::startPerformanceTimer (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *None ===Return value=== *'''{{RageType|PerformanceTimer}}''' — A performance timer instance. ==Syntax== <syntaxhighlight lang="javascript"> mp.game.misc.startPerformanceTimer() </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> const timer = mp.game.misc.startPerformanceTimer(); // some heavy logic here mp.gui.chat.push(`Elapsed ms: ${timer.getElapsedMs()}`); </syntaxhighlight> }} ==S...")
- 22:17, 26 December 2025 Shr0x talk contribs created page Player::getNearbyObjects (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''numObjects:''' {{RageType|number}} — Maximum number of objects to return. *'''maxDistance:''' {{RageType|number}} — Maximum search distance. *'''ignoreDamaged:''' {{RageType|boolean}} — Whether to ignore damaged objects. ===Return value=== *'''{{RageType|Array<NearbyObjectInfo>|null}}''' — Array of nearby objects or null if none found. ''NearbyObjectInfo contains:'' *'''model''' — {{RageType|n...")
- 22:16, 26 December 2025 Shr0x talk contribs created page Player::getNearvyObjects (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''numObjects:''' {{RageType|number}} — Maximum number of objects to return. *'''maxDistance:''' {{RageType|number}} — Maximum search distance. *'''ignoreDamaged:''' {{RageType|boolean}} — Whether to ignore damaged objects. ===Return value=== *'''{{RageType|Array<NearbyObjectInfo>|null}}''' — Array of nearby objects or null if none found. ''NearbyObjectInfo contains:'' *'''model''' — {{RageType|n...")
- 22:56, 25 December 2025 DevMarvin talk contribs created page Vehicle::modifyWheelBoneTransform (Created page with "Note: Use wheelId 255 to modify all wheels at once ==Syntax== <syntaxhighlight lang="javascript">mp.game.vehicle.modifyWheelBoneTransform(wheelId, rotationX, rotationY, rotationZ, offsetX, offsetY, offsetZ);</syntaxhighlight> === Required Arguments === *'''wheelId:''' number *'''rotationX:''' number *'''rotationY:''' number *'''rotationZ:''' number *'''offsetX:''' number *'''offsetY:''' number *'''offsetZ:''' number ===Return value=== *'''undefined''' ==Example== <synta...")
- 21:23, 25 May 2025 DevMarvin talk contribs created page Getting Started with Access Control List (ACL) (Created page with "__TOC__ = Access Control List = RAGE Multiplayer C# API includes tool named Access Control List (ACL) that allows you to keep your gamemode secure and limit access to the commands. The main concept of this file is that you're giving a specific player a set of rights. You can create as many rights as many commands you have. === Default file === Default acl.xml file looks like this: <syntaxhighlight lang="xml"> <?xml version="1.0"?> <acl xmlns:xsd="http://www.w3.org/2001...")
- 09:41, 17 May 2025 DevMarvin talk contribs created page Gameplay::isGen9 (Created page with " {{ClientsideJsFunction}} {{JSContainer| ===Return value=== *''' {{RageType|boolean}} ''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.gameplay.isGen9; </syntaxhighlight> == Example == <syntaxhighlight lang="javascript"> if (mp.game.gameplay.isGen9) { mp.console.logInfo("geb9") } </syntaxhighlight> }} ==See also== {{Gameplay_functions_c}} Category:Clientside API Category:TODO: Example")
- 11:39, 15 May 2025 Basinger talk contribs created page File:Clothing M 2 82.jpg
- 11:39, 15 May 2025 Basinger talk contribs uploaded File:Clothing M 2 82.jpg
- 11:39, 15 May 2025 Basinger talk contribs created page File:Clothing M 2 81.jpg
- 11:39, 15 May 2025 Basinger talk contribs uploaded File:Clothing M 2 81.jpg
- 11:39, 15 May 2025 Basinger talk contribs created page File:Clothing M 2 80.jpg
- 11:39, 15 May 2025 Basinger talk contribs uploaded File:Clothing M 2 80.jpg
- 11:39, 15 May 2025 Basinger talk contribs created page File:Clothing M 2 79.jpg
- 11:39, 15 May 2025 Basinger talk contribs uploaded File:Clothing M 2 79.jpg
- 11:39, 15 May 2025 Basinger talk contribs created page File:Clothing M 2 78.jpg
- 11:39, 15 May 2025 Basinger talk contribs uploaded File:Clothing M 2 78.jpg
- 11:38, 15 May 2025 Basinger talk contribs created page File:Clothing M 2 77.jpg
- 11:38, 15 May 2025 Basinger talk contribs uploaded File:Clothing M 2 77.jpg
- 17:48, 16 March 2025 Shr0x talk contribs created page Streaming::releaseRuntimeAsset (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''resourceName:''' {{RageType|string}} or {{RageType|number}} — The name or handle of the asset to release. ===Return value=== *'''{{RageType|void}}''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.streaming.releaseRuntimeAsset(resourceName) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> mp.game.streaming.releaseRuntimeAsset("myAsset"); </syntaxhighlight> }} ==See also== {...")
- 17:46, 16 March 2025 Shr0x talk contribs created page Streaming::requestRuntimeAssetFromUrl (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''resourceName:''' {{RageType|string}} — The name of the resource. *'''url:''' {{RageType|string}} — The URL from which to request the asset. ===Return value=== *'''{{RageType|Promise<boolean>}}''' — Resolves to `true` if the asset was successfully loaded, otherwise `false`. ==Syntax== <syntaxhighlight lang="javascript"> mp.game.streaming.requestRuntimeAssetFromUrl(string resourceName, string url) <...")
- 17:42, 16 March 2025 Shr0x talk contribs created page Template:Raycast functions c (Created page with "*mp.raycasting.testVisualDrawablePointToPoint *mp.raycasting.testPointToPoint *mp.raycasting.testPointToPointAsync *mp.raycasting.testCapsule *mp.raycasting.testVisualDrawablePointToPointForEntity")
- 17:41, 16 March 2025 Shr0x talk contribs created page Raycasting::testVisualDrawablePointToPointForEntity (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''rayStart:''' {{RageType|Vector3}} — The starting position of the raycast. *'''rayEnd:''' {{RageType|Vector3}} — The ending position of the raycast. *'''entityHandle:''' {{RageType|number}} — The handle of the entity to test against. ===Return value=== *'''{{RageType|Object}}''' — Returns an object containing information about the hit result. ==Syntax== <syntaxhighlight lang="javascript"> mp.rayc...")
- 17:39, 16 March 2025 Shr0x talk contribs created page Raycasting::testVisualDrawablePointToPoint (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''rayStart:''' {{RageType|Vector3}} — The starting position of the raycast. *'''rayEnd:''' {{RageType|Vector3}} — The ending position of the raycast. *'''flags:''' {{RageType|number}} (optional, default: -1) — Flags that determine the behavior of the raycast. ===Return value=== *'''{{RageType|Object}}''' — Returns an object containing information about the hit result. ==Syntax== <syntaxhighlight l...")
- 13:59, 14 March 2025 Basinger talk contribs created page File:The-shocker-icon.png
- 13:59, 14 March 2025 Basinger talk contribs uploaded File:The-shocker-icon.png
- 13:47, 14 March 2025 Basinger talk contribs created page File:The-shocker-icon.webp
- 13:47, 14 March 2025 Basinger talk contribs uploaded File:The-shocker-icon.webp
- 13:16, 24 February 2025 Demonhunter8878 talk contribs created page User:Demonhunter8878 (Created page with "tester")
- 21:55, 1 February 2025 Shr0x talk contribs created page PauseMenuItemChange (Created page with "{{ClientsideEvent}} {{JSContainer| ===Parameters=== *'''itemHash:''' {{RageType|number}} *'''value:''' {{RageType|number}} *'''oldValue:''' {{RageType|number}} ==Syntax== <syntaxhighlight lang="javascript"> mp.events.add("pauseMenuItemChange", (itemHash, value, oldValue) => { // Your code here }); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> }} ==See also== {{Player_events}} Category:Clientside Events Category:...")
- 21:54, 1 February 2025 Shr0x talk contribs created page PauseMenuItemSelect (Created page with "{{ClientsideEvent}} {{JSContainer| ===Parameters=== *'''itemHash:''' {{RageType|number}} ==Syntax== <syntaxhighlight lang="javascript"> mp.events.add("pauseMenuItemSelect", (itemHash) => { // Your code here }); </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> ==See also== {{Player_events}} Category:Clientside Events Category:TODO: Example }}")
- 21:51, 1 February 2025 Shr0x talk contribs created page Ui::pausemenu.setItemEnabled (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''itemHash:''' {{RageType|number}} *'''isEnabled:''' {{RageType|bool}} ===Return value=== *'''{{RageType|void}}''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.ui.pausemenu.setItemEnabled(itemHash, isEnabled) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> ==See also== {{Ui_functions_c}} Category:Clientside API Category:TODO: Example }}")
- 21:51, 1 February 2025 Shr0x talk contribs created page Ui::pausemenu.setItemValue (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''itemHash:''' {{RageType|number}} *'''value:''' {{RageType|number}} ===Return value=== *'''{{RageType|void}}''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.ui.pausemenu.setItemValue(itemHash, value) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> ==See also== {{Ui_functions_c}} Category:Clientside API Category:TODO: Example }}")
- 21:50, 1 February 2025 Shr0x talk contribs created page Ui::pausemenu.setItemColor (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''itemHash:''' {{RageType|number}} *'''colorIndex:''' {{RageType|number}} ===Return value=== *'''{{RageType|void}}''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.ui.pausemenu.setItemColor(itemHash, colorIndex) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> ==See also== {{Ui_functions_c}} Category:Clientside API Category:TODO: Example }}")
- 21:50, 1 February 2025 Shr0x talk contribs created page Ui::pausemenu.setItemTicksVisible (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''itemHash:''' {{RageType|number}} *'''isVisible:''' {{RageType|bool}} ===Return value=== *'''{{RageType|void}}''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.ui.pausemenu.setItemTicksVisible(itemHash, isVisible) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> ==See also== {{Ui_functions_c}} Category:Clientside API Category:TODO: Example }}")
- 21:48, 1 February 2025 Shr0x talk contribs created page Ui::pausemenu.setItemList (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''itemHash:''' {{RageType|number}} *'''values:''' {{RageType|Array<string>}} ===Return value=== *'''{{RageType|void}}''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.ui.pausemenu.setItemList(itemHash, values) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> ==See also== {{Ui_functions_c}} Category:Clientside API Category:TODO: Example }}")
- 21:48, 1 February 2025 Shr0x talk contribs created page Ui::pausemenu.setItemRange (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''itemHash:''' {{RageType|number}} *'''rangeFrom:''' {{RageType|number}} *'''rangeTo:''' {{RageType|number}} ===Return value=== *'''{{RageType|void}}''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.ui.pausemenu.setItemRange(itemHash, rangeFrom, rangeTo) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> ==See also== {{Ui_functions_c}} Category:Client...")
- 21:48, 1 February 2025 Shr0x talk contribs created page Ui::pausemenu.setItemText (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''itemHash:''' {{RageType|number}} *'''text:''' {{RageType|string}} ===Return value=== *'''{{RageType|void}}''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.ui.pausemenu.setItemText(itemHash, text) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> ==See also== {{Ui_functions_c}} Category:Clientside API Category:TODO: Example }}")
- 21:47, 1 February 2025 Shr0x talk contribs created page Ui::pausemenu.setScreenHeader (Created page with "{{ClientsideJsFunction}} {{JSContainer| ===Required Params=== *'''screenHash:''' {{RageType|number}} *'''header:''' {{RageType|string}} ===Return value=== *'''{{RageType|void}}''' ==Syntax== <syntaxhighlight lang="javascript"> mp.game.ui.pausemenu.setScreenHeader(screenHash, header) </syntaxhighlight> ==Example== <syntaxhighlight lang="javascript"> //todo </syntaxhighlight> ==See also== {{Ui_functions_c}} Category:Clientside API Category:TODO: Example }}")