TadeoShakur Posted March 26, 2016 Share Posted March 26, 2016 That's my 3° post here My ask is: How to hide the chat while the people is in login panel?? I've a login panel in my server, my username start with ''t'' and always i press it, i write my username in mainchat I can hide the chat while the people is in login panel?? THANKS GUYS Link to comment
..:D&G:.. Posted March 26, 2016 Share Posted March 26, 2016 showChat(false) -- hide chat showChat(true) -- show chat or use guiSetInputMode("no_binds_when_editing") Link to comment
TadeoShakur Posted March 26, 2016 Author Share Posted March 26, 2016 --[[---------------------------------------------------- -- server script main -- @author Banex -- @update 25/03/2016 ----------------------------------------------------]]-- 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) 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