minigame

Executes various minigames and skill checks.

Parameters:

  • type (string): The minigame type to execute

  • values (table): Configuration values specific to each minigame type

Returns:

  • success (boolean): true if minigame was completed successfully, false otherwise

Supported Minigame Types:

'ps-circle'

Circle progress minigame from PS-UI.

local values = {
    amount = 3,    -- Number of circles to complete
    speed = 15     -- Speed of the circle
}
local success = ps.minigame('ps-circle', values)

'ps-maze'

Maze navigation minigame from PS-UI.

local values = {
    timeLimit = 20  -- Time limit in seconds
}
local success = ps.minigame('ps-maze', values)

'ps-scrambler'

Word scramble minigame from PS-UI.

'ps-varhack'

Variable hacking minigame from PS-UI.

'ps-thermite'

Thermite cutting minigame from PS-UI.

'ox'

OX Lib skill check minigame.

Last updated