Tony Scripter Posted August 12, 2021 Share Posted August 12, 2021 Spoiler function loginAccount(username, password) local source = client dbQuery( function(qh) local result = dbPoll(qh, 0) if #result > 0 then triggerClientEvent(source, "renderPanelUnity", source) else triggerClientEvent(source, "Notify", source, "Usuário ou senha incorretos.", "error") end end, connection, "SELECT * FROM sm_accounts WHERE username = ? AND password = ?", username, password) end addEvent("loginAccount", true) addEventHandler("loginAccount", getRootElement(), loginAccount) Olá estou com alguns problemas na parte do triggerClientEvent(source, "Notify, source, "Usuário ou senha incorretos.", "error) quando executado ele aparece 2 notificações, obs: não é o script de notificação que está com o erro pois outras notificações estão normais, quem conseguir me ajudar agradeço Link to comment
Blaack Posted August 12, 2021 Share Posted August 12, 2021 1 hour ago, Tony Scripter said: Reveal hidden contents function loginAccount(username, password) local source = client dbQuery( function(qh) local result = dbPoll(qh, 0) if #result > 0 then triggerClientEvent(source, "renderPanelUnity", source) else triggerClientEvent(source, "Notify", source, "Usuário ou senha incorretos.", "error") end end, connection, "SELECT * FROM sm_accounts WHERE username = ? AND password = ?", username, password) end addEvent("loginAccount", true) addEventHandler("loginAccount", getRootElement(), loginAccount) Olá estou com alguns problemas na parte do triggerClientEvent(source, "Notify, source, "Usuário ou senha incorretos.", "error) quando executado ele aparece 2 notificações, obs: não é o script de notificação que está com o erro pois outras notificações estão normais, quem conseguir me ajudar agradeço Não há dois mods que contém esse evento? e quantas vezes esse dbQuery está passando? pode ser que exista dois valores la... Link to comment
Boechat Posted August 12, 2021 Share Posted August 12, 2021 Talvez você esteja chamando 2x o evento / função loginAccount Link to comment
CastiaL Posted August 12, 2021 Share Posted August 12, 2021 triggerClientEvent(source, "Notify", source, "Usuário ou senha incorretos.", "error") try this Link to comment
Tony Scripter Posted August 12, 2021 Author Share Posted August 12, 2021 Consegui arrumar pessoal era um erro meu bem simples apenas coloquei uma verificação de tempo no uso da função e funcionou perfeitamente 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