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
local function hasLoaded(fn, type, request, limit) local timeout = limit or 100 while not fn(request) do Wait(0) timeout -= 1 <<<----- be should "timeout = timeout - 1" or not? if timeout < 1 then return print(('Unable to load %s after %s ticks (%s)'):format(type, limit or 100, request)) end end return request end
The text was updated successfully, but these errors were encountered:
I'm not sure if it's working properly. But I just saw the snytax, it's weird. 🙏
Sorry, something went wrong.
@NRTnarathip it might be weird to you but this is valid syntax in cfx lua 5.4.4 https://github.com/citizenfx/lua/blob/luaglm-dev/cfx/README.md#power-patches
wow nice thank's bro i just newbie✌️✌️
No branches or pull requests
The text was updated successfully, but these errors were encountered: