Jump to content

help


China_Yann

Recommended Posts

Posted

i don't know how to do,i'm a green hand,please help me ,thank you!

"triggered serverside event onRquestLogin ,but event is not added serverside"

  
function PlayerLogin(username,password) 
    if username == "" then 
        return triggerClientEvent(source,"login_text",source,"error","Coloque seu nome de usuario!") 
    end 
    if password == "" then 
        return triggerClientEvent(source,"login_text",source,"error","Coloque sua senha!") 
    end 
    local account = getAccount ( username, password ) 
    if account == false then 
        return triggerClientEvent(source,"login_text",source,"error","Nome de usuario ou senha incorretos!") 
    end 
    logIn(source, account, password) 
    triggerClientEvent(source,"onLogin",source) 
    triggerClientEvent(source,"saveLoginToXML",source,username) 
    triggerClientEvent(source,"login_text",source,"sucess","Logado com sucesso!") 
end 
addEvent("onRequestLogin",true) 
addEventHandler("onRequestLogin",getRootElement(),PlayerLogin) 
  

  
function registerPlayer(username,password) 
    if username == "" then 
        return triggerClientEvent(source,"login_text",source,"error","Coloque seu nome de usuario!") 
    end 
    if password == "" then 
        return triggerClientEvent(source,"login_text",source,"error","Coloque sua senha!") 
    end 
    local account = getAccount (username,password) 
    if account then 
        return triggerClientEvent(source,"login_text",source,"error","Este nome de usuario já esta sendo usado!") 
    end 
    local accountAdded = addAccount(tostring(username),tostring(password)) 
    if not accountAdded then 
        return triggerClientEvent(source,"login_text",source,"error","Erro! Tente novamente com um novo nome de usuario ou senha!") 
    end 
    outputChatBox ("[usuario: #FFFFFF" .. username .. " #00FF00| Senha: #FFFFFF" .. password .. "#00FF00 ]",source,255,255,255,true) 
    triggerClientEvent(source,"onRegister",source) 
    triggerClientEvent(source,"login_text",source,"sucess","Conta criada com sucesso!") 
end 
addEvent("onRequestRegister",true) 
addEventHandler("onRequestRegister",getRootElement(),registerPlayer) 
  

Posted

but they are in seprate files theese 2 server side scripts? If so you havent included them in meta.xml file. Or just give full code.

  • Moderators
Posted
"triggered serverside event onRquestLogin ,but event is not added serverside"

If this is the exact error you get, then you forgot an 'e' when you call triggerServerEvent in client/main.lua.

It's onRequestLogin, not onRquestLogin.

  • 2 weeks later...
Posted
"triggered serverside event onRquestLogin ,but event is not added serverside"

If this is the exact error you get, then you forgot an 'e' when you call triggerServerEvent in client/main.lua.

It's onRequestLogin, not onRquestLogin.

Thank you ,i've already finnished,add " >" to admin group in acl! Thank you so much

Posted
"triggered serverside event onRquestLogin ,but event is not added serverside"

If this is the exact error you get, then you forgot an 'e' when you call triggerServerEvent in client/main.lua.

It's onRequestLogin, not onRquestLogin.

Thank you ,i've already finnished,add " >" to admin group in acl! Thank you so much

Posted
but they are in seprate files theese 2 server side scripts? If so you havent included them in meta.xml file. Or just give full code.

Thank you ,i've already finnished,add " " to admin group in acl! Thank you so much

Posted
but they are in seprate files theese 2 server side scripts? If so you havent included them in meta.xml file. Or just give full code.

Thank you ,i've already finnished,add " " to admin group in acl! Thank you so much

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...