ReDK11L Posted March 22, 2014 Share Posted March 22, 2014 Olá galerinha, sou novo em Lua/MTA. Estou tentando fazer um scripting de teste! Estou chamando uma função do Cliente, pelo Servidor. Mais quando eu chamo, A função do cliente não é executada! Segue o código! --Server function entrouFunctions() triggerClientEvent ( "fucsEntrou", source) end addEventHandler( "onPlayerJoin", getRootElement(), entrouFunctions) --Cliente function displayEntrou() outputChatBox(".......") end addEvent("fucsEntrou", true) addEventHandler("fucsEntrou", root, displayEntrou) Desde já, Agradeço a ajuda a Comunidade! Link to comment
Reggae Posted March 23, 2014 Share Posted March 23, 2014 (edited) x Edited March 23, 2014 by Guest Link to comment
manawydan Posted March 23, 2014 Share Posted March 23, 2014 não vi erro no seu codigo, use /debugscript 3 no seu server para ver os possiveis erros. tentei isso no server se quiser manda a mensagem apenas pro jogador que entrou no server. function entrouFunctions() triggerClientEvent ( source,"fucsEntrou", source) end addEventHandler( "onPlayerJoin", getRootElement(), entrouFunctions) ja que o primeiro arguemento é para quem o evento vai ser mandado. Link to comment
ReDK11L Posted March 23, 2014 Author Share Posted March 23, 2014 @manawydan, Obrigado! Mais estou fazendo de outro modo! Obrigado pela ajuda de todos. 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