Acabei de crear meu ot
todo e mto bom
so Teleport nao funciona em ninhum pokemon
ja tentei com
h "city
!h "city
/h "city
ninhum funciona
tmpoco funciona
!online
algum pode ajudar ???
Acabei de crear meu ot
todo e mto bom
so Teleport nao funciona em ninhum pokemon
ja tentei com
h "city
!h "city
/h "city
ninhum funciona
tmpoco funciona
!online
algum pode ajudar ???
Creio que você esteja usando o PDA e apareça uma mensagem.
É igual o PXG, para se teleportar, você deve falar hi para a Nurse
da cidade que você deseja se teleportar, para liberar o teleporte.
Por exemplo, você está em Saffron, e quer se teleportar para Cerulean, você
teria que ir até Cerulean a pé, falar hi para a Nurse e quando você quiser ir para
lá novamente, você poderia usar o teleporte.
@LuckinhaSan
nao e asim, nao da pra falar teleport,
nao fala error ,nem nada so nao da
e tampoco
!online
@LuckinhaSan
nao e asim, nao da pra falar teleport,
nao fala error ,nem nada so nao da
e tampoco
!online
Tente usar /commands, e procure algum comando de teleporte.
Qual server você usa?
@up
to usando pokemon dash advance
8.54
mais acho qe nao tem teleports activado ou nao sei qual e problema
surf 100%
fly 100%
blink 100%
etc...
mais teleport nao da ninhum pokemon
e nao diz "precisa premium"
nao diz nda!
acho qe nao tem activado
Encontrei Script
mais nao sei onde tem Error
vo deixar pra vc ver
<talkaction words="!h" event="script" value="tele.lua"/>
<talkaction words="/h" event="script" value="tele.lua"/>
<talkaction words="h" event="script" filter="quotation" value="tele.lua"/>
iso e Talkaction
e script tele.lua
local poke = {'Abra', 'Kadabra', 'Alakazam', 'Drowzee', 'Hypno', 'Mr. Mime', 'Porygon', 'Porygon2', "Shiny Abra","Shiny Alakazam", "Shiny Hypno", "Jynx", "Shiny Jynx", "Misdreavus"}local etele = 9499
local cdtele = pokemons[getCreatureName(getCreatureSummons(cid)[1])] or 1800
local config = {
premium = false, -- se precisa ser premium account (true or false)
battle = true -- se precisa estar sem battle (true). Se colocar false, poderá usar teleport no meio de batalhas
}
local places = {
[1] = {name = "Cerulean", id = 1, sto = 897529},
[2] = {name = "Saffron", id = 2, sto = 897530},
[3] = {name = "Lavender", id = 3, sto = 897532},
[4] = {name = "Celadon", id = 4, sto = 897533},
[5] = {name = "Pewter", id = 5, sto = 897534},
[6] = {name = "Viridian", id = 6, sto = 897535}, --alterado v1.7 sistema q precisa flar com a nurse do lugar pra poder da TP pra la...
[7] = {name = "Vermilion", id = 7, sto = 897536},
[8] = {name = "Fuchsia", id = 8, sto = 897537},
[9] = {name = "Cinnabar", id = 9, sto = 897538},
[10] = {name ="Snow", id = 10, sto = 897539},
[11] = {name = "Golden", id = 11, sto = 897540},
}
local pokemons = {
["Abra"] = 2100, --35 min
["Kadabra"] = 1500, --25 min
["Alakazam"] = 1200, --20 min
["Drowzee"] = 2100,
["Hypno"] = 1500,
["Mr. Mime"] = 1200,
["Porygon"] = 1200,
["Porygon2"] = 1500,
["Shiny Abra"] = 900,
["Shiny Alakazam"] = 600,
["Shiny Hypno"] = 600,
["Jynx"] = 1500,
["Shiny Jynx"] = 1200,
["Misdreavus"] = 1500,
}
function onSay(cid, words, param)
if #getCreatureSummons(cid) == 0 then
doPlayerSendCancel(cid, "You need a pokemon to use teleport.")
return true
end
if not isInArray(poke, getCreatureName(getCreatureSummons(cid)[1])) then
return 0
end
if getPlayerStorageValue(cid, 22545) == 1 then --golden arena
doPlayerSendCancel(cid, "You can't do that while the golden arena!")
return true
end
if getPlayerStorageValue(cid, 212124) >= 1 then --alterado v1.6
return doPlayerSendCancel(cid, "You can't do it with a pokemon with mind controlled!")
end
if getPlayerStorageValue(cid, 52480) >= 1 then
return doPlayerSendCancel(cid, "You can't do it while a duel!") --alterado v1.6
end
if getPlayerStorageValue(cid, 6598754) == 1 or getPlayerStorageValue(cid, 6598755) == 1 then
return doPlayerSendCancel(cid, "You can't do it while in the PVP Zone!") --alterado v1.7
end
if exhaustion.get(cid, etele) and exhaustion.get(cid, etele) > 0 then
local tempo = tonumber(exhaustion.get(cid, etele)) or 0
local min = math.floor(tempo)
doPlayerSendCancel(cid, "Your pokemon is tired, wait "..getStringmytempo(tempo).." to teleport again.")
return true
end
if config.premium and not isPremium(cid) then
doPlayerSendCancel(cid, "Only premium members are allowed to use teleport.")
return true
end
if config.battle and getCreatureCondition(cid, CONDITION_INFIGHT) then
doPlayerSendCancel(cid, "Your pokemon can't concentrate during battles.")
return true
end
if (param == '') then
local str = ""
str = str .. "Places to go :\n\nHouse\n"
for a = 1, #places do
str = str..""..places[a].name.."\n"
end
doShowTextDialog(cid, 7416, str)
return true
end
local item = getPlayerSlotItem(cid, 8)
local nome = getPokeballName(item.uid)
local summon = getCreatureSummons(cid)[1]
local lastppos = getThingPos(cid)
local lastspos = getThingPos(summon)
local telepos = {}
local myplace = ""
local townid = 0
local citySto = 0 --alterado v1.7
if string.lower(param) == "house" then
if not getHouseByPlayerGUID(getPlayerGUID(cid)) then
doPlayerSendTextMessage(cid, MESSAGE_EVENT_DEFAULT, "You don't own a house.")
return true
end
telepos = getHouseEntry(getHouseByPlayerGUID(getPlayerGUID(cid)))
myplace = "our home"
else
for x = 1, #places do
if string.find(string.lower(places[x].name), string.lower(param)) then
townid = places[x].id
myplace = places[x].name
citySto = places[x].sto or -1 --alterado v1.7
end
end
if myplace == "" then
doPlayerSendCancel(cid, "That place doesn't exist.")
return true
end
end
if myplace ~= "" and townid > 0 then
telepos = getTownTemplePosition(townid)
end
if string.lower(param) ~= "house" and citySto ~= -1 and getPlayerStorageValue(cid, citySto) <= -1 then --alterado v1.7
doPlayerSendCancel(cid, "You have to talk with nurse in this place, before you can teleport for there!")
return true
end
if getDistanceBetween(getThingPos(cid), telepos) <= 15 then
doPlayerSendCancel(cid, "You are too near to the place you want to go!")
return true
end
doSendMagicEffect(getThingPos(summon), 28)
doSendMagicEffect(getThingPos(cid), 28)
doTeleportThing(cid, telepos, false)
local pos2 = getClosestFreeTile(cid, getPosByDir(getThingPos(cid), SOUTH))
doTeleportThing(summon, pos2, false)
doSendMagicEffect(getThingPos(cid), 28)
doCreatureSay(cid, ""..nome..", teleport to "..myplace.."!", 1)
doCreatureSay(cid, ""..nome..", teleport to "..myplace.."!", 1, false, 0, lastppos)
doCreatureSay(summon, "TELEPORT!", TALKTYPE_MONSTER)
doCreatureSay(summon, "TELEPORT!", TALKTYPE_MONSTER, false, 0, lastspos)
doCreatureSetLookDir(cid, SOUTH)
doCreatureSetLookDir(summon, SOUTH)
doSendMagicEffect(getThingPos(summon), CONST_ME_TELEPORT)
if config.battle and getCreatureCondition(cid, CONDITION_INFIGHT) then
doPlayerSendCancel(cid, "Your pokemon can't concentrate during battles.")
return true
end
return true
end
@up
to usando pokemon dash advance
8.54
mais acho qe nao tem teleports activado ou nao sei qual e problema
surf 100%
fly 100%
blink 100%
etc...
mais teleport nao da ninhum pokemon
e nao diz "precisa premium"
nao diz nda!
acho qe nao tem activado
Tente usar outras versões do PDA, como a versão editada
pelo Stylo Maldoso. Você poderá encontrar mais opções de versões
atualizadas do PDA na área Servidores Derivados.
CONSEGI
AGORA SO FALTA 1 COSA!
sabe como colocar ciudade principal
pra Saffron?
sempre qe uso
/t
vai pra Cerulean
doPlayerSendCancel(cid, "You have to talk with nurse in this place, before you can teleport for there!")
Esse é o problema, tente retirar esta parte do script... Slicer me disse
uma vez que tem como desativar, só não me lembro em qual script.
Acabei de crear meu ot
todo e mto bom
so Teleport nao funciona em ninhum pokemon
ja tentei com
h "city
!h "city
/h "city
ninhum funciona
tmpoco funciona
!online
algum pode ajudmah como faço pra jogar no teu ot?
Olha tenta assim:
h"nome da cidade tudo junto ou pode ser
/h cerulean por exemplo
Acho q pega tenta ai ^^'