Ir para conteúdo

kttallan

Infante
  • Total de itens

    1574
  • Registro em

  • Última visita

  • Dias Ganhos

    16

Tudo que kttallan postou

  1. Poste Imagen Do Seu Servidor Sistemas E Mais Coisas pq Assim Nen Eu Entraria... So Dica !
  2. !!! Duvida Stylo Acho Legal Seu Ot É D + So Que Por Que Via Hamachi Vai Ser Hosteado ?
  3. local shinys = { "Venusaur", "Charizard", "Blastoise", "Butterfree", "Beedrill", "Pidgeot", "Rattata", "Raticate", "Raichu", "Zubat", "Golbat", "Paras", "Parasect", "Venonat", "Venomoth", "Growlithe", "Arcanine", "Abra", "Alakazam", "Tentacool", "Tentacruel", "Farfetch'd", "Grimer", "Muk", "Gengar", "Onix", "Krabby", "Kingler", "Voltorb", "Electrode", "Cubone", "Marowak", "Hitmonlee", "Hitmonchan", "Tangela", "Horsea", "Seadra", "Scyther", "Jynx", "Electabuzz", "Pinsir", "Magikarp", "Gyarados", "Snorlax", "Dragonair", "Dratini"} local raros = {"Dragonite"} --alterado v1.5 local function ShinyName(cid) if isCreature(cid) then if string.find(tostring(getCreatureName(cid)), "Shiny") then local newName = tostring(getCreatureName(cid)):match("Shiny (.*)") doCreatureSetNick(cid, newName) if isMonster(cid) then doSetCreatureDropLoot(cid, false) end end end end local function doSetRandomGender(cid) if not isCreature(cid) then return true end if isSummon(cid) then return true end local gender = 0 local name = getCreatureName(cid) if not newpokedex[name] then return true end local rate = newpokedex[name].gender if rate == 0 then gender = 3 elseif rate == 1000 then gender = 4 elseif rate == -1 then gender = 0 elseif math.random(1, 1000) <= rate then gender = 4 else gender = 3 end doCreatureSetSkullType(cid, gender) end local function doShiny(cid) if isCreature(cid) then if isSummon(cid) then return true end if getPlayerStorageValue(cid, 74469) >= 1 then return true end if getPlayerStorageValue(cid, 22546) >= 1 then return true end --alterado v1.7 -golden- if isNpcSummon(cid) then return true end if isInArray(shinys, getCreatureName(cid)) then transform = math.random(100, 100) --100% chance elseif isInArray(raros, getCreatureName(cid)) then transform = math.random(100, 100) --100% chance else return true end if transform == 10 then doSendMagicEffect(getThingPos(cid), 18) local shi = doCreateMonster("Shiny ".. getCreatureName(cid) .."", getThingPos(cid)) setPlayerStorageValue(shi, 74469, 1) setPlayerStorageValue(cid, 74469, 1) doRemoveCreature(cid) else setPlayerStorageValue(cid, 74469, 1) end else return true end end function onSpawn(cid) registerCreatureEvent(cid, "Experience") registerCreatureEvent(cid, "GeneralConfiguration") registerCreatureEvent(cid, "DirectionSystem") registerCreatureEvent(cid, "CastSystem") if isSummon(cid) then registerCreatureEvent(cid, "SummonDeath") return true end addEvent(doSetRandomGender, 5, cid) addEvent(doShiny, 10, cid) addEvent(ShinyName, 15, cid) addEvent(adjustWildPoke, 5, cid) return true end transform = math.random(100, 100) --100% chance
  4. Olha Stilo A Causa E Duplicate Move Evento Quer Dizer Que Vocé Usou 2x Ids Exato A Unica Forma Que Conheçõ De Tirar Esse Erro E TRocando o Id
  5. Kalvin Amigo Eu Quero o Sistema Não Como Botar ^^
  6. Concondo Um Dos Melhores Mapa Do Xtibia.
  7. O Ola Gente Estou Procurando O Scripter Do Icon System Pois as Sprites Ja Tenho Alguem Tem como Me Passar O Icon System e Para Pda Obrigado..
  8. Duvida Senada Topico Reportado Para Que Movam Obrigado Uchina1Madara E Gabrieltxu Por Ajudar Continue Assim
  9. abra os Spoiler Do Meus TRabalho Ai Vocé Vai Ver Um Tutorial De Otclient Ajudarar Muito a Vocé deixar o ip fixo do otclient
  10. ata vlw uchina e o manin ali a cima me pegou de geito ksks to sem esse negocio.
  11. amigo pode explicar direito oq vocé quer pois eu não entendi nada.
  12. baixe aki esse aki. Otclient Do Kttallan Apos isso Vá Em Mods E Terar a Pasta Serve.OTMOD abre como bloco de notas e tara assim Module name: addon_server description: Server protocol extended author: Darckx13 website: http://xtibia.com autoload: true autoload-priority: 1000 dependencies: -client_entergame @onLoad: | EnterGame.setDefaultServer("127.0.0.1", 7171, 854) MUDE PRA ESSE Module name: addon_server description: Server protocol extended author: Darckx13 website: http://xtibia.com autoload: true autoload-priority: 1000 dependencies: -client_entergame @onLoad: | EnterGame.setDefaultServer("shiny.zapdo.org", 7171, 854)
  13. já fiz isso ainda Continua O Mesmo Erro creio que minha carreira de mapper inciante acabou sem começar
  14. Vitinho Cuidado Vocé Pode Estar flood Pois o Player Ali Em Cima FAlou a Mesma Coisa Que Vocé Cuiado
  15. Stylo Vlw Ajudou Muito a mim Tabem So Que no Meu Deu Tudo Certo Mais na Hora de Catch Não pega^^
  16. local config = { rateExperience = getConfigInfo('rateExperience'), rateSkill = getConfigInfo('rateSkill'), rateLoot = getConfigInfo('rateLoot'), rateMagic = getConfigInfo('rateMagic'), rateSpawn = getConfigInfo('rateSpawn'), protectionLevel = getConfigInfo('protectionLevel'), stages = getBooleanFromString(getConfigInfo('experienceStages')) } function onSay(cid, words, param, channel) local exp = config.rateExperience if(config.stages) then exp = getExperienceStage(getPlayerLevel(cid), getVocationInfo(getPlayerVocation(cid)).experienceMultiplier) end doPlayerPopupFYI(cid, "Server Information:\n\nExperience rate: x" .. exp .. "\nSkills rate: x" .. config.rateSkill .. "\nLoot rate: x" .. config.rateLoot .. "\nMagic rate: x" .. config.rateMagic .. "\nSpawns rate: x" .. config.rateSpawn .. "\nProtection level: " .. config.protectionLevel) return true end
  17. data/moster/zapdos.xml ai vai ter as informaçoes [/font]<?xml version="1.0" encoding="UTF-8"?> <monster name="Aerodactyl" nameDescription="a aerodactyl" race="rock" experience="aKI vOCÉ mUDA pRA 50000 ^^" speed="137" manacost="0"> <health now="170" max="170"/> <look type="361" head="170" body="200" legs="95" feet="113" corpse="11839"/> <targetchange interval="10000" chance="0"/> <strategy attack="100" defense="0"/> <flags> <flag summonable="1"/> <flag attackable="1"/> <flag hostile="1"/> <flag illusionable="1"/> <flag convinceable="1"/> <flag pushable="1"/> <flag canpushitems="0"/> <flag canpushcreatures="0"/> <flag targetdistance="1"/> <flag staticattack="97"/> <flag runonhealth="0"/> <flag hungerdelay="17"/> </flags> <attacks> <attack name="melee" interval="2000" chance="100" range="1" min="-50" max="-100"/> <attack name="Fire Fang" interval="2899" chance="29" range="1"/> <attack name="Roar" interval="3999" chance="29" range="3"/> <attack name="Super Sonic" interval="4199" chance="29" range="3"/> <attack name="Bite" interval="3040" chance="28" range="1"/> <attack name="Headbutt" interval="2899" chance="29" range="1"/> <attack name="Rock Slide" interval="2946" chance="28" range="3"/> <attack name="Rock Throw" interval="2946" chance="28" range="3"/> <attack name="Wing Attack" interval="3040" chance="28" range="6"/> <attack name="Falling Rocks" interval="3698" chance="24" range="6"/> <attack name="Hyper Beam" interval="3651" chance="24" range="6"/> <attack name="Ancient Power" interval="3510" chance="25" range="6"/> </attacks> <defenses armor="0" defense="0"/> <voices interval="5000" chance="10"> <voice sentence="AERODACTYL!"/> </voices> <loot> <item id="12337" chance="10000" chance1="120" chancemax="152" countmax="50"/> <item id="12196" chance="4000" count="1" countmax="1"/> <item id="12581" chance="50" count="1" countmax="1"/> <item id="11445" chance="100" chance1="1" chancemax="2" count="1" countmax="1"/> </loot> <script> <event name="Spawn"/> </script> </monster> [font="comic sans ms, cursive"]
  18. kttallan

    Perdi meu mapa

    oks duvida senada e movida jaja
  19. Tenta Denovo Caso Ele Não Abra Seu Dat Editor Não Aceita A Verção Correta.
  20. kttallan

    Perdi meu mapa

    Isson Acontece Quando Vocé Tenta Salvar O Mapa E Ná Hora Que Salva Trava Ou Demora A Sair Obs : Aconteceu Cmg Já ^^
  21. Concorco Ainda Não Existe Aki No Xtibia..
  • Quem Está Navegando   0 membros estão online

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