Ir para conteúdo

zipter98

Herói
  • Total de itens

    2553
  • Registro em

  • Última visita

  • Dias Ganhos

    72

Tudo que zipter98 postou

  1. zipter98

    Pokemon Boost

    Qual a base que você está usando?
  2. Ou, ao invés de colocar a condição acima em todas as funções de status negativos (com exceção de sleep), você pode, simplesmente: newStatusSyst.lua: No código da função doBuff2: Abaixo de: if ret.buff and ret.buff ~= "" then doBuff2(ret.id, ret.cd, ret.eff, ret.check, ret.buff, ret.first, (ret.attr and ret.attr or false)) end Coloque: local pkmns = {"Entei"} --Pokémons imunes a status negativos, tirando sleep. if not isSummon(ret.id) and isInArray(pkmns, getCreatureName(ret.id)) and ret.cond ~= "Sleep" then return true end
  3. Gostaria de informar que vários servidores de pokémon usam um método de alteração de storage para adicionar e remover outfits, ao invés do uso da função doPlayerAddAddons. Talvez seja este o problema. Se possível, poste seu outfits.xml.
  4. function onSay(cid, words, param) local t = param:explode(", ") local pid = getPlayerByName(t[1]) if isPlayer(pid) then doSetItemText(doPlayerAddItem(pid, 8761), t[2] or "Nothing.") end return true end
  5. local config = { name = "monster_name", --Nome do monstro. minDamage = 7000, --Dano mínimo para receber as recompensas. items = { prize = {itemid, count}, --{ID do item, quantidade} medal = xxx, --ID da medalha. }, storage = 91828, } function onStatsChange(cid, attacker, type, combat, value) if isPlayer(attacker) and isMonster(cid) and getCreatureName(cid) == config.name and type == STATSCHANGE_HEALTHLOSS then local damage = getPlayerStorageValue(attacker, config.storage) < 1 and 0 or getPlayerStorageValue(attacker, config.storage) setPlayerStorageValue(attacker, config.storage, damage + value) end return true end function onDeath(cid, corpse, deathList) for _, pid in pairs(deathList) do local damage = getPlayerStorageValue(pid, config.storage) if damage >= config.minDamage then local item = doCreateItemEx(config.items.prize[1], config.items.prize[2]) doPlayerSendTextMessage(pid, 27, "For helping killing "..config.name..", you received a medal and "..config.items.prize[2].."x "..getItemNameById(config.items.prize[1])..".") doPlayerSendMailByName(getCreatureName(pid), item) doItemSetAttribute(doPlayerAddItem(pid, config.items.medal, 1), "description", "Medalha de honra ganha por "..getCreatureName(pid).." por ajudar a derrotar o "..config.name.." no dia "..os.date("%D")..".") setPlayerStorageValue(pid, config.storage, -1) end end db.executeQuery("UPDATE player_storage SET value = -1 WHERE key = "..config.storage) return true end
  6. O problema está nas corpses, não no sistema.
  7. Cara, você não está usando a PokéDex numa corpse. Está usando no asfalto.
  8. Ah, me lembrei de uma coisa. O número da outfit em configuration.lua deve ser o valor do Dat Editor subtraído por 351. PS: Certifique-se que está pegando o valor correto. Se não funcionar, você fez algo errado (ou pegou o valor errado).
  9. Eu perguntei se a outfit do Raichu/Shiny Raichu com fly funciona normalmente, não se o sistema está parcialmente funcionando.
  10. Troque: if not isCreature(item2.uid) then local name = getItemNameById(item2.itemid) if name:find("fainted") then name = doCorrectPokemonName(name:gsub("fainted ", "")) if isOutlanderPokemon(getCreatureName(item2.uid)) then return false end if pokes[poke].dex then if getPlayerStorageValue(cid, pokes[poke].dex) <= 0 then local exp = pokes[poke].level * rate doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have unlocked "..getCreatureName(item2.uid).." in your pokedex!") doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have gained "..exp.." experience points.") doSendMagicEffect(getThingPos(cid), 210) doPlayerAddExperience(cid, exp) setPlayerStorageValue(cid, pokes[poke].dex, 1) doShowPokedexRegistration(cid, name, getPlayerSlotItem(cid, 8)) else doShowPokedexRegistration(cid, name, getPlayerSlotItem(cid, 8)) end end end return true end por: if not isCreature(item2.uid) then print("Usou em item.") local name = getItemNameById(item2.itemid) print("Nome do item: "..name) if name:find("fainted") then name = doCorrectPokemonName(name:gsub("fainted ", "")) print("Nome do pokemon: "..name) if isOutlanderPokemon(getCreatureName(item2.uid)) then return false end if pokes[poke].dex then print("Esta na tabela.") if getPlayerStorageValue(cid, pokes[poke].dex) <= 0 then local exp = pokes[poke].level * rate doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have unlocked "..getCreatureName(item2.uid).." in your pokedex!") doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have gained "..exp.." experience points.") doSendMagicEffect(getThingPos(cid), 210) doPlayerAddExperience(cid, exp) setPlayerStorageValue(cid, pokes[poke].dex, 1) doShowPokedexRegistration(cid, name, getPlayerSlotItem(cid, 8)) else doShowPokedexRegistration(cid, name, getPlayerSlotItem(cid, 8)) end end end return true end E informe o que for imprimido no console.
  11. Troque: doItemSetAttribute(itemEx.uid, "name", getItemNameById(itemEx.itemid).." ref "..config.reflectBonus.."%") por: doItemSetAttribute(itemEx.uid, "name", getItemName(itemEx.uid).." ref "..config.reflectBonus.."%")
  12. Qual seu sistema de upgrade?
  13. Saberia dizer se as corpses dos pokémons do seu servidor são "defeated pokemon_name" ou "fainted pokemon_name"? Eu não pretendia adaptar o código para outras bases diferentes da que usei, mas vou abrir uma exceção.
  14. A outfit funciona normalmente ou só fica invisível nesse caso?
  15. data/globalevents/scripts: local config = { day = "Sunday", --Dia (em inglês). actionid = xxx, --Actionid dos tiles da área VIP. time = 90, --Tempo, em minutos, que os tiles da área VIP ficarão desabilitados. pos = { {x = x, y = y, z = z}, --Posições dos tiles da área VIP. {x = x, y = y, z = z}, } } function onTime() if os.date("%A") == config.day then for _, pos in pairs(config.pos) do local tile = getTileThingByPos(pos).uid if tile > 0 and getItemAttribute(tile, "aid") and getItemAttribute(tile, "aid") == config.actionid then doItemSetAttribute(tile, "aid", false) addEvent(function() local tile = getTileThingByPos(pos).uid if tile > 0 and not getItemAttribute(tile, "aid") then doItemSetAttribute(tile, "aid", config.actionid) end end, config.time * 60 * 1000) end end end return true end Tag: <!-- Coloque em time o horário que o script será executado --> <globalevent name="openVipArea" time="19:00" event="script" value="nome_do_arquivo.lua"/>
  16. Lib: cityMonsters = { --["monster_name"] = recomendo número anterior + 1, ["Chanceler Carlin"] = 1, ["Chanceler Kazz"] = 2, ["Chanceler Ab"] = 3, --etc } DEFAULT_STORAGE = 49198 function setGuildExperience(guildId, exp) for _, pid in pairs(getPlayersOnline()) do if getPlayerGuildId(pid) == guildId then doPlayerSetExperienceRate(pid, exp) end end end function getGuildExpRate(guildId) for _, pid in pairs(getPlayersOnline()) do local playerRate = getPlayerRates(pid)[8] if getPlayerGuildId(pid) == guildId and playerRate > 1 then return playerRate end end return 1.0 end function getGuildName(guild_id) --Omega local query = db.getResult("SELECT name FROM guilds WHERE id = "..guild_id) local ret = query:getID() == -1 and false or query:getDataString("name") query:free() return ret end Creaturescript: function onTarget(cid, target) local m, playerGuild = cityMonsters[getCreatureName(target)], getPlayerGuildId(cid) if isPlayer(cid) and isMonster(target) and m and playerGuild > 0 then return getGlobalStorageValue(DEFAULT_STORAGE + m) ~= playerGuild end return true end function onStatsChange(cid, attacker, type, combat, value) if isPlayer(attacker) and isMonster(cid) and type == STATSCHANGE_HEALTHLOSS then local m, playerGuild = cityMonsters[getCreatureName(cid)], getPlayerGuildId(attacker) if m and playerGuild > 0 then return getGlobalStorageValue(DEFAULT_STORAGE + m) ~= playerGuild end end return true end function onLogin(cid) local guildId = getPlayerGuildId(cid) if guildId > 0 and getGuildExpRate(guildId) > 1 then doPlayerSetExperienceRate(cid, getGuildExpRate(guildId)) end registerCreatureEvent(cid, "mTarget") registerCreatureEvent(cid, "mStatsChange") return true end function onDeath(cid, corpse, deathList) local killer, m = deathList[1], cityMonsters[getCreatureName(cid)] if killer and isPlayer(killer) and m then local atualGuild, playerGuild = getPlayerStorageValue(cid, DEFAULT_STORAGE + m), getPlayerGuildId(killer) if playerGuild > 0 and atualGuild ~= playerGuild then if atualGuild > -1 then setGuildExperience(atualGuild, getGuildExpRate(atualGuild) - 0.05) end setGuildExperience(playerGuild, getGuildExpRate(playerGuild) + 0.05) setGlobalStorageValue(DEFAULT_STORAGE + m, playerGuild) broadcastMessage("A guild "..getPlayerGuildName(killer).." acaba de dominar "..getCreatureName(cid):explode(" ")[2].."!") end end return true end Moveevent: local guilds = { --[actionid] = número da cidade configurado em cityMonsters, [2391] = 1, [2392] = 2, [2393] = 3, } function onStepIn(cid, item, position, fromPosition) if not isPlayer(cid) then return true end local guildId = getGlobalStorageValue(guilds[item.actionid] + DEFAULT_STORAGE) if getPlayerGuildId(cid) ~= guildId then doTeleportThing(cid, fromPosition) end return true end Tag: <movevent type="StepIn" actionid="2391;2392;2393" event="script" value="nome_do_arquivo.lua"/> Talkaction: function onSay(cid) local str = "" for name, count in pairs(cityMonsters) do local guildName = getGuildName(getGlobalStorageValue(count + DEFAULT_STORAGE)) if guildName then if str == "" then str = "Cidade "..name:explode(" ")[2].." dominada por "..guildName.."." else str = str.."\nCidade "..name:explode(" ")[2].." dominada por "..guildName.."." end end end doPlayerPopupFYI(cid, str == "" and "Nenhuma cidade conquistada." or str) return true end
  17. Esqueci de postar uma parte do código ._. Corrigido (lib).
  18. Ops, corrigido.
  19. Aparentemente a versão do PDA que você usa não é a mesma que a minha. Tente assim: Se der algum erro na distro, por favor, avise.
  20. zipter98

    Spell stop

    local time = 5 --Tempo de stun. function onCastSpell(cid) local target = getCreatureTarget(cid) if not isCreature(target) then return doPlayerSendCancel(cid, "You do not have a target.") end doCreatureSetNoMove(target, true) addEvent(function() if not isCreature(target) then return true end doCreatureSetNoMove(target, false) end, time * 1000) return true end
  21. Sinceramente, não sei qual a área mais adequada para um complemento a um sistema, mas w/e. Este complemento é designado a possibilidade de uso da PokéDex em corpses de pokémons, podendo obter suas informações. Sim, simples assim. data/actions/scripts, pokedex.lua: Troque: if not isCreature(item2.uid) then return true end por: if not isCreature(item2.uid) then local name = getItemNameById(item2.itemid) if name:find("fainted") then name = doCorrectPokemonName(name:gsub("fainted ", "")) if not getPlayerInfoAboutPokemon(cid, name).dex then local exp = newpokedex[name].level * rate doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have unlocked "..name.." and received "..exp.." experience points.") doSendMagicEffect(getThingPos(cid), 210) doPlayerAddExperience(cid, exp) doAddPokemonInDexList(cid, name) else doShowPokedexRegistration(cid, name, getPlayerSlotItem(cid, 8)) end end return true end Testado em PDA v1.9, por Slicer.
  22. zipter98

    Spell stop

    Spell: local config = { time = 10, --Tempo de stun. statue = xxx, --ID da estátua. storage = 9181 } function onCastSpell(cid) local target = getCreatureTarget(cid) if not isCreature(target) then return doPlayerSendCancel(cid, "You do not have a target.") end doCreatureSetNoMove(target, true) doCreateItem(config.statue, 1, getThingPos(target)) setPlayerStorageValue(target, config.storage, 1) local guid, toPos = getPlayerGUID(target), getThingPos(target) addEvent(function() local item = getTileItemById(toPos, config.statue).uid if item > 0 then doRemoveItem(item) end local pid = isCreature(target) and target or getPlayerByName(getPlayerNameByGUID(guid)) if isCreature(pid) then setPlayerStorageValue(pid, config.storage, -1) doCreatureSetNoMove(pid, false) else db.executeQuery("UPDATE player_storage SET value = -1 WHERE key = "..config.storage.." AND player_id = "..guid) end end, config.time * 1000) return true end data/creaturescripts/scripts: local storage = 9181 function onTarget(cid, target) return getPlayerStorageValue(target, storage) < 1 end function onStatsChange(cid, attacker, type, combat, value) return getPlayerStorageValue(cid, storage) < 1 end function onLogin(cid) registerCreatureEvent(cid, "stunStatsChange") registerCreatureEvent(cid, "stunTarget") return true end Tags: <event type="login" name="stunLogin" event="script" value="nome_do_arquivo.lua"/> <event type="statschange" name="stunStatsChange" event="script" value="nome_do_arquivo.lua"/> <event type="target" name="stunTarget" event="script" value="nome_do_arquivo.lua"/>
  23. Uma storage diferente para cada spell.
  24. Basta colocar no local apropriado, como indiquei, e sim, irá funcionar.
  25. order (lib): order (actions): login.lua:
  • Quem Está Navegando   0 membros estão online

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