-
-
Notifications
You must be signed in to change notification settings - Fork 430
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(client/skillcheck): winning/losing promise resolving
- Loading branch information
1 parent
66c16b5
commit e4b3e01
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
local skillcheck | ||
|
||
function lib.skillCheck(difficulty) | ||
if skillcheck then return end | ||
skillcheck = promise:new() | ||
SetNuiFocus(true, false) | ||
SendNUIMessage({ | ||
action = 'startSkillCheck', | ||
data = difficulty | ||
}) | ||
return Citizen.Await(skillcheck) | ||
end | ||
|
||
RegisterNUICallback('skillCheckOver', function(data, cb) | ||
cb(1) | ||
skillcheck:resolve(data.success) | ||
skillcheck = nil | ||
SetNuiFocus(false, false) | ||
end) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters