π»zat-minigames_3
All these exports are client side !
Thermite
example :
RegisterCommand('Thermite', function()
exports['zat-minigames_3']:Thermite(function(success)
if success then
print('success')
else
print('fail')
end
end, 3, 3, 3, 3) -- score, rows, col, timer
end)
Terminal
example :
RegisterCommand('Terminal', function()
exports['zat-minigames_3']:Terminal(function(success)
if success then
print('success')
else
print('fail')
end
end, 3, 3, 3, 3) -- rows, col, viewtime, typetime, answerNeeded
end)
PinCracker
example :
RegisterCommand('PinCracker', function()
exports['zat-minigames_3']:PinCracker(function(success)
if success then
print('success')
else
print('fail')
end
end, 3, 3) -- pinLength, timer
end)
Last updated