Jump to content

[Editbox DX] Enviar Informações a uma function [RESOLVIDO]


Recommended Posts

Olá Galera

Bom, eu estou criando um painel de login em DX, mas eu não sei quais funções usar para fazer um Editbox em DX, alguém ai poderia me ajudar a fazer.? E eu queria mandar as informações desse Editbox para uma função... (de se logar ou registrar)

Agradeço desde já.

Eu fiz isto e as coisas que a pessoa aparecem normalmente

user1 = guiGetText (EditUser)  
        pass1 = guiGetText (EditPass) 
        showCursor (true) 
        if user1 then 
        dxDrawText(user1, 595, 341, 770, 369, tocolor(0, 0, 0, 215), 1.20, "default", "center", "center", false, false, false, false, false) 
        if pass1 then 
        dxDrawText(pass1, 595, 415, 770, 443, tocolor(0, 0, 0, 215), 1.20, "default", "center", "center", false, false, false, false, false) 

Mas como eu disse acima eu quero mandar as informações do user1 e pass1 para uma função, tipo esta

function reg (_,state) 
if registro == true then 
if state == "down" then 
if isCursorOnElement (596, 465, 173, 28) then 
local usernamedrx = guiGetText(user1) 
local passworddrx = guiGetText(pass1) 
if usernamedrx ~= "" and passworddrx ~= "" then 
triggerServerEvent("register",getLocalPlayer(),getLocalPlayer(),usernamedrx,passworddrx) 
end 
end 
end 
end 
end 
addEventHandler ("onClientClick", getRootElement(), reg) 

Alguém ajuda porfavor :cry: ?

Edited by Guest
Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...