Postado Julho 29, 2019 6 anos PRECISO DE AJUDAR PARA CRIAR UM COMANDO DE TELEPORTE APENAS PARA VIPS EXEMPLO:/areavip1,2,3 etc
Postado Julho 30, 2019 6 anos Este tópico foi movido para a área correta. Esta é uma mensagem automática!Pedimos que leia as regras do fórum! Spoiler This topic has been moved to the correct area. This is an automated message!Please read the forum rules.
Postado Julho 30, 2019 6 anos TFS 0.3.7 Spoiler local places = { [1] = {x = 1001, y = 1000, z = 7}, [2] = {x = 1002, y = 1000, z = 7}, [3] = {x = 1003, y = 1000, z = 7} } function onSay(cid, words, param) if not isPremium(cid) then doPlayerSendCancel(cid, 'Somente jogadores premium podem utilizar este comando.') return true end local number = tonumber(param) if not number then doPlayerSendCancel(cid, 'Infome um número válido.') return true end local place = places[number] if not place then doPlayerSendCancel(cid, 'Lugar inexistente.') return true end doTeleportThing(cid, place) doSendMagicEffect(place, CONST_ME_TELEPORT) return true end TFS 1.X Spoiler local places = { [1] = Position(1001, 1000, 7), [2] = Position(1002, 1000, 7), [3] = Position(1003, 1000, 7) } function onSay(player, words, param) if not player:isPremium() then player:sendCancelMessage('Somente jogadores premium podem utilizar este comando.') return false end local number = tonumber(param) if not number then player:sendCancelMessage('Infome um número válido.') return false end local place = places[number] if not place then player:sendCancelMessage('Lugar inexistente.') return false end player:teleportTo(place) place:sendMagicEffect(CONST_ME_TELEPORT) return false end Editado Julho 30, 2019 6 anos por Lyu param:lower() não necessário! (veja o histórico de edições)
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.