[FREE] [STANDALONE] Ran Minigames

Ran Minigames

A collection of minigame (will addmore)

Github Repo: here

All the minigame video preview is shown in my store robbery scripts

Memory Card Minigame

---time is optional, time is in minute
--[[
    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 [FREE] Ran Store Robbery | QBCore | ESX & OX Soon - #4 by RanXDD

--[[
    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 :smiling_face_with_tear:, 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

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

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

Other Scripts:

14 Likes

Looks very nice! Can’t wait to use it :heart_eyes:

Thank you so much :sparkling_heart:

Memory game timer doesn’t appear to do anything.

should be fixed now