Skip to content

Commit d4a77b5

Browse files
committed
Initial commit
1 parent 67d72d7 commit d4a77b5

17 files changed

Lines changed: 907 additions & 1 deletion

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
1-
# ultra-keypackhack
1+
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.
2+
3+
### Usage example:
4+
Following is a client side code:
5+
```
6+
RegisterCommand('starthack', function()
7+
TriggerEvent('ultra-keypadhack', 6, 40, function(outcome, reason)
8+
if outcome == 0 then
9+
print('Hack failed', reason)
10+
elseif outcome == 1 then
11+
print('Hack successful')
12+
elseif outcome == 2 then
13+
print('Timed out')
14+
elseif outcome == -1 then
15+
print('Error occured',reason)
16+
end
17+
end)
18+
end)
19+
```

0 commit comments

Comments
 (0)