Ir para conteúdo

Hikigaya

Visconde
  • Total de itens

    359
  • Registro em

  • Última visita

  • Dias Ganhos

    1

Tudo que Hikigaya postou

  1. @All Alguem Sabe Porque Minha Box Nao Abre? Box.lua Alguem Sabe Quem Souber REP+
  2. eu poso testa algumas coisa no pxg... ainda so lvl baixo (97) (orebound rank 2) + posso testar algumas coisa se vcs kiser...
  3. @Slicer Essa Semana Fica Pronto Ainda? E Voce Ta Configurando Os Spells Novos Nos pokemons ou so ta criando?
  4. esta mal informado em otpokemon botando hoenn pxg rolando up e esse server nao sai oO
  5. vc ja tem ele pronto? @Slicer Como Anda os sistemas?
  6. @Slicer Lek pode passa o Npc.Xml do npc da box +3 parecida ca do pxg? pleasse =s
  7. Embaixo da Agua Perdendo life alguem sabe como tira?
  8. Axo que é Hang Wuffei Chun Li Van Damme Mai Shiranui Jet Lee Jackie Chan Chuck Norris
  9. tem como fazer o site de criar acc com hamachi? U_U
  10. @All Isso e uma duvida meio "toska" Alguem poderia me ensinar criar quest? nao intendo isso de "Storoage" e por o item no bau e so posa abrir 1 vez =s Edit @All Alguem tem algum npc que compre stones ?
  11. a parte do cdbar.lua ja tinha... + no .xml n puis la testando# se pegar rep+ -D
  12. @Nibelins Baxei o Patch 1.1B Sempre que atualizo a bar do poke e cliko no poke para sair aparece !code 64 !cd 64 algo assim e so aqui? poderia me ajudar =S
  13. NPC SAFFARI Va em PastaDoOt/Data/Npc Crie 1 Arquivo Chamado Saffari.xml E Adicione Agora Va Em Data/Npc/Scripts Crie 1 Arquivo Chamado Safarari.lua E Adicione Isto
  14. local a = { [11638] = {level = {9, 10}, balltype = "normal", pokemons = {"Slowpoke", "Magnemite", "Doduo", "Seel", "Grimer", "Gastly", "Droowze", "Spearow", "Bulbasaur", "Charmander", "Squirtle", "Butterfree", "Beedrill", "Metapod", "Kakuna", "Pidgeotto", "Raticate", "Ekans", "Abra", "Mankey", "Psyduck", "Pikachu", "Sandshrew", "Zubat", "Diglett", "Venonat", "Meowth", "Poliwag", "Growlithe", "Machop", "Weepinbell" "Ponyta", "Geodude"}}, [11639] = {level = {44, 45}, balltype = "super", pokemons = {"clefairy", "Omanyte", "Kabuto", "Arbok", "Raichu", "Nidorina", "Nidorino", "Dodrio", "Muk", "Golbat", "Gloom", "Parasect", "Venomoth", "Dugtrio", "Persian", "Golbat", "Clefairy", "Jigglypuff", "Venonat", "Sandshrew", "Vulpix", "Meowth", "Persian", "Psyduck", "Mankey", "Poliwhirl", "Victreebel", "Machoke", "Graveler", "Slowbro", "Magnetom", "Geodude", "Farfetch'd", "Haunter", "Kingler", "Electrode", "Weezing", "Rhyhorn", "Seadra", "jigglypuff", "Seaking", "Tauros", "Starmie", "Eevee", "Dratini", "Charmeleon", "Wartortle", "Ivysaur"}}, [11640] = {level = {59, 60}, balltype = "great", pokemons = {"Pidgeot", "Fearow", "Sandslash", "Ninetales", "Vileplume", "Primeape", "Golduck", "Kadabra", "Rapidash", "Clefable", "Wigglytuff", "Dewgong", "Onix", "Cloyster", "Hypno", "Exeggutor", "Marowak", "Hitmonlee", "Hitmonchan", "Lickitung", "Chansey", "Tangela", "Mr. Mime", "Pinsir", "Vaporeon", "Jolteon", "Hypno", "Dragonair", "Porygon"}}, [11641] = {level = {80, 100}, balltype = "ultra", pokemons = {"Shiny Hitmonchan", "Shiny Hitmonlee", "Shiny Abra", "Dragonite", "Snorlax", "Kabutops", "Omastar", "Ditto", "Lapras", "Gyarados", "Magmar", "Electabuzz", "Jynx", "Scyther", "Kangaskhan", "Golem", "Venusaur", "Machamp", "Poliwrath", "Arcanine", "Nidoking", "Nidoqueen", "Charizard", "Blastoise", "Alakazam", "Gengar", "Rhydon", "Tentacruel"}} }[/i][/b] [b][i]local extrastrength = 1.1 [/i][/b] [b][i]function onUse(cid, item, frompos, item2, topos) local b = a[item.itemid] if not b then return true end local pokemon = b.pokemons[math.random(#b.pokemons)] local pokeinfo = getPokemonStatus(pokemon) if not pokeinfo then return true end local btype = b.balltype if not pokeballs[btype] then return true end local gender = getRandomGenderByName(pokemon) local level = math.random(b.level[1], b.level[2]) local offense = pokeinfo.off * level * extrastrength local defense = pokeinfo.def * level * extrastrength local agility = pokeinfo.agi * level * extrastrength local spatk = pokeinfo.spatk * level * extrastrength local vit = pokeinfo.vit * level * extrastrength local happy = 180 local leveltable = getPokemonExperienceTable(pokemon) local ball = 0 local sendToDepot = false if getCreatureMana(cid) >= 6 then sendToDepot = true ball = doCreateItemEx(2219) else ball = item.uid end doItemSetAttribute(ball, "poke", pokemon) doItemSetAttribute(ball, "hp", 1) doItemSetAttribute(ball, "level", level) doItemSetAttribute(ball, "exp", leveltable[level]) doItemSetAttribute(ball, "nextlevelexp", leveltable[level+1] - leveltable[level]) doItemSetAttribute(ball, "offense", offense) doItemSetAttribute(ball, "defense", defense) doItemSetAttribute(ball, "speed", agility) doItemSetAttribute(ball, "vitality", vit) doItemSetAttribute(ball, "specialattack", spatk) doItemSetAttribute(ball, "happy", happy) doItemSetAttribute(ball, "gender", gender) doItemSetAttribute(ball, "description", "Contains a "..pokemon..".") doItemSetAttribute(ball, "fakedesc", "Contains a "..pokemon..".") doPlayerSendTextMessage(cid, 27, "You opened a pokemon prize box +"..item.itemid - (11637).."!") doPlayerSendTextMessage(cid, 27, "The prize pokemon was a "..pokemon.." (level "..level.."), congratulations!") if sendToDepot then doPlayerSendMailByName(getCreatureName(cid), ball, 1) doTransformItem(ball, pokeballs[btype].on) doPlayerSendTextMessage(cid, 27, "You are already holding six pokemons, so your new pokemon was sent to your depot.") doRemoveItem(item.uid) else doTransformItem(ball, pokeballs[btype].on) end doSendMagicEffect(getThingPos(cid), 29) return true[/i][/b] [b][i]end @All Alguem Poderia Arrumar Minhas Box's Eu Simplesmente Adc + Pokes Nelas Igual do PxG Agr ela n abre +
  15. Kois voce tem 1 npc tipo assim voce bota 1 Jolteon+20+500k=Shiny Jolteon? Flareon+20+500k=S.Flaren Vaporeon+20+500k=S.poreon e tals?
  16. aki eu baixe pelos os de jhoto e deu certo ta ae os corpose pro itens.xml ow voce sabe por novos portraits na pokebar?
  17. TA ae DAI O npc Gostou Rep+ Amanha do REP+ Hj ja dei pro nibelins =s ow onde troca a outfit que vai ganhar? EDIT Eu Crio 1 Arquivo Xamado 50cents.lua em Data/Npc/Script e dps 50 Cent em data npc dou /n 50 Cent e ele n nasce =s no game pra min testar Cria um arquivo chamado Rapper.xml e um script chamado 50cents.lua E Se no Casso Eu Quisese Criar 1 Assim Naturia.Xml N teria como? @All Alguem Sabe Como Adicionar Novos Portraits na Barra?
  18. TA ae DAI O npc Gostou Rep+ Amanha do REP+ Hj ja dei pro nibelins =s ow onde troca a outfit que vai ganhar? EDIT Eu Crio 1 Arquivo Xamado 50cents.lua em Data/Npc/Script e dps 50 Cent em data npc dou /n 50 Cent e ele n nasce =s no game pra min testar
  19. Alguem tem Algum Npc Dese Estilo Exemplo: Voce Entrega XXX Bulbs XXX Leaves XXX Leaf Stones XXX Seeds E tals E voce Ganha 1 Outfit de Naturia A Mesma Coisa Com Outros Clan's (Igual PxG) (So que Sem Almenta Stats E Pressisar Matar os Pokemons) E Que So possa Escolher 1 Outfit Exemplo Se Eu Escolho Naturia Eu n poderei + escolher a de Orebound alguem disponibilisa 1 npc nesse style? pfv =s
  20. vtnc mlk larga de ser noob porra so ta aki pra enche o saco mano o dexa eu em paz caramba meu o dexa eu em paz você é o bom né idiota MARIO 1°Aqui e Para Duvidas Do Pokemon Dash Advanced Nao Pokemon Deltwon sla oque 2°As Coisas Postadas Aqui Nao Sao Compativeis Com Esse Dewlton Sla oque 3°Se Voce Quer As Coisas Sobre ele vai no Topico Dele e Pergunta La Aqui e Para Duvidas no PDA N no PDF
  • Quem Está Navegando   0 membros estão online

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