arkadioos 0 Postado Maio 14, 2013 Share Postado Maio 14, 2013 Galera , no meu spawn.lua ta assim: 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 endendend local function doSetRandomGender(cid)if not isCreature(cid) then return true endif isSummon(cid) then return true endlocal gender = 0local name = getCreatureName(cid)if not newpokedex[name] then return true endlocal rate = newpokedex[name].genderif rate == 0 thengender = 3elseif rate == 1000 thengender = 4elseif rate == -1 thengender = 0elseif math.random(1, 1000) <= rate thengender = 4elsegender = 3enddoCreatureSetSkullType(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 isNpcSummon(cid) then return true endif isInArray(shinys, getCreatureName(cid)) then transform = math.random(1, 1000) --100% chance elseif isInArray(raros, getCreatureName(cid)) then transform = math.random(1, 1000) --100% chance elseif not isInArray(raros, getCreatureName(cid)) and not isInArray(shinys, getCreatureName(cid)) then return trueend 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) endelse return trueendend function onSpawn(cid) registerCreatureEvent(cid, "Experience")registerCreatureEvent(cid, "GeneralConfiguration")registerCreatureEvent(cid, "DirectionSystem")registerCreatureEvent(cid, "CastSystem") if isSummon(cid) thenregisterCreatureEvent(cid, "SummonDeath")return trueend addEvent(doSetRandomGender, 5, cid)addEvent(doShiny, 10, cid)addEvent(ShinyName, 15, cid)addEvent(adjustWildPoke, 5, cid) return trueend E não vem nenhum shiny nos respawn's , o que eu faço ? Link para o comentário Compartilhar em outros sites More sharing options...
Gabrieltxu 737 Postado Maio 15, 2013 Share Postado Maio 15, 2013 man é aleatorio tem uma % dele aparecer... Link para o comentário Compartilhar em outros sites More sharing options...
arkadioos 0 Postado Maio 15, 2013 Autor Share Postado Maio 15, 2013 mas eu pus 100% de chance dele aparecer e ele não apareceu --' Link para o comentário Compartilhar em outros sites More sharing options...
murluka 123 Postado Maio 15, 2013 Share Postado Maio 15, 2013 (editado) não é assim que se faz, é diferente, meio complicado. Tem 1 tópico acho, explicando como que se faz. o seu está 0.1% de chance de vir shinys. Editado Maio 15, 2013 por murluka Link para o comentário Compartilhar em outros sites More sharing options...
arkadioos 0 Postado Maio 15, 2013 Autor Share Postado Maio 15, 2013 Então me mostra o tópico , eu preciso saber porque no meu servidor nao tá aparecendo shiny Link para o comentário Compartilhar em outros sites More sharing options...
vital900 570 Postado Agosto 4, 2013 Share Postado Agosto 4, 2013 Tópico movido para a seção de dúvidas e pedidos resolvidos. Tópico movido para a seção de dúvidas e pedidos resolvidos. Link para o comentário Compartilhar em outros sites More sharing options...
Stigal 584 Postado Abril 21, 2018 Share Postado Abril 21, 2018 A questão neste tópico de suporte foi encerrada por falta de respostas. Este tópico está fechado e foi movido para Suporte - Tópicos Sem Resposta. + Caso a dúvida não tenha sido resolvida você poderá criar outro tópico solicitando ajuda. * Lembre-se que é permitido dar UP no tópico a cada 24 horas para assim o destacar e manter movimentado. Link para o comentário Compartilhar em outros sites More sharing options...
Posts Recomendados