ArthurScr Posted May 28, 2020 Share Posted May 28, 2020 Olá, queria fazer um script simples que toda vez quando alguém entrar e já tiver conta aparecer um aviso no outputChatBox com a conta registrada naquele serial, mas a função getAccountsBySerial retorna uma tabela e eu não sei como fazer para transformar a tabela em texto ,o serve já tem um esquema de uma conta por serial. function getContas ( ) local conta = getAccountsBySerial(getPlayerSerial( source )) if #conta = 1 then for i, conta in ipairs(conta) do outputChatBox (conta, source, 255, 255, 255 ) end end end addEventHandler ( "onPlayerJoin", getRootElement(), getContas) Link to comment
ArthurScr Posted May 28, 2020 Author Share Posted May 28, 2020 Consegui fazer, mas invés de retornar o nome da Conta, retornou isso : userdata: 020000D5 Link to comment
Other Languages Moderators Lord Henry Posted May 29, 2020 Other Languages Moderators Share Posted May 29, 2020 Faltou usar getAccountName 1 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