MediaWiki API result

This is the HTML representation of the JSON format. HTML is good for debugging, but is unsuitable for application use.

Specify the format parameter to change the output format. To see the non-HTML representation of the JSON format, set format=json.

See the complete documentation, or the API help for more information.

{
    "batchcomplete": "",
    "continue": {
        "lecontinue": "20251204000426|5581",
        "continue": "-||"
    },
    "query": {
        "logevents": [
            {
                "logid": 5591,
                "ns": 0,
                "title": "natives.createCheckpoint",
                "pageid": 4338,
                "logpage": 4338,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "ChrisGame20",
                "timestamp": "2025-12-07T22:41:28Z",
                "comment": "Created page with \"{{ScriptItem |endpoint = client |games = iv |type = function |name = natives.drawCheckpoint |parameters = float x, float y, float z, float radius, int r, int g, int b, int a |parameter1 = float x X coordinate of the checkpoint |parameter2 = float y Y coordinate of the checkpoint |parameter3 = float z Z coordinate of the checkpoint |parameter4 = float radius Radius of the checkpoint circle |parameter5 = int r Red component (0\u2013255) |parameter6 = int g Green component (0...\""
            },
            {
                "logid": 5590,
                "ns": 0,
                "title": "natives.setDisplayPlayerNameAndIcon",
                "pageid": 4337,
                "logpage": 4337,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "ChrisGame20",
                "timestamp": "2025-12-07T22:37:56Z",
                "comment": "Created page with \"{{ScriptItem |endpoint = client |games = iv |type = function |name = natives.setDisplayPlayerNameAndIcon |parameters = int playerId, bool enable |parameter1 = int playerId The player index to affect |parameter2 = bool enable True to show the name and icon, false to hide |usage = Display or hide the player\u2019s name and icon above their ped |notes =  - Requires [[natives.displayPlayerNames]] to be enabled globally - Often combined with [[natives.givePedFakeNetworkName]] to...\""
            },
            {
                "logid": 5589,
                "ns": 0,
                "title": "natives.displayPlayerNames",
                "pageid": 4336,
                "logpage": 4336,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "ChrisGame20",
                "timestamp": "2025-12-07T22:36:52Z",
                "comment": "Created page with \"{{ScriptItem |endpoint = client |games = iv |type = function |name = natives.displayPlayerNames |parameters = bool enable |parameter1 = bool enable True to show player names, false to hide them |usage = Toggle global display of player names |notes =  - Must be enabled for [[natives.setDisplayPlayerNameAndIcon]] and [[natives.givePedFakeNetworkName]] to be visible - Acts as a global switch affecting all players |return1 = void |exampleJS = natives.displayPlayerNames(true)...\""
            },
            {
                "logid": 5588,
                "ns": 0,
                "title": "natives.givePedFakeNetworkName",
                "pageid": 4335,
                "logpage": 4335,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "ChrisGame20",
                "timestamp": "2025-12-07T22:35:18Z",
                "comment": "Created page with \"{{ScriptItem |endpoint = client |games = iv |type = function |name = natives.givePedFakeNetworkName |parameters = Ped ped, string name, int r, int g, int b, int a |parameter1 = Ped ped The ped to assign the fake name to |parameter2 = string name The fake network name to display |parameter3 = int r Red component (0\u2013255) |parameter4 = int g Green component (0\u2013255) |parameter5 = int b Blue component (0\u2013255) |parameter6 = int a Alpha component (0\u2013255) |usage = Assign...\""
            },
            {
                "logid": 5587,
                "ns": 0,
                "title": "natives.getHashKey",
                "pageid": 4334,
                "logpage": 4334,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "ChrisGame20",
                "timestamp": "2025-12-04T00:16:49Z",
                "comment": "Created page with \"{{ScriptItem |endpoint = client |games = iv |type = function |name = natives.getHashKey |parameters = string name |parameter1 = string name The model or resource name to convert into a hash key (\"M_Y_COP\") |usage = Returns the hash key of a given string, typically used for models, animations, or other resources. |notes = - Commonly used before [[natives.requestModel]] to obtain the model hash - Works with ped names, vehicle names, and other resource identifiers |return1...\""
            },
            {
                "logid": 5586,
                "ns": 0,
                "title": "natives.hasModelLoaded",
                "pageid": 4333,
                "logpage": 4333,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "ChrisGame20",
                "timestamp": "2025-12-04T00:14:43Z",
                "comment": "Created page with \"{{ScriptItem |endpoint = client |games = iv |type = function |name = natives.hasModelLoaded |parameters = int modelHash |parameter1 = int modelHash The model hash to check |usage = Returns whether the specified model has finished loading into memory. |notes = - Typically used after [[natives.requestModel]] to confirm readiness - Required before calling [[natives.createChar]] or spawning vehicles |return1 = bool True if the model is loaded, false otherwise |returnFail1 =...\""
            },
            {
                "logid": 5585,
                "ns": 0,
                "title": "natives.requestModel",
                "pageid": 4332,
                "logpage": 4332,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "ChrisGame20",
                "timestamp": "2025-12-04T00:13:57Z",
                "comment": "Created page with \"{{ScriptItem |endpoint = client |games = iv |type = function |name = natives.requestModel |parameters = int modelHash |parameter1 = int modelHash The model hash to request (obtained with [[natives.getHashKey]]) |usage = Requests the specified model to be loaded into memory. |notes = - Must be called before creating a ped or vehicle with that model - Use [[natives.hasModelLoaded]] to check if the model is ready |return1 = void |returnFail1 = void |exampleJS = natives.getH...\""
            },
            {
                "logid": 5584,
                "ns": 0,
                "title": "natives.isPlayerTargettingChar",
                "pageid": 4331,
                "logpage": 4331,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "ChrisGame20",
                "timestamp": "2025-12-04T00:10:58Z",
                "comment": "Created page with \"{{ScriptItem |endpoint = client |games = iv |type = function |name = natives.isPlayerTargettingChar |parameters = int playerId, int ped |parameter1 = int playerId The local or network player ID |parameter2 = int ped The ped handle to check against |usage = Returns whether the specified player is hard-lock targeting the given ped. |notes = - Complements [[natives.isPlayerFreeAimingAtChar]] to cover both aim states - Typically polled inside [[OnDrawnHUD]] or [[OnProcess]]...\""
            },
            {
                "logid": 5583,
                "ns": 0,
                "title": "natives.isPlayerFreeAimingAtChar",
                "pageid": 4330,
                "logpage": 4330,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "ChrisGame20",
                "timestamp": "2025-12-04T00:09:39Z",
                "comment": "Created page with \"{{ScriptItem |endpoint = client |games = iv |type = function |name = natives.isPlayerFreeAimingAtChar |parameters = int playerId, int ped |parameter1 = int playerId The local or network player ID |parameter2 = int ped The ped handle to check against |usage = Returns whether the specified player is free-aiming at the given ped (without hard lock-on). |notes = - Commonly used together with [[natives.isPlayerTargettingChar]] to cover both aim states - Typically polled insid...\""
            },
            {
                "logid": 5582,
                "ns": 0,
                "title": "natives.requestAnims",
                "pageid": 4329,
                "logpage": 4329,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "ChrisGame20",
                "timestamp": "2025-12-04T00:05:29Z",
                "comment": "Created page with \"{{ScriptItem |endpoint = client |games = iv |type = function |name = natives.requestAnims |parameters = string animDict |parameter1 = string animDict The animation dictionary name to load (e.g. \"cop\") |usage = Requests the specified animation dictionary to be loaded into memory. |notes = - After requesting, use [[natives.haveAnimsLoaded]] to check if the dictionary is ready - Required before calling [[natives.taskPlayAnimWithFlags]] with animations from that dictionary |...\""
            }
        ]
    }
}