Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ultrahacx committed Jan 9, 2022
1 parent 67d72d7 commit d4a77b5
Show file tree
Hide file tree
Showing 17 changed files with 907 additions and 1 deletion.
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,19 @@
# ultra-keypackhack
Keypad hack is the recreated heist minigame from Casino DLC. Player has to remember the generated pattern and create the same pattern again within the given time limit.

### Usage example:
Following is a client side code:
```
RegisterCommand('starthack', function()
TriggerEvent('ultra-keypadhack', 6, 40, function(outcome, reason)
if outcome == 0 then
print('Hack failed', reason)
elseif outcome == 1 then
print('Hack successful')
elseif outcome == 2 then
print('Timed out')
elseif outcome == -1 then
print('Error occured',reason)
end
end)
end)
```
Loading

0 comments on commit d4a77b5

Please sign in to comment.