Ir para conteúdo

betofss

Membro
  • Registro em

  • Última visita

  1. betofss reagiu a uma resposta no tópico: [Action] Alavanca de Teleport
  2. Favor encerrar o tópico, falta de resposta. Erro não resolvido
  3. @Storm Já tinha tentado essa solução antes mesmo de ele me enviar desta forma, acontece que não emite erro nenhum, apenas não aparece nada. Ao invés de capturar o pokemon ou informar um erro ele apenas não faz nada retirando essa parte que você citou. Alguma outra ideia? Não sei porque está desta forma, com o nome de Nidoran mas o sistema funciona para todos os Pokemons, etc... Já estou tentando de outras formas mas ainda sem sucesso nenhum. O Erondino disse no próprio post "para alterar a forma de pegar o pokemon (vivo ou morto) é apenas colocar o looktype no local do nome. Eu já fui no ID pelo Object Builder, já testei com o nome do pokemon morto (fainted ou defeated), já testei com o ID que o jogo me indica quando dou look no corpo, já tentei com outros IDs relacionados ao pokemon que uso como teste pelo items.xml, porém nada nada nada nada mesmo surtiu efeito. [EDIT] @Storm @MatteusDeli Amigos, vi que o sistema deste jeito que está realmente vai ser sem condições. Estou tentando utilizar outro, vou indexar aqui o script que estou tentando fazer funcionar, ele retorna um erro no Console (pelo menos faz isso diferente do outro) talvez se eu conseguir resolver o erro o sistema possa funcionar, quem sabe? Novo script: local ballcatch = { [2147] = {cr = 50, on = 25, off = 25, ball = 2222, send = 47, typeee = "Pokeball"}, -- [2394] = id da pokebola | cr = catchrate | on = oncatch | off = onfail | ball = ? [2642] = {cr = 100, on = 200, off = 200, ball = 2651, send = 48, typeee = "Greatball"}, -- [2394] = id da pokebola | cr = catchrate | on = oncatch | off = onfail | ball = ? [2645] = {cr = 200, on = 210, off = 210, ball = 2651, send = 46, typeee = "Superball"}, -- [2394] = id da pokebola | cr = catchrate | on = oncatch | off = onfail | ball = ? [2146] = {cr = 500, on = 220, off = 220, ball = 2220, send = 49, typeee = "Ultraball"}, -- [2394] = id da pokebola | cr = catchrate | on = oncatch | off = onfail | ball = ? [2644] = {cr = 800, on = 230, off = 230, ball = 2655, send = 35, typeee = "Saffariball"}, -- [2394] = id da pokebola | cr = catchrate | on = oncatch | off = onfail | ball = ? } function onUse(cid, item, frompos, item3, topos) local item2 = getTopCorpse(topos) if item2 == null then return true end if getItemAttribute(item2.uid, "catching") == 1 then return true end if getItemAttribute(item2.uid, "golden") and getItemAttribute(item2.uid, "golden") == 1 then return doPlayerSendCancel(cid, "You can't try to catch a pokemon in the Golden Arena!") end local name = string.lower(getItemNameById(item2.itemid)) --alterado v1.9 \/ name = string.gsub(name, "fainted ", "") name = string.gsub(name, "defeated ", "") name = string.gsub(name, "morto ", "") name = doCorrectPokemonName(name) local x = pokecatches[name] local storage = newpokedex[name].stoCatch --alterado v1.9 \/ if getPlayerStorageValue(cid, storage) == -1 or not string.find(getPlayerStorageValue(cid, storage), ";") then setPlayerStorageValue(cid, storage, "normal = 0, great = 0, super = 0, ultra = 0, saffari = 0;") end if not x then return true end local owner = getItemAttribute(item2.uid, "corpseowner") if owner and isCreature(owner) and isPlayer(owner) and cid ~= owner then doPlayerSendCancel(cid, "You are not allowed to catch this pokemon.") return true end local newidd = isShinyName(name) and ballcatch[item.itemid].ball[2] or ballcatch[item.itemid].ball[1] --alterado v1.9 local typeee = ballcatch[item.itemid].typeee local restrictions = {"Moltres", "Articuno", "Zapdos", "Mew", "Mewtwo", "Entei", "Raikou", "Suicune", "Lugia", "Ho-oh", "Darkrai",} if isInArray(restrictions, name) then return doPlayerSendTextMessage(cid, 26, "Este pokemon é lendário! Não pode ser capturado.") end local catchinfo = {} catchinfo.rate = ballcatch[item.itemid].cr catchinfo.catch = ballcatch[item.itemid].on catchinfo.fail = ballcatch[item.itemid].off catchinfo.newid = newidd catchinfo.name = doCorrectPokemonName(name) catchinfo.topos = topos catchinfo.chance = x.chance doSendDistanceShoot(getThingPos(cid), topos, ballcatch[item.itemid].send) doRemoveItem(item.uid, 1) local d = getDistanceBetween(getThingPos(cid), topos) if getPlayerStorageValue(cid, 98796) >= 1 and getPlayerItemCount(cid, 12617) <= 0 then --alterado v1.9 setPlayerStorageValue(cid, 98796, -1) setPlayerStorageValue(cid, 98797, -1) doTeleportThing(cid, SafariOut, false) doSendMagicEffect(getThingPos(cid), 21) doPlayerSendTextMessage(cid, 27, "You spend all your saffari balls, good luck in the next time...") end addEvent(doSendPokeBall, d * 70 + 100 - (d * 14) , cid, catchinfo, false, false, typeee) addEvent(doSendMagicEffect, (d * 70 + 100 - (d * 14)) - 100, topos, 3) return true end O problema deste novo script é que eu peguei ele de um outro servidor de Poketibia, então pode ter inúmeras coisas diferentes que podem estar acarretando neste erro... maaaaaas quem não tenta nunca consegue. Erro que ele retorna no console: Eu não sei se é fácil ou não de se resolver, eu olho e olho o script mas não consigo encontrar nada que possa estar errado, eu copiei exatamente o script do outro servidor que tenho aqui, unica coisa que alterei no script foi o ID das pokebolas, apenas. Por se tratar de um script diferente do inicial e de outro servidor também não sei se vocês podem me ajudar... Mas me peçam todos os dados que vocês precisarem para conseguir me ajudar e eu enviarei. meu actions.xml
  4. @MatteusDeli Fala chefe, testei do jeito que você me enviou. Primeiramente obrigado por se disponibilizar a ajudar, porém, o processo ainda segue o mesmo ? Testei com o Squirtle: Porém ele me retorna a seguinte linha: Mensagem de loot: Lock do Squirtle morto: items.xml Não me retornou nenhum erro no console, apenas me envia a mensagem "Você só pode usar Pokebolas em Pokemons" e não faz nada, nem a animação da pokebola surge... Será que adicionar o atributo de corpse no items irá modificar algo? Assim que enviar esse comentário irei adicionar o atributo e testar, e edito aqui para dizer se mudou em algo. Deixei assim no items.xml Ainda nada acontece...
  5. @MatteusDeli Boa tarde, chefe! Para ser bem sincero absolutamente nenhum Pokemon está sendo capturado após ser derrotado. Enquanto ainda vivos se eu lançar a pokebola (seja qual for) eu consigo capturar, mas se eles forem derrotados e ficarem no chão (corpse) não.
  6. Servidor: Erondino - Poketibia Preciso alterar meu catch system de: Capturar pokemons vivos para Capturar pokemons mortos. Não tenho nenhum erro no console, e a forma em que o script atual está funciona perfeitamente, porém o responsável pela base disse que para alterar entre "vivo" ou "morto" era apenas trocar o looktype em "corpse =" eu coloquei o looktype, o id do corpo morto, o nome e nada disso funcionou... Eu fiz uma pesquisa no fórum (e em vários outros de OTs) e não encontrei nada parecido e nenhum com o mesmo code, ao menos, por isso criei este tópico espero não estar desrespeitando nenhuma regra. Você tem o código disponível? Se tiver publique-o aqui: local pokes = { ["Rattata"] = {chance = 50, corpse = "Rattata", health = 350, maxhealth = 350, level = 1}, ["Flareon"] = {chance = 5000, corpse = "Flareon", health = 5300, maxhealth = 5300, level = 55}, ["Crystal Onix"] = {chance = 5000, corpse = "Crystal Onix", health = 5300, maxhealth = 5300, level = 70}, ["Porygon"] = {chance = 5000, corpse = "Porygon", health = 14000, maxhealth = 4000, level = 45}, ["porygon2"] = {chance = 5000, corpse = "porygon2", health = 14000, maxhealth = 4000, level = 45}, ["Ditto"] = {chance = 5000, corpse = "Ditto", health = 14000, maxhealth = 4000, level = 40}, ["Shiny Ditto"] = {chance = 5000, corpse = "Shiny Ditto", health = 14000, maxhealth = 4000, level = 60}, ["Magikarp"] = {chance = 20, corpse = "3999", health = 0, maxhealth = 120, level = 1}, ["Eevee"] = {chance = 4000, corpse = "Eevee", health = 1500, maxhealth = 1500, level = 20}, ["Abra"] = {chance = 900, corpse = "Abra", health = 620, maxhealth = 620, level = 10}, ["Kadabra"] = {chance = 5500, corpse = "Kadabra", health = 2500, maxhealth = 2500, level = 50}, ["Alakazam"] = {chance = 10705, corpse = "Alakazam", health = 4000, maxhealth = 4000, level = 80}, ["Shiny Alakazam"] = {chance = 10705, corpse = "Shiny Alakazam", health = 4000, maxhealth = 4000, level = 80}, ["Dark Alakazam"] = {chance = 10705, corpse = "Dark Alakazam", health = 4000, maxhealth = 4000, level = 90}, ["Raticate"] = {chance = 1300, corpse = "Raticate", health = 900, maxhealth = 900, level = 20}, ["Pidgey"] = {chance = 40.25, corpse = "Pidgey", health = 380, maxhealth = 380, level = 1}, ["Pidgeotto"] = {chance = 1407.5, corpse = "Pidgeotto", health = 1400, maxhealth = 1400, level = 20}, ["Pidgeot"] = {chance = 9000, corpse = "6020", health = 0, maxhealth = 0, level = 20}, ["Zubat"] = {chance = 75, corpse = "Zubat", health = 450, maxhealth = 450, level = 5}, ["Golbat"] = {chance = 1090, corpse = "Golbat", health = 1900, maxhealth = 1900, level = 35}, ["Bellsprout"] = {chance = 82.5, corpse = "Bellsprout", health = 420, maxhealth = 420, level = 5}, ["Weepinbell"] = {chance = 1550, corpse = "Weepinbell", health = 1100, maxhealth = 1100, level = 25}, ["Victreebel"] = {chance = 7012.5, corpse = "Victreebel", health = 4000, maxhealth = 4000, level = 55}, ["Shiny Victreebel"] = {chance = 7012.5, corpse = "Shiny Victreebel", health = 4000, maxhealth = 4000, level = 85}, ["Poliwag"] = {chance = 73.75, corpse = "Poliwag", health = 400, maxhealth = 400, level = 10}, ["Poliwhirl"] = {chance = 2012.5, corpse = "Poliwhirl", health = 1200, maxhealth = 1200, level = 25}, ["Poliwrath"] = {chance = 9000, corpse = "Poliwrath", health = 4400, maxhealth = 4400, level = 70}, ["Oddish"] = {chance = 90, corpse = "Oddish", health = 340, maxhealth = 340, level = 10}, ["Gloom"] = {chance = 1050, corpse = "Gloom", health = 1400, maxhealth = 1400, level = 25}, ["Vileplume"] = {chance = 7012.5, corpse = "Vileplume", health = 3300, maxhealth = 3300, level = 55}, ["Horsea"] = {chance = 105, corpse = "Horsea", health = 300, maxhealth = 300, level = 10}, ["Seadra"] = {chance = 4000, corpse = "Seadra", health = 2500, maxhealth = 2500, level = 55}, ["Grimer"] = {chance = 605, corpse = "Grimer", health = 600, maxhealth = 600, level = 18}, ["Weedle"] = {chance = 20, corpse = "Weedle", health = 325, maxhealth = 325, level = 5}, ["Kakuna"] = {chance = 201.25, corpse = "Kakuna", health = 900, maxhealth = 900, level = 15}, ["Beedrill"] = {chance = 2012.5, corpse = "Beedrill", health = 1900, maxhealth = 1900, level = 35}, ["Muk"] = {chance = 1075, corpse = "Muk", health = 2400, maxhealth = 2400, level = 40}, ["Doduo"] = {chance = 701.25, corpse = "Doduo", health = 600, maxhealth = 600, level = 15}, ["Dodrio"] = {chance = 3000, corpse = "Dodrio", health = 2650, maxhealth = 2650, level = 55}, ["Magnemite"] = {chance = 605, corpse = "Magnemite", health = 450, maxhealth = 450, level = 20}, ["Magneton"] = {chance = 3000, corpse = "Magneton", health = 1750, maxhealth = 1750, level = 45}, ["Voltorb"] = {chance = 406.25, corpse = "Voltorb", health = 620, maxhealth = 620, level = 20}, ["Electrode"] = {chance = 2075, corpse = "Electrode", health = 2000, maxhealth = 2000, level = 45}, ["Geodude"] = {chance = 302.5, corpse = "Geodude", health = 700, maxhealth = 700, level = 20}, ["Graveler"] = {chance = 2012.5, corpse = "Graveler", health = 3000, maxhealth = 3000, level = 45}, ["Golem"] = {chance = 9000, corpse = "Golem", health = 6500, maxhealth = 6500, level = 75}, ["Sandshrew"] = {chance = 906.25, corpse = "Sandshrew", health = 700, maxhealth = 700, level = 25}, ["Sandslash"] = {chance = 7075, corpse = "Sandslash", health = 3400, maxhealth = 3400, level = 60}, ["Charmander"] = {chance = 2075, corpse = "Charmander", health = 970, maxhealth = 970, level = 25}, ["Charmeleon"] = {chance = 5087.5, corpse = "Charmeleon", health = 2900, maxhealth = 2900, level = 45}, ["Charizard"] = {chance = 9687.5, corpse = "Charizard", health = 5200, maxhealth = 5200, level = 90}, ["Vulpix"] = {chance = 950, corpse = "Vulpix", health = 680, maxhealth = 680, level = 20}, ["Ninetales"] = {chance = 9062.5, corpse = "Ninetales", health = 2650, maxhealth = 2650, level = 70}, ["Bulbasaur"] = {chance = 2705, corpse = "Bulbasaur", health = 1200, maxhealth = 1200, level = 25}, ["Ivysaur"] = {chance = 5870.5, corpse = "Ivysaur", health = 2600, maxhealth = 2600, level = 45}, ["Venusaur"] = {chance = 14087.5, corpse = "Venusaur", health = 5200, maxhealth = 5200, level = 90}, ["Squirtle"] = {chance = 2705, corpse = "Squirtle", health = 1350, maxhealth = 1350, level = 25}, ["Wartortle"] = {chance = 5807.5, corpse = "Wartortle", health = 2800, maxhealth = 2800, level = 45}, ["Blastoise"] = {chance = 14087.5, corpse = "Blastoise", health = 5900, maxhealth = 5900, level = 90}, ["Growlithe"] = {chance = 3037.5, corpse = "Growlithe", health = 1000, maxhealth = 1000, level = 25}, ["Arcanine"] = {chance = 9250, corpse = "Arcanine", health = 6800, maxhealth = 6800, level = 70}, ["Psyduck"] = {chance = 925, corpse = "Psyduck", health = 950, maxhealth = 950, level = 25}, ["Golduck"] = {chance = 9000, corpse = "Golduck", health = 4000, maxhealth = 4000, level = 55}, ["Pikachu"] = {chance = 4000, corpse = "Pikachu", health = 900, maxhealth = 900, level = 20}, ["Raichu"] = {chance = 9000, corpse = "Raichu", health = 3500, maxhealth = 3500, level = 55}, ["Ekans"] = {chance = 406,25, corpse = "Ekans", health = 600, maxhealth = 600, level = 15}, ["Arbok"] = {chance = 2012.5, corpse = "Arbok", health = 2900, maxhealth = 2900, level = 35}, ["Cubone"] = {chance = 925, corpse = "Cubone", health = 1200, maxhealth = 1200, level = 20}, ["Marowak"] = {chance = 5025, corpse = "Marowak", health = 3900, maxhealth = 3900, level = 45}, ["Caterpie"] = {chance = 20, corpse = "Caterpie", health = 300, maxhealth = 300, level = 1}, ["Metapod"] = {chance = 201.25, corpse = "Metapod", health = 1100, maxhealth = 1100, level = 10}, ["Butterfree"] = {chance = 2102.5, corpse = "Butterfree", health = 2000, maxhealth = 2000, level = 30}, ["Goldeen"] = {chance = 72.5, corpse = "Goldeen", health = 950, maxhealth = 950, level = 10}, ["Seaking"] = {chance = 2075, corpse = "Seaking", health = 2000, maxhealth = 2000, level = 25}, ["Spearow"] = {chance = 88.75, corpse = "Spearow", health = 200, maxhealth = 200, level = 5}, ["Fearow"] = {chance = 6050, corpse = "Fearow", health = 3300, maxhealth = 3300, level = 50}, ["Drowzee"] = {chance = 937.5, corpse = "Drowzee", health = 1150, maxhealth = 1150, level = 22}, ["Hypno"] = {chance = 9000, corpse = "Hypno", health = 4600, maxhealth = 4600, level = 50}, ["Diglett"] = {chance = 400, corpse = "Diglett", health = 900, maxhealth = 900, level = 15}, ["Dugtrio"] = {chance = 4000, corpse = "Dugtrio", health = 3450, maxhealth = 3450, level = 35}, ["Krabby"] = {chance = 86.875, corpse = "Krabby", health = 850, maxhealth = 850, level = 5}, ["Kingler"] = {chance = 3000, corpse = "Kingler", health = 3250, maxhealth = 3250, level = 35}, ["Paras"] = {chance = 40.25, corpse = "Paras", health = 850, maxhealth = 850, level = 1}, ["Parasect"] = {chance = 2012.5, corpse = "Parasect", health = 3800, maxhealth = 3800, level = 50}, ["Dratini"] = {chance = 3037.5, corpse = "Dratini", health = 520, maxhealth = 520, level = 10}, ["Dragonair"] = {chance = 9425, corpse = "Dragonair", health = 3000, maxhealth = 3000, level = 70}, ["Shiny Dragonair"] = {chance = 9425, corpse = "Shiny Dragonair", health = 3000, maxhealth = 3000, level = 70}, ["Dragonite"] = {chance = 35000, corpse = "Dragonite", health = 17000, maxhealth = 17000, level = 100}, ["Shiny Dragonite"] = {chance = 35000, corpse = "Shiny Dragonite", health = 17000, maxhealth = 17000, level = 100}, ["Ponyta"] = {chance = 906.25, corpse = "Ponyta", health = 1400, maxhealth = 1400, level = 20}, ["Rapidash"] = {chance = 4602.5, corpse = "Rapidash", health = 5500, maxhealth = 5500, level = 60}, ["Pinsir"] = {chance = 4000, corpse = "Pinsir", health = 55, maxhealth = 55, level = 42}, ["Seel"] = {chance = 1500, corpse = "Seel", health = 1000, maxhealth = 1000, level = 20}, ["Dewgong"] = {chance = 900, corpse = "Dewgong", health = 5200, maxhealth = 5200, level = 65}, ["Exeggcute"] = {chance = 300, corpse = "Exeggcute", health = 800, maxhealth = 800, level = 8}, ["Exeggutor"] = {chance = 7075, corpse = "Exeggutor", health = 450, maxhealth = 4000, level = 48}, ["Koffing"] = {chance = 502.5, corpse = "Koffing", health = 900, maxhealth = 900, level = 15}, ["Weezing"] = {chance = 1605, corpse = "Weezing", health = 2800, maxhealth = 2800, level = 30}, ["Staryu"] = {chance = 405, corpse = "Staryu", health = 1050, maxhealth = 1050, level = 15}, ["Starmie"] = {chance = 3000, corpse = "Starmie", health = 3800, maxhealth = 3800, level = 45}, ["Rhyhorn"] = {chance = 1007.5, corpse = "Rhyhorn", health = 3800, maxhealth = 3800, level = 35}, ["Rhydon"] = {chance = 5500, corpse = "Rhydon", health = 7000, maxhealth = 7000, level = 65}, ["Shellder"] = {chance = 505, corpse = "Shellder", health = 800, maxhealth = 800, level = 5}, ["Snorlax"] = {chance = 33705, corpse = "Snorlax", health = 9000, maxhealth = 9000, level = 85}, ["Shiny Snorlax"] = {chance = 33705, corpse = "Shiny Snorlax", health = 9000, maxhealth = 9000, level = 100}, ["Gyarados"] = {chance = 30000, corpse = "Gyarados", health = 7800, maxhealth = 7800, level = 75}, ["Machop"] = {chance = 906.25, corpse = "Machop", health = 1100, maxhealth = 1100, level = 18}, ["Machoke"] = {chance = 5205, corpse = "Machoke", health = 2850, maxhealth = 3500, level = 40}, ["Machamp"] = {chance = 11500, corpse = "Machamp", health = 6100, maxhealth = 7500, level = 65}, ["Clefairy"] = {chance = 1075, corpse = "Clefairy", health = 600, maxhealth = 600, level = 10}, ["Clefable"] = {chance = 5050, corpse = "Clefable", health = 2400, maxhealth = 2400, level = 35}, ["Jigglypuff"] = {chance = 987.5, corpse = "Jigglypuff", health = 550, maxhealth = 550, level = 10}, ["Wigglytuff"] = {chance = 5025, corpse = "Wigglytuff", health = 2900, maxhealth = 2900, level = 42}, ["Venonat"] = {chance = 925, corpse = "Venonat", health = 1350, maxhealth = 1350, level = 18}, ["Venomoth"] = {chance = 4000, corpse = "Venomoth", health = 3850, maxhealth = 3850, level = 50}, ["Meowth"] = {chance = 900, corpse = "Meowth", health = 2000, maxhealth = 950, level = 12}, ["Persian"] = {chance = 4000, corpse = "Persian", health = 2250, maxhealth = 2250, level = 25}, ["Mankey"] = {chance = 605, corpse = "Mankey", health = 1050, maxhealth = 1050, level = 10}, ["Primeape"] = {chance = 5205, corpse = "Primeape", health = 4500, maxhealth = 4500, level = 45}, ["Tentacool"] = {chance = 303.75, corpse = "Tentacool", health = 1050, maxhealth = 1050, level = 12}, ["Tentacruel"] = {chance = 6500, corpse = "Tentacruel", health = 7050, maxhealth = 7050, level = 70}, ["Slowpoke"] = {chance = 906.25, corpse = "Slowpoke", health = 1200, maxhealth = 1200, level = 12}, ["Slowbro"] = {chance = 7102.5, corpse = "Slowbro", health = 4600, maxhealth = 4600, level = 45}, ["Cloyster"] = {chance = 5807.5, corpse = "Cloyster", health = 120, maxhealth = 5000, level = 65}, ["Gastly"] = {chance = 3307.5, corpse = "Gastly", health = 1000, maxhealth = 1000, level = 18}, ["Haunter"] = {chance = 7705, corpse = "Haunter", health = 3000, maxhealth = 3000, level = 45}, ["Gengar"] = {chance = 39075, corpse = "Gengar", health = 7000, maxhealth = 7000, level = 80}, ["Onix"] = {chance = 4000, corpse = "Onix", health = 5300, maxhealth = 5300, level = 50}, ["Hitmonlee"] = {chance = 6500, corpse = "Hitmonlee", health = 9250, maxhealth = 9250, level = 60}, ["Hitmonchan"] = {chance = 6500, corpse = "Hitmonchan", health = 10500, maxhealth = 10500, level = 60}, ["Lickitung"] = {chance = 9875, corpse = "Lickitung", health = 4800, maxhealth = 4800, level = 45}, ["Chansey"] = {chance = 40000, corpse = "Chansey", health = 7500, maxhealth = 7500, level = 60}, ["Tangela"] = {chance = 4000, corpse = "Tangela", health = 3500, maxhealth = 3500, level = 40}, ["Kangaskhan"] = {chance = 4000, corpse = "Kangaskhan", health = 7000, maxhealth = 7000, level = 60}, ["Scyther"] = {chance = 14075, corpse = "Scyther", health = 6500, maxhealth = 6500, level = 70}, ["Electabuzz"] = {chance = 14075, corpse = "Electabuzz", health = 6800, maxhealth = 6800, level = 70}, ["Magmar"] = {chance = 14075, corpse = "Magmar", health = 7200, maxhealth = 7200, level = 70}, ["Jynx"] = {chance = 10000, corpse = "Jynx", health = 7000, maxhealth = 7000, level = 65}, ["Nidoran Male"] = {chance = 500, corpse = "Nidoran Male", health = 650, maxhealth = 650, level = 10}, ["Nidoran Female"] = {chance = 500, corpse = "Nidoran Female", health = 600, maxhealth = 600, level = 10}, ["Nidoking"] = {chance = 5000, corpse = "Nidoking", health = 4800, maxhealth = 4800, level = 65}, ["Shiny Nidoking"] = {chance = 5000, corpse = "Shiny Nidoking", health = 4800, maxhealth = 4800, level = 80}, ["Nidoqueen"] = {chance = 5000, corpse = "Nidoqueen", health = 4200, maxhealth = 4200, level = 65}, ["Nidorina"] = {chance = 2500, corpse = "Nidorina", health = 2000, maxhealth = 2000, level = 25}, ["Nidorino"] = {chance = 2500, corpse = "Nidorino", health = 2500, maxhealth = 2500, level = 25}, ["Farfetchd"] = {chance = 5205, corpse = "Farfetchd", health = 2500, maxhealth = 2500, level = 40}, ["MrMime"] = {chance = 8307.5, corpse = "MrMime", health = 5500, maxhealth = 5500, level = 60}, ["Tauros"] = {chance = 2102.5, corpse = "Tauros", health = 4200, maxhealth = 4200, level = 40}, ["Lapras"] = {chance = 58075, corpse = "Lapras", health = 8000, maxhealth = 8000, level = 70}, ["Omanyte"] = {chance = 9025, corpse = "Omanyte", health = 1300, maxhealth = 1300, level = 20}, ["Omastar"] = {chance = 30125, corpse = "Omastar", health = 6000, maxhealth = 6000, level = 70}, ["Kabuto"] = {chance = 11025, corpse = "Kabuto", health = 1375, maxhealth = 1375, level = 20}, ["Kabutops"] = {chance = 31205, corpse = "Kabutops", health = 6920, maxhealth = 6920, level = 70}, ["Aerodactyl"] = {chance = 122050, corpse = "Aerodactyl", health = 7100, maxhealth = 7100, level = 100}, ["Shiny Aerodactyl"] = {chance = 122050, corpse = "Shiny Aerodactyl", health = 7100, maxhealth = 7100, level = 120}, ["Articuno"] = {chance = 5000, corpse = "Articuno", health = 12000, maxhealth = 12000, level = 120}, ["Zapdos"] = {chance = 5000, corpse = "Zapdos", health = 11000, maxhealth = 11000, level = 120}, ["Moltres"] = {chance = 5000, corpse = "Moltres", health = 11000, maxhealth = 11000, level = 120}, ["Mewtwo"] = {chance = 10000, corpse = "Mewtwo", health = 8500, maxhealth = 8500, level = 140}, ["Mew"] = {chance = 10000, corpse = "Mew", health = 7200, maxhealth = 7200, level = 140}, ------------------------Shiny----------------------- ["Shiny Charizard"] = {chance = 8000, corpse = 2954, health = 7200, maxhealth = 7200, level = 100}, ["Shiny Magikarp"] = {chance = 1000, corpse = 105, health = 920, maxhealth = 920, level = 100}, ["Shiny Rattata"] = {chance = 1000, corpse = 110, health = 900, maxhealth = 900, level = 100}, ["Shiny Paras"] = {chance = 1500, corpse = 116, health = 1400, maxhealth = 1400, level = 100}, ["Shiny Oddish"] = {chance = 1500, corpse = 115, health = 990, maxhealth = 990, level = 100}, ["Shiny Zubat"] = {chance = 1500, corpse = 114, level = 100}, ["Shiny Tentacool"] = {chance = 2000, corpse = 122, health = 0, maxhealth = 0, level = 100}, ["Shiny Tentacruel"] = {chance = 7500, corpse = 128, health = 0, maxhealth = 0, level = 100}, ["Shiny Raticate"] = {chance = 2000, corpse = 136, health = 0, maxhealth = 0, level = 100}, ["Shiny Krabby"] = {chance = 1800, corpse = 126, health = 0, maxhealth = 0, level = 100}, ["Shiny Kingler"] = {chance = 3000, corpse = 138, health = 0, maxhealth = 0, level = 100}, ["Shiny Horsea"] = {chance = 1800, corpse = 139, health = 4080, maxhealth = 4080, level = 100}, ["Shiny Seadra"] = {chance = 3000, corpse = 131, health = 0, maxhealth = 0, level = 100}, ["Shiny Gyarados"] = {chance = 9000, corpse = 144, health = 18000, maxhealth = 18000, level = 100}, ["Shiny Parasect"] = {chance = 4000, corpse = 127, health = 0, maxhealth = 0, level = 100}, ["Shiny Scyther"] = {chance = 9000, corpse = 142, health = 0, maxhealth = 0, level = 100}, ["Shiny Electabuzz"] = {chance = 9000, corpse = 143, health = 0, maxhealth = 0, level = 100}, ["Shiny Jynx"] = {chance = 9000, corpse = 129, health = 0, maxhealth = 0, level = 100}, ["Shiny Electrode"] = {chance = 5000, corpse = 124, health = 0, maxhealth = 0, level = 100}, ["Shiny Voltorb"] = {chance = 1800, corpse = 125, health = 0, maxhealth = 0, level = 100}, ["Shiny Raichu"] = {chance = 5000, corpse = 140, health = 0, maxhealth = 0, level = 100}, ["Shiny Venonat"] = {chance = 2000, corpse = 130, health = 0, maxhealth = 0, level = 100}, ["Shiny Venomoth"] = {chance = 4500, corpse = 132, health = 0, maxhealth = 0, level = 100}, ["Shiny Beedril"] = {chance = 3000, corpse = 137, health = 0, maxhealth = 0, level = 100}, ["Shiny Butterfree"] = {chance = 3000, corpse = 133, health = 0, maxhealth = 0, level = 100}, ["Shiny Venusaur"] = {chance = 9000, corpse = 135, health = 10200, maxhealth = 10200, level = 100}, ["Shiny Blastoise"] = {chance = 9000, corpse = 134, health = 0, maxhealth = 0, level = 100}, ["Shiny Farfetchd"] = {chance = 4000, corpse = 119, health = 0, maxhealth = 0, level = 100}, ["Shiny Grimer"] = {chance = 1800, corpse = 123, health = 0, maxhealth = 0, level = 100}, ["Shiny Muk"] = {chance = 4000, corpse = 121, health = 0, maxhealth = 0, level = 100}, ["Shiny Growlithe"] = {chance = 2500, corpse = 117, health = 0, maxhealth = 0, level = 100}, ["Shiny Arcanine"] = {chance = 9000, corpse = 120, health = 0, maxhealth = 17000, level = 100}, ["Shiny Dratini"] = {chance = 4000, corpse = 118, health = 0, maxhealth = 0, level = 100}, ["Shiny Abra"] = {chance = 5000, corpse = 141, health = 0, maxhealth = 3620, level = 100}, ["Shiny Golem"] = {chance = 5000, corpse = 2995, health = 0, maxhealth = 3620, level = 100}, -----------------------------------Johto------------------------------ ["Aipom"] = {chance = 910, corpse = 11391, health = 3000, maxhealth = 3000, level = 30}, ["Ampharos"] = {chance = 14100, corpse = 11393, health = 3000, maxhealth = 3000, level = 30}, ["Ariados"] = {chance = 2200, corpse = 11394, health = 3000, maxhealth = 3000, level = 30}, ["Azumarill"] = {chance = 3000, corpse = 11395, health = 3000, maxhealth = 3000, level = 30}, ["Bayleef"] = {chance = 5900, corpse = 11396, health = 3000, maxhealth = 3000, level = 30}, ["Bellossom"] = {chance = 7100, corpse = 11397, health = 3000, maxhealth = 3000, level = 30}, ["Blissey"] = {chance = 14100, corpse = 11398, health = 3000, maxhealth = 3000, level = 30}, ["Celebi"] = {chance = 10000, corpse = 11399, health = 3000, maxhealth = 3000, level = 30}, ["Chikorita"] = {chance = 2800, corpse = 11400, health = 3000, maxhealth = 3000, level = 30}, ["Chinchou"] = {chance = 3000, corpse = 11401, health = 3000, maxhealth = 3000, level = 30}, ["Cleffa"] = {chance = 2000, corpse = 11402, health = 3000, maxhealth = 3000, level = 30}, ["Corsola"] = {chance = 5900, corpse = 11403, health = 3000, maxhealth = 3000, level = 30}, ["Crobat"] = {chance = 9000, corpse = 11404, health = 5500, maxhealth = 5500, level = 30}, ["Croconaw"] = {chance = 5900, corpse = 11405, health = 3000, maxhealth = 3000, level = 30}, ["Cyndaquil"] = {chance = 2100, corpse = 11406, health = 3000, maxhealth = 3000, level = 30}, ["Delibird"] = {chance = 6000, corpse = 11407, health = 3000, maxhealth = 3000, level = 30}, ["Donphan"] = {chance = 4500, corpse = 11408, health = 3000, maxhealth = 3000, level = 30}, ["Dunsparce"] = {chance = 210, corpse = 11409, health = 3000, maxhealth = 3000, level = 30}, ["Elekid"] = {chance = 4000, corpse = 11410, health = 3000, maxhealth = 3000, level = 30}, ["Entei"] = {chance = 10000, corpse = 11411, health = 3000, maxhealth = 3000, level = 30}, ["Espeon"] = {chance = 5000, corpse = 11412, health = 3000, maxhealth = 3000, level = 30}, ["Feraligatr"] = {chance = 14100, corpse = 11413, health = 3000, maxhealth = 3000, level = 30}, ["Flaaffy"] = {chance = 5800, corpse = 11414, health = 3000, maxhealth = 3000, level = 30}, ["Forretress"] = {chance = 500, corpse = 11415, health = 3000, maxhealth = 3000, level = 30}, ["Furret"] = {chance = 5100, corpse = 11416, health = 3000, maxhealth = 3000, level = 30}, ["Gallade"] = {chance = 6000, corpse = 11630, health = 3000, maxhealth = 3000, level = 30}, ["Girafarig"] = {chance = 6000, corpse = 11417, health = 3000, maxhealth = 3000, level = 30}, ["Gligar"] = {chance = 1100, corpse = 11418, health = 3000, maxhealth = 3000, level = 30}, ["Granbull"] = {chance = 4000, corpse = 11419, health = 3000, maxhealth = 3000, level = 30}, ["Heracross"] = {chance = 4000, corpse = 11420, health = 3000, maxhealth = 3000, level = 30}, ["Hitmontop"] = {chance = 6500, corpse = 11421, health = 3000, maxhealth = 3000, level = 30}, ["Ho oh"] = {chance = 10000, corpse = 11422, health = 3000, maxhealth = 3000, level = 30}, ["Hoothoot"] = {chance = 1500, corpse = 11423, health = 3000, maxhealth = 3000, level = 30}, ["Hoppip"] = {chance = 200, corpse = 11424, health = 3000, maxhealth = 3000, level = 30}, ["Houndoom"] = {chance = 9200, corpse = 11425, health = 3000, maxhealth = 3000, level = 30}, ["Houndor"] = {chance = 3100, corpse = 11426, health = 3000, maxhealth = 3000, level = 30}, ["Igglybuff"] = {chance = 1800, corpse = 11427, health = 3000, maxhealth = 3000, level = 30}, ["Jumpluff"] = {chance = 7200, corpse = 11428, health = 3000, maxhealth = 3000, level = 30}, ["Kingdra"] = {chance = 8500, corpse = 11429, health = 3000, maxhealth = 3000, level = 30}, ["Lanturn"] = {chance = 4200, corpse = 11430, health = 3000, maxhealth = 3000, level = 30}, ["Larvitar"] = {chance = 4500, corpse = 11431, health = 3000, maxhealth = 3000, level = 30}, ["Ledian"] = {chance = 2200, corpse = 11432, health = 3000, maxhealth = 3000, level = 30}, ["Ledyba"] = {chance = 1000, corpse = 11433, health = 3000, maxhealth = 3000, level = 30}, ["Lugia"] = {chance = 10000, corpse = 11434, health = 3000, maxhealth = 3000, level = 30}, ["Magby"] = {chance = 4000, corpse = 11435, health = 3000, maxhealth = 3000, level = 30}, ["Magcarbo"] = {chance = 4500, corpse = 11436, health = 3000, maxhealth = 3000, level = 30}, ["Mantine"] = {chance = 4200, corpse = 11437, health = 3000, maxhealth = 3000, level = 30}, ["Mareep"] = {chance = 2100, corpse = 11438, health = 3000, maxhealth = 3000, level = 30}, ["Marill"] = {chance = 2100, corpse = 11439, health = 3000, maxhealth = 3000, level = 30}, ["Meganium"] = {chance = 14100, corpse = 11440, health = 3000, maxhealth = 3000, level = 30}, ["Miltank"] = {chance = 5000, corpse = 11441, health = 3000, maxhealth = 3000, level = 30}, ["Misdreavus"] = {chance = 7800, corpse = 11442, health = 3000, maxhealth = 3000, level = 30}, ["Murkrow"] = {chance = 5000, corpse = 11443, health = 3000, maxhealth = 3000, level = 30}, ["Natu"] = {chance = 3000, corpse = 11444, health = 3000, maxhealth = 3000, level = 30}, ["Noctowl"] = {chance = 6100, corpse = 11445, health = 3000, maxhealth = 3000, level = 30}, ["Octillery"] = {chance = 5000, corpse = 11446, health = 3000, maxhealth = 3000, level = 30}, ["Phanpy"] = {chance = 2100, corpse = 11447, health = 3000, maxhealth = 3000, level = 30}, ["Pichu"] = {chance = 4000, corpse = 11448, health = 3000, maxhealth = 3000, level = 30}, ["Piloswine"] = {chance = 5000, corpse = 11449, health = 3000, maxhealth = 3000, level = 30}, ["Pineco"] = {chance = 1800, corpse = 11450, health = 3000, maxhealth = 3000, level = 30}, ["Politoed"] = {chance = 5000, corpse = 11451, health = 3000, maxhealth = 3000, level = 30}, ["Porygon2"] = {chance = 9000, corpse = 11452, health = 3000, maxhealth = 3000, level = 30}, ["Pupitar"] = {chance = 7000, corpse = 11453, health = 3000, maxhealth = 3000, level = 30}, ["Quaqsire"] = {chance = 5000, corpse = 11454, health = 3000, maxhealth = 3000, level = 30}, ["Quilava"] = {chance = 5900, corpse = 11455, health = 3000, maxhealth = 3000, level = 30}, ["Qwilfish"] = {chance = 4000, corpse = 11456, health = 3000, maxhealth = 3000, level = 30}, ["Raikou"] = {chance = 10000, corpse = 11457, health = 3000, maxhealth = 3000, level = 30}, ["Remoraid"] = {chance = 3000, corpse = 11458, health = 3000, maxhealth = 3000, level = 30}, ["Scizor"] = {chance = 9500, corpse = 11459, health = 3000, maxhealth = 3000, level = 30}, ["Shuckle"] = {chance = 4500, corpse = 11460, health = 3000, maxhealth = 3000, level = 30}, ["Skarmory"] = {chance = 4500, corpse = 11462, health = 3000, maxhealth = 3000, level = 30}, ["Skiploom"] = {chance = 3400, corpse = 11463, health = 3000, maxhealth = 3000, level = 30}, ["Slowking"] = {chance = 4400, corpse = 11464, health = 3000, maxhealth = 3000, level = 30}, ["Slugma"] = {chance = 2100, corpse = 11465, health = 3000, maxhealth = 3000, level = 30}, ["Smeargle"] = {chance = 3200, corpse = 11466, health = 3000, maxhealth = 3000, level = 30}, ["Smoochum"] = {chance = 4000, corpse = 11467, health = 3000, maxhealth = 3000, level = 30}, ["Sneasel"] = {chance = 4600, corpse = 11468, health = 3000, maxhealth = 3000, level = 30}, ["Sentret"] = {chance = 1500, corpse = 11461, health = 3000, maxhealth = 3000, level = 30}, ["Snubbull"] = {chance = 1500, corpse = 11469, health = 3000, maxhealth = 3000, level = 30}, ["Spinarak"] = {chance = 800, corpse = 11470, health = 3000, maxhealth = 3000, level = 30}, ["Stantler"] = {chance = 3500, corpse = 11471, health = 3000, maxhealth = 3000, level = 30}, ["Steelix"] = {chance = 8500, corpse = 11472, health = 3000, maxhealth = 3000, level = 30}, ["Sudowoodo"] = {chance = 7500, corpse = 11473, health = 3000, maxhealth = 3000, level = 30}, ["Suicune"] = {chance = 10000, corpse = 11474, health = 3000, maxhealth = 3000, level = 30}, ["Sunflora"] = {chance = 4200, corpse = 11475, health = 3000, maxhealth = 3000, level = 30}, ["Sunkern"] = {chance = 1000, corpse = 11476, health = 3000, maxhealth = 3000, level = 30}, ["Swinub"] = {chance = 2100, corpse = 11477, health = 3000, maxhealth = 3000, level = 30}, ["Teddiursa"] = {chance = 2100, corpse = 11478, health = 3000, maxhealth = 3000, level = 30}, ["Togepi"] = {chance = 5500, corpse = 11479, health = 3000, maxhealth = 3000, level = 30}, ["Togetic"] = {chance = 9500, corpse = 11480, health = 3000, maxhealth = 3000, level = 30}, ["Totodile"] = {chance = 2100, corpse = 11481, health = 3000, maxhealth = 3000, level = 30}, ["Typhlosion"] = {chance = 14100, corpse = 11482, health = 3000, maxhealth = 3000, level = 30}, ["Tyranitar"] = {chance = 10000, corpse = 11483, health = 3000, maxhealth = 3000, level = 30}, ["Tyrogue"] = {chance = 4000, corpse = 11484, health = 3000, maxhealth = 3000, level = 30}, ["Umbreon"] = {chance = 5000, corpse = 11485, health = 3000, maxhealth = 3000, level = 30}, ["Unown a"] = {chance = 5000, corpse = 11486, health = 3000, maxhealth = 3000, level = 30}, ["Unown b"] = {chance = 5000, corpse = 11487, health = 3000, maxhealth = 3000, level = 30}, ["Unown c"] = {chance = 5000, corpse = 11488, health = 3000, maxhealth = 3000, level = 30}, ["Unown d"] = {chance = 5000, corpse = 11489, health = 3000, maxhealth = 3000, level = 30}, ["Unown e"] = {chance = 5000, corpse = 11490, health = 3000, maxhealth = 3000, level = 30}, ["Unown f"] = {chance = 5000, corpse = 11491, health = 3000, maxhealth = 3000, level = 30}, ["Unown g"] = {chance = 5000, corpse = 11492, health = 3000, maxhealth = 3000, level = 30}, ["Unown h"] = {chance = 5000, corpse = 11493, health = 3000, maxhealth = 3000, level = 30}, ["Unown i"] = {chance = 5000, corpse = 11494, health = 3000, maxhealth = 3000, level = 30}, ["Unown j"] = {chance = 5000, corpse = 11495, health = 3000, maxhealth = 3000, level = 30}, ["Unown k"] = {chance = 5000, corpse = 11496, health = 3000, maxhealth = 3000, level = 30}, ["Unown l"] = {chance = 5000, corpse = 11497, health = 3000, maxhealth = 3000, level = 30}, ["Unown m"] = {chance = 5000, corpse = 11498, health = 3000, maxhealth = 3000, level = 30}, ["Unown n"] = {chance = 5000, corpse = 11499, health = 3000, maxhealth = 3000, level = 30}, ["Unown o"] = {chance = 5000, corpse = 11500, health = 3000, maxhealth = 3000, level = 30}, ["Unown p"] = {chance = 5000, corpse = 11501, health = 3000, maxhealth = 3000, level = 30}, ["Unown q"] = {chance = 5000, corpse = 11502, health = 3000, maxhealth = 3000, level = 30}, ["Unown r"] = {chance = 5000, corpse = 11503, health = 3000, maxhealth = 3000, level = 30}, ["Unown s"] = {chance = 5000, corpse = 11504, health = 3000, maxhealth = 3000, level = 30}, ["Unown t"] = {chance = 5000, corpse = 11505, health = 3000, maxhealth = 3000, level = 30}, ["Unown u"] = {chance = 5000, corpse = 11506, health = 3000, maxhealth = 3000, level = 30}, ["Unown v"] = {chance = 5000, corpse = 11507, health = 3000, maxhealth = 3000, level = 30}, ["Unown w"] = {chance = 5000, corpse = 11508, health = 3000, maxhealth = 3000, level = 30}, ["Unown x"] = {chance = 5000, corpse = 11509, health = 3000, maxhealth = 3000, level = 30}, ["Unown y"] = {chance = 5000, corpse = 11510, health = 3000, maxhealth = 3000, level = 30}, ["Ursaring"] = {chance = 8000, corpse = 11512, health = 3000, maxhealth = 3000, level = 30}, ["Wobbuffet"] = {chance = 5000, corpse = 11513, health = 3000, maxhealth = 3000, level = 30}, ["Wooper"] = {chance = 2100, corpse = 11514, health = 3000, maxhealth = 3000, level = 30}, ["Xatu"] = {chance = 4000, corpse = 11515, health = 3000, maxhealth = 3000, level = 30}, ["Yanma"] = {chance = 5000, corpse = 11516, health = 3000, maxhealth = 3000, level = 30}, ["Giratina"] = {chance = 20000, corpse = 11633, health = 15000, maxhealth = 15000, level = 30}, ["Palkia"] = {chance = 20000, corpse = 11635, health = 15000, maxhealth = 15000, level = 30}, ["Rayquaza"] = {chance = 20000, corpse = 11637, health = 15000, maxhealth = 15000, level = 30}, ["Primal Dialga"] = {chance = 22000, corpse = 11638, health = 15000, maxhealth = 15000, level = 30}, ["Dialga"] = {chance = 20000, corpse = 11640, health = 15000, maxhealth = 15000, level = 30}, } local description = "Contém um %pokename." function onUse(cid, item, frompos, item2, topos) if not isCreature(item2.uid) then return doPlayerSendCancel(cid, "Voce so pode usar pokebolas em pokemons!") end if isPlayer(getCreatureMaster(item2.uid)) then return doPlayerSendCancel(cid, "Voce so pode usar em pokemon selvagem!") end local name = getCreatureName(item2.uid) if name == "Nidoran" then if getCreatureSkullType(item2.uid) == 4 then name = "Nidoran Male" else name = "Nidoran Female" end end if item.itemid == 2147 then -- POKEBALL catchrate = 50 oncatch = 24 onfail = 23 bolabola = 2222 elseif item.itemid == 2642 then -- GREATBALL catchrate = 100 oncatch = 198 onfail = 197 bolabola = 2651 elseif item.itemid == 2645 then -- SUPERBALL catchrate = 200 oncatch = 202 onfail = 201 bolabola = 2653 elseif item.itemid == 2146 then -- ULTRABALL catchrate = 800 oncatch = 200 onfail = 199 bolabola = 2220 elseif item.itemid == 0 then -- MasterBALL catchrate = 1600 oncatch = 0 onfail = 0 bolabola = 0 elseif item.itemid == 2644 then -- EXBALL(Saffari) catchrate = 3000 oncatch = 204 onfail = 203 bolabola = 2655 end local rate = (catchrate) local catch = oncatch local fail = onfail local newid = bolabola for i,x in pairs(pokes) do if table.find(x, name) then if name == pokes[i].corpse then doRemoveItem(item.uid, 1) local pegar = math.random(1, x.chance) local maxhp = getCreatureMaxHealth(item2.uid) local hp = getCreatureHealth(item2.uid) if maxhp == hp then pegar = pegar + 2000 else pegar = pegar+(hp/10) end if pegar <= 1*(rate) then rando = getCreatureSkullType(item2.uid) doRemoveCreature(item2.uid) doSendMagicEffect(topos, catch) local nas = { ["%%pokename"] = i } for i,x in pairs(nas) do if description:find(i) then description = description:gsub(i, x) end end local function capturou(params) if not isCreature(params.cid) then return true end if getPlayerFreeCap(cid) <= 0.99 then doPlayerAddSoul(cid, 1) item = doCreateItemEx(newid-1) doItemSetAttribute(item, "poke", params.poke) doItemSetAttribute(item, "nome", params.nome) randomlv = math.random((x.level-5),(x.level+2)) if randomlv <= 0 then randomlv = 1 end nextlv = (100*(1.2^(randomlv)))+(100*(randomlv)) randomlvs = tostring(randomlv) nextlvs = tostring(nextlv) expss = 0 doItemSetAttribute(item, "description", params.description.." ["..randomlvs.."]") doItemSetAttribute(item, "level", randomlvs) doItemSetAttribute(item, "exp", expss) doItemSetAttribute(item, "nextlevelexp", nextlvs) doItemSetAttribute(item, "fome", "100") doItemSetAttribute(item, "feliz", "100") doItemSetAttribute(item, "sexo", rando) doPlayerSendMailByName(getCreatureName(params.cid), item, 1) doPlayerSendTextMessage(cid, 27, "Congratulations, you caught a "..i.."!") doPlayerSendTextMessage(cid, 27, "Since you are already holding six pokemons, this pokeball has been sent to your depot.") else item = doCreateItemEx(params.ball) doPlayerAddSoul(cid, 1) doItemSetAttribute(item, "poke", params.poke) doItemSetAttribute(item, "nome", params.nome) randomlv = math.random((x.level-5),(x.level+2)) if randomlv <= 0 then randomlv = 1 end nextlv = (100*(1.2^(randomlv)))+(100*(randomlv)) randomlvs = tostring(randomlv) nextlvs = tostring(nextlv) expss = 0 doItemSetAttribute(item, "description", params.description.." ["..randomlvs.."]") doItemSetAttribute(item, "level", randomlvs) doItemSetAttribute(item, "exp", expss) doItemSetAttribute(item, "nextlevelexp", nextlvs) doItemSetAttribute(item, "fome", "100") doItemSetAttribute(item, "feliz", "100") doItemSetAttribute(item, "sexo", rando) doPlayerAddItemEx(params.cid, item, true) doTransformItem(item, newid) doPlayerSendTextMessage(cid, 27, "Congratulations, you caught a "..i.."!") end if #getCreatureSummons(cid) >= 1 then doSendMagicEffect(getThingPos(getCreatureSummons(cid)[1]), 178) else doSendMagicEffect(getThingPos(cid), 178) end end local description = "Contains a "..i.."." local poke1 = "This is "..i.."'s pokeball. HP = ["..x.health.."/"..x.maxhealth.."]" addEvent(capturou, 4000, {cid = cid, poke = poke1, nome = i, description = description, ball = 2219, letter = 2597}) return true else function ruim(params) if not isCreature(params.cid) then return true end doPlayerSendTextMessage(params.cid, 27, "Sorry, you didn\'t catch that pokemon.") if #getCreatureSummons(params.cid) >= 1 then doSendMagicEffect(getThingPos(getCreatureSummons(params.cid)[1]), 166) else doSendMagicEffect(getThingPos(params.cid), 166) end end addEvent(ruim, 4000, {cid = cid}) doSendMagicEffect(topos, fail) return true end end end end return TRUE end Anexei todo o script ai para que possam ver e me ajudar, não quero que pensem que eu gostaria de tudo de mão beijada, estou tentando resolver isso tem 2 dias e já tentei tudo que está ao alcance do meu conhecimento relacionado a OTs mas infelizmente nada resolveu minha situação

Informação Importante

Confirmação de Termo