mur4i / mri_Qminigames

A list of minigame for fivem

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ran Minigames

A collection of minigame (will expand more)

Memory Card Minigame

MemoryMinigame

---time is optional, time is in seconds
--[[
    return: boolean
]]
exports['ran-minigames']:MemoryCard(time)

-- Example
local success = exports['ran-minigames']:MemoryCard(360)
if success then
    --your logic here
end

Mine Sweep Minigame

Usually use it in a robbery script like my store robbery

minesweep

--[[
    money, bomb, bombfail are required.
    money: number; (Maximum money amount to get)
    bomb: number; (How much bomb the minigame has)
    bombfail: number; (How much bomb limit we get to force cash out)
    position?: "left" | "right" | "center"
]]
exports['ran-minigames']:MineSweep(money, bomb, bombfail, position)

-- EXAMPLE
local success = exports['ran-minigames']:MineSweep(12000, 12, 3, "center")
-- Will return amount of money we get from minigame
print(success)

Terminal Text

I don't really know what to name this one šŸ„², but the way it work is you need to find the same text on the right, in example I have to find UX and has a content HACK, 404, CLI,... ETC

terminal

--[[
    WILL RETURN A BOOLEAN
]]
 exports['ran-minigames']:OpenTerminal()

 -- EXAMPLE
 local success = exports['ran-minigames']:OpenTerminal()

Support

License

Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.

About

A list of minigame for fivem

License:Other


Languages

Language:Svelte 73.9%Language:TypeScript 13.4%Language:Lua 5.9%Language:HTML 3.7%Language:JavaScript 2.4%Language:CSS 0.8%