Ir para conteúdo

SkyTime

Campones
  • Total de itens

    20
  • Registro em

  • Última visita

Tudo que SkyTime postou

  1. SkyTime

    [Monsters]Pokémons.

    Servidor utilizado: ~ Protocolo: 8.54 Pokemon Descrição: Olá pessoal. Estou criando novamente outro tópico com quase o mesmo intuito de outro que criei(que já resolvi), mas esse eu estou mais complicado ainda. É o seguinte, adicionei novos shinys no meu server, mas contém erro no corpse, segue a imagem: O look do corpo fica assim. Depois que o corpo some, o item que estava no look fica lá. É como se a sprite estivesse funcionando, mas aparece outra sprite por baixo como podem ver. Já mexi no xml dos items, no corpse do shiny blastoise e nada, coloquei até no catch e nada. Depois que o corpo some: Espero que me ajudem, preciso urgentemente da ajuda de vocês, obrigado e até breve.
  2. Olá pessoal. Uso o server Pokemon EX 2.0, e estou com uma dúvida aqui. Uns dias atrás adicionei alguns shinys no server, todas as sprites estão funcionando, só que os corpses não. Eu abro o DatEditor, pego o ItemType do corpse do shiny morto e coloco no corpse do pokemon no script do mesmo, só que quando o mesmo morre, aparece um item ao invés do corpse. Só que o ItemType está certo, tanto no DatEditor quanto no corpse do pokémon. REP+ pra quem ajudar..
  3. Obrigado REP + Por hoje meus REP's acabaram, amanhã eu volto aqui.
  4. Olá pessoal. Estou com um otserver de poketibia, mas o surf não está pegando, eu dou Use With no order e em seguida na borda, e o pokémon só se move. Não sei se é no script, ou no mapa. Versão: 8.54 Servidor utilizado: Pokemon EX 2.0 Mas aí vai o script: local poke = {'Poliwag', 'Poliwhirl', 'Seaking', 'Dewgong', 'Blastoise', 'Tentacruel', 'Lapras', 'Gyarados', 'Shiny Gyarados', 'Omastar', 'Kabutops', 'Vaporeon', 'Staryu', 'Starmie', 'Goldeen', 'Seadra', 'Golduck', 'Squirtle', 'Wartortle', 'Tentacool', 'Snorlax', 'Poliwrath'} local flie = {'4820', '4821', '4822', '4823', '4824', '4825'} local surf = { ["Poliwag"] = {lookType=278, speed = 320}, ["Poliwhirl"] = {lookType=137, speed = 480}, ["Seaking"] = {lookType=269, speed = 520}, ["Dewgong"] = {lookType=183, speed = 700}, ["Blastoise"] = {lookType=184, speed = 850}, ["Tentacruel"] = {lookType=185, speed = 750}, ["Lapras"] = {lookType=186, speed = 960}, ["Gyarados"] = {lookType=187, speed = 1050}, ["Omastar"] = {lookType=188, speed = 680}, ["Kabutops"] = {lookType=189, speed = 840}, ["Poliwrath"] = {lookType=190, speed = 680}, ["Vaporeon"] = {lookType=191, speed = 800}, ["Staryu"] = {lookType=266, speed = 385}, ["Starmie"] = {lookType=267, speed = 685}, ["Goldeen"] = {lookType=268, speed = 355}, ["Seadra"] = {lookType=270, speed = 655}, ["Golduck"] = {lookType=271, speed = 760}, ["Squirtle"] = {lookType=273, speed = 365}, ["Wartortle"] = {lookType=275, speed = 605}, ["Tentacool"] = {lookType=277, speed = 340}, ["Snorlax"] = {lookType=300, speed = 500}, ["Shiny Gyarados"] = {lookType=529, speed = 1500}, } function onStepIn(cid, item, position, fromPosition) if not isPlayer(cid) and not isPremium(cid) then -- tire o primeiro not, atras do isPlayer para ativar o premium doTeleportThing(cid, fromPosition, false) doPlayerSendCancel(cid, "Only premium members are allowed to surf.") return true end if getCreatureOutfit(cid).lookType == 316 then doSendMagicEffect(fromPosition, 136) end if not isPlayer(cid) then doTeleportThing(cid, fromPosition, false) return true end if getPlayerStorageValue(cid, 63215) ~= 1 and getPlayerStorageValue(cid, 17000) <= 0 then if #getCreatureSummons(cid) == 0 then doPlayerSendCancel(cid, "You need a pokemon to surf.") doTeleportThing(cid, fromPosition, false) else if (not isInArray(poke, getCreatureName(getCreatureSummons(cid)[1]))) then doPlayerSendCancel(cid, "This pokemon cannot surf.") doTeleportThing(cid, fromPosition, false) return true end end end if #getCreatureSummons(cid) >= 1 and isInArray(poke, getCreatureName(getCreatureSummons(cid)[1])) and getPlayerStorageValue(cid, 63215) ~= 1 and getPlayerStorageValue(cid, 17000) <= 0 then doSetCreatureOutfit(cid, surf[getCreatureName(getCreatureSummons(cid)[1])], -1) doCreatureSay(cid, ""..getCreatureName(getCreatureSummons(cid)[1])..", lets surf!", 1) doChangeSpeed(cid, -(getCreatureSpeed(cid))) doChangeSpeed(cid, surf[getCreatureName(getCreatureSummons(cid)[1])].speed) setPlayerStorageValue(cid, 61209, getCreatureMaxHealth(getCreatureSummons(cid)[1])) setPlayerStorageValue(cid, 61210, getCreatureHealth(getCreatureSummons(cid)[1])) doRemoveCreature(getCreatureSummons(cid)[1]) addEvent(setPlayerStorageValue, 100, cid, 63215, 1) end if getPlayerStorageValue(cid, 63215) == 1 then if getCreatureLookDir(cid) == 0 then doSendMagicEffect(fromPosition, 33) elseif getCreatureLookDir(cid) == 1 then doSendMagicEffect(fromPosition, 49) elseif getCreatureLookDir(cid) == 2 then doSendMagicEffect(fromPosition, 30) elseif getCreatureLookDir(cid) == 3 then doSendMagicEffect(fromPosition, 51) end end if getPlayerStorageValue(cid, 17000) >= 1 then if not isInArray(flie, getTileInfo(fromPosition).itemid) then return true end if getCreatureLookDir(cid) == 0 then doSendMagicEffect(fromPosition, 33) elseif getCreatureLookDir(cid) == 1 then doSendMagicEffect(fromPosition, 49) elseif getCreatureLookDir(cid) == 2 then doSendMagicEffect(fromPosition, 30) elseif getCreatureLookDir(cid) == 3 then doSendMagicEffect(fromPosition, 51) end end return true end function onStepOut(cid, item, position, fromPosition) if not isInArray({4820, 4821, 4822, 4823, 4824, 4825}, getTileThingByPos(getThingPos(cid)).itemid) then setPlayerGroupId(cid, 1) end return true end E o surf cancel: local poke = {'Poliwag', 'Poliwhirl', 'Seaking', 'Dewgong', 'Blastoise', 'Tentacruel', 'Lapras', 'Gyarados', 'Shiny Gyarados', 'Omastar', 'Kabutops', 'Vaporeon', 'Staryu', 'Starmie', 'Goldeen', 'Seadra', 'Golduck', 'Squirtle', 'Wartortle', 'Tentacool', 'Snorlax', 'Poliwrath'} local surf = { ["Poliwag"] = {lookType=278, speed = 285}, ["Poliwhirl"] = {lookType=137, speed = 480}, ["Seaking"] = {lookType=269, speed = 520}, ["Dewgong"] = {lookType=183, speed = 700}, ["Blastoise"] = {lookType=184, speed = 850}, ["Tentacruel"] = {lookType=185, speed = 750}, ["Lapras"] = {lookType=186, speed = 960}, ["Gyarados"] = {lookType=187, speed = 1050}, ["Omastar"] = {lookType=188, speed = 680}, ["Kabutops"] = {lookType=189, speed = 840}, ["Poliwrath"] = {lookType=190, speed = 680}, ["Vaporeon"] = {lookType=191, speed = 800}, ["Staryu"] = {lookType=266, speed = 385}, ["Starmie"] = {lookType=267, speed = 685}, ["Goldeen"] = {lookType=268, speed = 355}, ["Seadra"] = {lookType=270, speed = 655}, ["Golduck"] = {lookType=271, speed = 760}, ["Squirtle"] = {lookType=273, speed = 365}, ["Wartortle"] = {lookType=275, speed = 605}, ["Tentacool"] = {lookType=277, speed = 340}, ["Snorlax"] = {lookType=300, speed = 500}, ["Shiny Gyarados"] = {lookType=529, speed = 1500}, } function onStepIn(cid, item, position, fromPosition) if getPlayerStorageValue(cid, 17000) >= 1 then return true end if getPlayerStorageValue(cid, 63215) >= 1 then doChangeSpeed(cid, -(getCreatureSpeed(cid))) doChangeSpeed(cid, 250) doRemoveCondition(cid, CONDITION_OUTFIT) setPlayerStorageValue(cid, 63215, 0) local item = getPlayerSlotItem(cid, 8) doCreatureSay(cid, "" .. getItemAttribute(item.uid, "poke"):match("This is (.-)'s pokeball.")..", Im tired of surfing!", 1) pk = doSummonCreature(getItemAttribute(item.uid, "poke"):match("This is (.-)'s pokeball."), getCreaturePosition(cid)) doConvinceCreature(cid, pk) registerCreatureEvent(pk, "DiePoke") registerCreatureEvent(pk, "Exp") setCreatureMaxHealth(pk, (getPlayerStorageValue(cid, 61209))) doCreatureAddHealth(pk, (getPlayerStorageValue(cid, 61209))) doCreatureAddHealth(pk, (getPlayerStorageValue(cid, 61210))-(getPlayerStorageValue(cid, 61209))) return true end end Lembrando que os dois estão em Data/Movements/Scripts. Até breve.
  5. Vou testar, já edito (y' Edit Infelizmente não funcionou, mesmo assim, REP+. Caso alguém possa ajudar. Edit² Funcionou u-u' É que estava usando a conta de GOD. Obrigado.
  6. Olá Tipo do script:Action Versão: 8.54 Servidor utilizado: Pokemon EX 2.0 Informações: Eu queria um script em que só poderia carregar 6 pokemons na bag, caso um 7ª pokémon fosse capturado, o mesmo iria para o DP. Se possível, o mesmo com as box's(1,2,3,4). Preciso urgentemente, Até breve.
  7. Ainda não testei, pois ainda estou fazendo o mapa pra aí sim ir pros pokémons, mas, obrigado pela ajuda. Qualquer coisa eu volto aqui. Rep + aBRaços.
  8. Olá pessoal. Bom, estou montando um pokeserver próprio, mas, estou com uma dúvida que muitos eu acho, que estão na hora de começar a criar o server. Quando importo um monstro de outro ot server, o monstro não aparece na forma de um pokémon. Aparece na forma de um montro de Tibia. Creio eu que, esse problema seja simples, porém, está fazendo a minha cabeça ficar confusa. Espero que alguém ajude, desde de já, agradeço. ...
  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...