We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
elseif Config.Minigame == "ps-ui" then exports['ps-ui']:Circle(function(success) if success then TriggerEvent("QBCore:Notify", Loc[Config.Lan].success["get_trash"], "success") startSearching(GetEntityCoords(dumpster)) searched[i+1] = dumpster else TriggerEvent("QBCore:Notify", Loc[Config.Lan].error["nothing"], "error") searched[i+1] = dumpster ClearPedTasks(PlayerPedId()) end end, 2, 15) -- NumberOfCircles, MS
Above Code needs to be replaced with below:
elseif Config.Minigame == "ps-ui" then exports['ps-ui']:Circle(function(success) if success then TriggerEvent("QBCore:Notify", Loc[Config.Lan].success["get_scrap"], "success") startSearching(GetEntityCoords(scrapped)) searched[i+1] = scrapped else TriggerEvent("QBCore:Notify", Loc[Config.Lan].error["nothing"], "error") searched[i+1] = scrapped ClearPedTasks(PlayerPedId()) end end, 2, 15) -- NumberOfCircles, MS
The text was updated successfully, but these errors were encountered:
In client\scrap.lua
Sorry, something went wrong.
No branches or pull requests
Above Code needs to be replaced with below:
The text was updated successfully, but these errors were encountered: