~Sr.Victor Posted July 27, 2020 Share Posted July 27, 2020 Olá! queria colocar delay de 3 segundos em uma dashboard que tenho, devido um bug que ela tem quando fica apertando o TAB várias vezes. Link to comment
Mature Posted July 27, 2020 Share Posted July 27, 2020 (edited) 1 hour ago, ~Sr.Victor said: Olá! queria colocar delay de 3 segundos em uma dashboard que tenho, devido um bug que ela tem quando fica apertando o TAB várias vezes. Envia o código de quando abre ele por favor, ou você pode adicionar: --#Adicione isso quando o painel abrir local timerDelay function openPanel () if not isTimer(timerDelay) then --#Painel abriu timerDelay = setTimer(function() end, 3000, 1) else --#Informa que o painel não pode ser acionado no momento end end Edited July 27, 2020 by Mature Link to comment
~Sr.Victor Posted July 29, 2020 Author Share Posted July 29, 2020 bindKey("tab", "both", function() if isEventHandlerAdded("onClientRender", root, scoreboardMenu) then removeEventHandler("onClientRender", root, scoreboardMenu) destroyPed() else addEventHandler("onClientRender", root, scoreboardMenu) createModelPed() end end ) Link to comment
DNL291 Posted July 29, 2020 Share Posted July 29, 2020 O bug provavelmente ocorre por não verificar se a tecla está segurada ou foi solta. De qualquer forma, o cooldown funcionaria assim: local lastTick = getTickCount() bindKey("tab", "both", function() if (getTickCount() - lastTick) < 3000 then return end lastTick = getTickCount() if isEventHandlerAdded("onClientRender", root, scoreboardMenu) then removeEventHandler("onClientRender", root, scoreboardMenu) destroyPed() else addEventHandler("onClientRender", root, scoreboardMenu) createModelPed() end end) Link to comment
~Sr.Victor Posted July 30, 2020 Author Share Posted July 30, 2020 Testei aqui e não foi. Link to comment
DNL291 Posted July 30, 2020 Share Posted July 30, 2020 Veja o que mostra no /debugscript 3 e diga o que acontece ao tentar abrir. Ele chega a abrir como antes, sem funcionar os 3 segundos? Ou nem abre mais? Link to comment
~Sr.Victor Posted August 1, 2020 Author Share Posted August 1, 2020 (edited) No debug não aparece nada, porém não abre mais. Quer pegar meu discord para um melhor contato? Edited August 1, 2020 by ~Sr.Victor Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now