samuelitho 1 Postado Setembro 17, 2018 Share Postado Setembro 17, 2018 cnecesito su ayuda para hacer que cada pokemon nasca con nivel diferente ejemplo que butterfly nasca nivel 30, metapod lvl 10, caterpie 5 Spoiler local cfg = { monsters = {"Butterfly", "Metapod", "Caterpie", "Pidgey", "Beedrill", "Meowth", "Pidgeotto"}, grassChance = 25, -- % chance create monster timeTo = 5, -- Seconds so you can use them again } function onStepIn(cid, item, pos) if not isPlayer(cid) then return true end if getGlobalStorageValue(14260) > os.time() then return true end if math.random(100) <= cfg.grassChance then doCreateMonster(cfg.monsters[math.random(1, #cfg.monsters)], getCreaturePosition(cid)) addEvent(doSendMagicEffect, 1 * 1000, getCreaturePosition(cid), 14) setGlobalStorageValue(14260, os.time() + cfg.timeTo) end return true end Link para o comentário Compartilhar em outros sites More sharing options...
samuelitho 1 Postado Setembro 20, 2018 Autor Share Postado Setembro 20, 2018 up Link para o comentário Compartilhar em outros sites More sharing options...
Marshmello 270 Postado Outubro 29, 2018 Share Postado Outubro 29, 2018 local cfg = { monsters = {"Butterfly", "Metapod", "Caterpie", "Pidgey", "Beedrill", "Meowth", "Pidgeotto"}, grassChance = 25, -- % chance create monster timeTo = 5, -- Seconds so you can use them again } function onStepIn(cid, item, pos) if not isPlayer(cid) then return true end if getGlobalStorageValue(14260) > os.time() then return true end if math.random(100) <= cfg.grassChance then if getCreatureName(cid) == "Butterfly" or getCreatureName(cid) == "Metapod" or getCreatureName(cid) == "Caterpie" or getCreatureName(cid) == "Pidgey" or getCreatureName(cid) == "Beedrill" or getCreatureName(cid) == "Meowth" or getCreatureName(cid) == "Pidgeotto" or getCreatureName(cid) == "Marshtomp" then end doCreateMonster(cfg.monsters[math.random(1, #cfg.monsters)], getCreaturePosition(cid)) local lvl = math.random(10, 30) local nick = ""..getCreatureName(cid).." ["..lvl.."]" doCreatureSetNick(cid, nick) addEvent(doSendMagicEffect, 1 * 1000, getCreaturePosition(cid), 14) setGlobalStorageValue(14260, os.time() + cfg.timeTo) end return true end Link para o comentário Compartilhar em outros sites More sharing options...
Marshmello 270 Postado Fevereiro 20, 2019 Share Postado Fevereiro 20, 2019 A questão neste 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