Postado Fevereiro 12, 2018 7 anos Diga em poucas palavras a base utilizada (Nome do servidor ou nome do website). Ex. TFS 1.3; Base: Qual erro está surgindo/O que você procura? O scirpt ta funcionando perfeitamente porém eu queria uma mensagem de "Melhor Servidor" ou algo do tipo quando o player andasse sobre o item. Você tem o código disponível? Se tiver publique-o aqui: só adicionar o actionID no sofa, pelo RME. <movevent event="StepIn" actionid="23239" script="testtile.lua" /> function onStepIn(cid, item, position, fromPosition) if not isPlayer(cid) then return true end if getPlayerLevel(cid) > 1 then doSendMagicEffect(position, 36) end return true end Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui.
Postado Fevereiro 12, 2018 7 anos function onStepIn(cid, item, position, fromPosition) if not isPlayer(cid) then return true end if getPlayerLevel(cid) > 1 then doSendMagicEffect(position, 36) doPlayerSay(cid, "Melhor Servidor", TALKTYPE_MONSTER_SAY) end return true end No signature.
Postado Fevereiro 12, 2018 7 anos Autor 2 minutos atrás, egyptPOWER disse: function onStepIn(cid, item, position, fromPosition) if not isPlayer(cid) then return true end if getPlayerLevel(cid) > 1 then doSendMagicEffect(position, 36) doPlayerSay(cid, "Melhor Servidor", TALKTYPE_MONSTER_SAY) end return true end Não funcionou acabei de testa, quero pra servidor OTX do maluco.
Postado Fevereiro 12, 2018 7 anos function onStepIn(player, item, position, fromPosition) if not player:isPlayer() then return true end if player:getLevel() > 1 then player:getPosition():sendMagicEffect(36) player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "Bem-vindo(a)!") end return true end
Postado Fevereiro 12, 2018 7 anos Autor Esse script que eu passei ta certo ele so da erro na mensagem que não aparece
Participe da conversa
Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.