Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Esta é uma mensagem automática! Este tópico foi movido para a área correta.
Pedimos que você leia as regras do fórum.

Spoiler

This is an automated message! This topic has been moved to the correct area.
Please read the forum rules.

 

Link para o post
Compartilhar em outros sites
21 horas atrás, duduxcoelho disse:

Alguem pode me ajudar a resolver esses dois probleminhas que estão dando ai ?! 

Sem título.png

As talkactions que estão ali (!buypremium e !changender) estão registradas duas vezes, da uma olhada no talkactions.xml e nos mods. :p

asdukeeh.jpg

Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.

  • Conteúdo Similar

    • Por your2000
      Ola Tibianos, Queria pedir ajuda em um script aki de Anuncio, Tipo, ele funfa certim só que quando o player vai mandar o anuncio, Ele fala no chat o comando, e eu n queria que ele falasse no chat o cmd etc.. 
       
      Print do erro :
       
       
       
      Script :
       
      local config = {
      storage = 19400, -- storage em que será salvo o tempo
      cor = "green", -- de acordo com o constant.lua da lib
      tempo = 5, -- em minutos
      itemid = 2160,
      price = 100, -- quantidade de dinheiro que irá custar
      level = 100 -- level pra poder utilizar o broadcast
      }
       
       
      function onSay(cid, words, param, channel)
      if(param == '') then
      doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command param required.")
      return true
      end
       
       
      if getPlayerLevel(cid) >= config.level then
      if getPlayerStorageValue(cid, config.storage) - os.time() <= 0 then
      if doPlayerRemoveItem(cid, config.itemid, config.price) then
      setPlayerStorageValue(cid, config.storage, os.time() + (config.tempo*1)) 
      doBroadcastMessage(""..getCreatureName(cid).." : "..param.."", config.cor)
      doPlayerSendTextMessage(cid, MESSAGE_EVENT_DEFAULT, "Você enviou com sucesso um Anuncio, agora você vai ter que esperar " ..config.tempo.. " second(s) until you broadcast again.")
      else
      doPlayerSendCancel(cid, "You don't have " ..config.price.. " Dollar's Voce não tem Thousand Dollar Suficiente.")
      return true
      end
      else
      doPlayerSendCancel(cid, "You have to wait " ..(getPlayerStorageValue(cid, config.storage) - os.time()).. " seconds until you can broadcast again.")
      return true
      end
      else
      doPlayerSendCancel(cid, "You have to be level " ..config.level.. " or more in order to use broadcast.")
      end
      end
       
      Talkactions :
       
      <talkaction log="yes" words="/anuncio" event="script" value="anuncio.lua"/>
    • Por your2000
      Bom Dia , Boa Tarde Boa Noite, Eu Queria A Ajudar de Vocês, Seguinte, o Meu Erro é : 
       
      Eu Criei um Novo Cargo, Com o Group Id 7 , Ok, Funfo Certim Mais Quando eu do /cb e o Nome do pokemon , se eu tiver com + de 6 Pokes , Ele vai pro dp, mais o Cargo e de Dono, eu n queria que o poke sempre fosse pro dp, queria que fosse igual God, e o Limite de Pokes Seja Infinitos, Ajudaaa por favor, REP+ Pra quem Conseguir Ajudar
    • Por Tricoder
      SCREENSHOT
      http://3.1m.yt/Zwo99Sdx.png
      http://4.1m.yt/oG_cwli8u.png
      ______________________________________________ COMANDOS
      !autoloot add, itemId ou name -- Adicionando um item na lista !autoloot remove, itemId or name -- Remover um item da lista !autoloot show -- Mostrar a lista do autoLoot !autoloot clear -- Limpar a lista do autoLoot ______________________________________________ SCRIPT data/global.lua
      -- AutoLoot config AUTO_LOOT_MAX_ITEMS = 5 -- Reserved storage AUTOLOOT_STORAGE_START = 10000 AUTOLOOT_STORAGE_END = AUTOLOOT_STORAGE_START + AUTO_LOOT_MAX_ITEMS -- AutoLoot config end talkactions/talkactions.xml
      <talkaction words="!autoloot" separator=" " script="autoloot.lua"/> talkactions/scripts/autoloot.lua
      function onSay(player, words, param) local split = param:split(",") local action = split[1] if action == "add" then local item = split[2]:gsub("%s+", "", 1) local itemType = ItemType(item) if itemType:getId() == 0 then itemType = ItemType(tonumber(item)) if itemType:getId() == 0 then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "There is no item with that id or name.") return false end end local itemName = tonumber(split[2]) and itemType:getName() or item local size = 0 for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do local storage = player:getStorageValue(i) if size == AUTO_LOOT_MAX_ITEMS then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "The list is full, please remove from the list to make some room.") break end if storage == itemType:getId() then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." is already in the list.") break end if storage <= 0 then player:setStorageValue(i, itemType:getId()) player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." has been added to the list.") break end size = size + 1 end elseif action == "remove" then local item = split[2]:gsub("%s+", "", 1) local itemType = ItemType(item) if itemType:getId() == 0 then itemType = ItemType(tonumber(item)) if itemType:getId() == 0 then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "There is no item with that id or name.") return false end end local itemName = tonumber(split[2]) and itemType:getName() or item for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do if player:getStorageValue(i) == itemType:getId() then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." has been removed from the list.") player:setStorageValue(i, 0) return false end end player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." was not founded in the list.") elseif action == "show" then local text = "-- Auto Loot List --\n" local count = 1 for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do local storage = player:getStorageValue(i) if storage > 0 then text = string.format("%s%d. %s\n", text, count, ItemType(storage):getName()) count = count + 1 end end if text == "" then text = "Empty" end player:showTextDialog(1950, text, false) elseif action == "clear" then for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do player:setStorageValue(i, 0) end player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "The autoloot list has been cleared.") else player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "Use the commands: !autoloot {add, remove, show, clear}") end return false end creaturescripts/creaturescripts.xml
      <event type="kill" name="AutoLoot" script="autoloot.lua" /> creaturescripts/scripts/autoloot.lua
      local function scanContainer(cid, position) local player = Player(cid) if not player then return end local corpse = Tile(position):getTopDownItem() if not corpse then return end if corpse:getType():isCorpse() and corpse:getAttribute(ITEM_ATTRIBUTE_CORPSEOWNER) == cid then for i = corpse:getSize() - 1, 0, -1 do local containerItem = corpse:getItem(i) if containerItem then for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do if player:getStorageValue(i) == containerItem:getId() then containerItem:moveTo(player) end end end end end end function onKill(player, target) if not target:isMonster() then return true end addEvent(scanContainer, 100, player:getId(), target:getPosition()) return true end creaturescripts/scripts/login.lua
      player:registerEvent("AutoLoot") ______________________________________________ CRÉDITOS
      Printer
    • Por Vodkart
      Descrição do Arquivo

       
      *Sobre o Sistema*
       
      Resolvi postar este sistema por ser simples, já que estou desenvolvendo sistemas para guild e focar em evento de PVP para comércio aqui no TibiaKing, sem mais deslongas;
       
      O sistema é simples, basta você ativar um comando e você será teleportado para o local depois de "X" segundos, como mostra na imagem!
       
       
      Exemplo do uso de comando:
       
      !tp templo
      !tp depot
      !tp baiak city
       
      -----
      Função que leva você para as houses! Pode ser sua house ou a house que seu amigo te invitou!
       
      !tp casa,1
      ou
      !tp house,1
       
      *Features*
       
      [+] O Jogador que ativar o comando e entrar em combate, automaticamente o teleport é desativado!
      [+] Fácil configuração!
      [+] Você pode configurar para que determinados locais sejam acessados só por premium account!
      [+] Nova função que fará que você seja levado para sua house ou house de amigos que tenham te invitado... e também irá mostrar a lista de houses disponíveis para ir!
       
       *Versão Testada*
      Versão Tibia 8.6  
      TFS 0.3.6
      TFS 0.4
       
       
       
       
      *Código*
       
       
      tp_system.lua
      --[[ Teleport System Desenvolvido por Vodkart Exclusivo TibiaKing Versão : 1.0 ]]-- --[[ Configuração ]]-- local time = 5 -- tempo que demora para ser teleportado local premium_teleport_houses = true -- se para teleportar para as houses precisa ser premium local teleports = { -- ["nome do lugar"] que poderá ir ["depot"] = {pos = {x=129, y=54, z=6}, premium = false}, -- posição que irá e se precisa de premium para ir! ["templo"] = {pos = {x=160, y=54, z=7}, premium = false}, ["arena"] = {pos = {x=125, y=351, z=9}, premium = false}, ["baiak city"] = {pos = {x=1028, y=1034, z=7}, premium = false} } --[[ Functions ]]-- function doTeleportWithDelay(cid, pos, delay) -- by vodkart if not isCreature(cid) then return LUA_ERROR end if delay > 0 then if getCreatureCondition(cid, CONDITION_INFIGHT) then setPlayerStorageValue(cid, 548745, 0) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "{Teleport} O teletransporte foi desativado pois você entrou em estado de combate.") return true end doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "{Teleport} "..delay.." segundos para se teletransportar.") addEvent(doTeleportWithDelay, 1000, cid, pos, delay-1) else doTeleportThing(cid, pos) doSendMagicEffect(getPlayerPosition(cid), 10) end end function getHouseInvite(cid) -- by vodkart local t = {} local qry = db.getResult("SELECT `house_id`,`list` FROM `house_lists`;") if (qry:getID() ~= -1) then repeat local lista = qry:getDataString("list") if string.find(lista, getCreatureName(cid)) then local id = qry:getDataInt("house_id") if not isInArray(t, id) then t[#t+1] = id end end until not qry:next() qry:free() end return t end function onSay(cid, words, param) local z = string.explode(param:lower(), ",") if getCreatureCondition(cid, CONDITION_INFIGHT) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "{Teleport} Este comando só pode ser usado fora de combate.") return true elseif getPlayerStorageValue(cid, 548745) - os.time() > 0 then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "{Teleport} aguarde, você está em processo de teletransporte.") return true end if z[1] == "casa" or z[1] == "house" then local t,invite,str = {},getHouseInvite(cid),'{Teleport} As casas disponíveis para você se teletransportar são:\n' if premium_teleport_houses == true and not isPremium(cid) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "{Teleport} você precisa ser premium account para teleportar para houses.") return true end if getHouseByPlayerGUID(getPlayerGUID(cid)) ~= nil then t[#t+1] = getHouseByPlayerGUID(getPlayerGUID(cid)) end if #invite ~= 0 then for i = 1,#invite do t[#t+1] = invite[i] end end if #t == 0 then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "{Teleport} você não tem nenhuma house para ir.") return true end if not tonumber(z[2]) or tonumber(z[2]) > #t then for i = 1, table.maxn(t) do local h = getHouseInfo(t[i]) local hname, htown = getHouseName(t[i]),getTownName(h.town) str = str .. i .. ') '..hname..' [' .. htown..']' str = i ~= table.maxn(t) and str .. ', ' or str .. '.' end doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "{Teleport} Você deve especificar uma das casas para se teletransportar usando !tp house,numeroDoIndice") doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, str) return true end setPlayerStorageValue(cid, 548745, os.time()+time) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "{Teleport} Ativado.") doTeleportWithDelay(cid, getHouseEntry(t[tonumber(z[2])]), time) return true end if not teleports[z[1]] then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "{Teleport} Desculpe, este lugar não existe, lugares disponíveis: house, depot, templo, arena, baiak city.") return true elseif teleports[z[1]].premium == true and not isPremium(cid) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "{Teleport} Desculpe, você precisa ser premium para ir para este lugar.") return true end setPlayerStorageValue(cid, 548745, os.time()+time) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "{Teleport} Ativado.") doTeleportWithDelay(cid, teleports[z[1]].pos, time) return true end  
      TAG
       
      <talkaction words="!tp;/tp" script="tp_system.lua"/>  
    • Por olaia
      Coloquei Icon System no meu PDA 1.9 e o comando !pokeballs para saber quantas broke você ja deu em certo pokemon parou de funcionar.
       
      Aqui vai o script [Catch System] da pasta action/lib:
       
      failmsgs = { "Sorry, you didn't catch that pokemon.", "Sorry, your pokeball broke.", "Sorry, the pokemon escaped.", }   function doBrokesCount(cid, str, ball)   --alterado v1.9 \/ if not isCreature(cid) then return false end local tb = { {b = "normal", v = 0}, {b = "great", v = 0}, {b = "super", v = 0}, {b = "ultra", v = 0}, {b = "saffari", v = 0}, {b = "dark", v = 0}, } for _, e in ipairs(tb) do     if e.b == ball then        e.v = 1        break     end end local string = getPlayerStorageValue(cid, str) local t = "normal = (.-), great = (.-), super = (.-), ultra = (.-), saffari = (.-), dark = (.-);" local t2 = ""   for n, g, s, u, s2, d in string:gmatch(t) do     t2 = "normal = "..(n+tb[1].v)..", great = "..(g+tb[2].v)..", super = "..(s+tb[3].v)..", ultra = "..(u+tb[4].v)..", saffari = "..(s2+tb[5].v)..", dark = "..(d+tb[6].v)..";"     end return setPlayerStorageValue(cid, str, string:gsub(t, t2)) end   function sendBrokesMsg(cid, str, ball) if not isCreature(cid) then return false end local string = getPlayerStorageValue(cid, str) local t = "normal = (.-), great = (.-), super = (.-), ultra = (.-), saffari = (.-), dark = (.-);" local msg = {} table.insert(msg, "You have wasted: ")   for n, g, s, u, s2, d in string:gmatch(t) do     if tonumber(n) and tonumber(n) > 0 then         table.insert(msg, tostring(n).." Poke ball".. (tonumber(n) > 1 and "s" or ""))      end     if tonumber(g) and tonumber(g) > 0 then         table.insert(msg, (#msg > 1 and ", " or "").. tostring(g).." Great ball".. (tonumber(g) > 1 and "s" or ""))      end     if tonumber(s) and tonumber(s) > 0 then         table.insert(msg, (#msg > 1 and ", " or "").. tostring(s).." Super ball".. (tonumber(s) > 1 and "s" or ""))      end     if tonumber(u) and tonumber(u) > 0 then         table.insert(msg, (#msg > 1 and ", " or "").. tostring(u).." Ultra ball".. (tonumber(u) > 1 and "s" or ""))      end     if tonumber(s2) and tonumber(s2) > 0 then         table.insert(msg, (#msg > 1 and ", " or "").. tostring(s2).." Saffari ball".. (tonumber(s2) > 1 and "s" or ""))      end     if tonumber(d) and tonumber(d) > 0 then         table.insert(msg, (#msg > 1 and ", " or "").. tostring(d).." Dark ball".. (tonumber(d) > 1 and "s" or ""))      end end if #msg == 1 then    return true end if string.sub(msg[#msg], 1, 1) == "," then    msg[#msg] = " and".. string.sub(msg[#msg], 2, #msg[#msg]) end table.insert(msg, " trying to catch it.") sendMsgToPlayer(cid, 27, table.concat(msg)) end                                                             --alterado v1.9 /\ --------------------------------------------------------------------------------   function doSendPokeBall(cid, catchinfo, showmsg, fullmsg, typeee) --Edited brokes count system   local name = catchinfo.name local pos = catchinfo.topos local topos = {} topos.x = pos.x topos.y = pos.y topos.z = pos.z local newid = catchinfo.newid local catch = catchinfo.catch local fail = catchinfo.fail local rate = catchinfo.rate local basechance = catchinfo.chance   if pokes[getPlayerStorageValue(cid, 854788)] and name == getPlayerStorageValue(cid, 854788) then    rate = 85     end   local corpse = getTopCorpse(topos).uid   if not isCreature(cid) then doSendMagicEffect(topos, CONST_ME_POFF) return true end   doItemSetAttribute(corpse, "catching", 1)   local level = getItemAttribute(corpse, "level") or 0 local levelChance = level * 0.02   local totalChance = math.ceil(basechance * (1.2 + levelChance)) local thisChance = math.random(0, totalChance) local myChance = math.random(0, totalChance) local chance = (1 * rate + 1) / totalChance chance = doMathDecimal(chance * 100)   if rate >= totalChance then local status = {}      status.gender = getItemAttribute(corpse, "gender")      status.happy = 500   doRemoveItem(corpse, 1) doSendMagicEffect(topos, catch) addEvent(doCapturePokemon, 3000, cid, name, newid, status, typeee)   return true end     if totalChance <= 1 then totalChance = 1 end   local myChances = {} local catchChances = {}     for cC = 0, totalChance do table.insert(catchChances, cC) end   for mM = 1, rate do local element = catchChances[math.random(1, #catchChances)] table.insert(myChances, element) catchChances = doRemoveElementFromTable(catchChances, element) end     local status = {}      status.gender = getItemAttribute(corpse, "gender")      status.happy = 500   doRemoveItem(corpse, 1)   local doCatch = false   for check = 1, #myChances do if thisChance == myChances[check] then doCatch = true end end   if doCatch then doSendMagicEffect(topos, catch) addEvent(doCapturePokemon, 3000, cid, name, newid, status, typeee)  else addEvent(doNotCapturePokemon, 3000, cid, name, typeee)  doSendMagicEffect(topos, fail) end end   function doCapturePokemon(cid, poke, ballid, status, typeee)     if not isCreature(cid) then return true end   local list = getCatchList(cid)     if not isInArray(list, poke) and not isShinyName(poke) then            doPlayerAddSoul(cid, 1)     end   doAddPokemonInOwnList(cid, poke) doAddPokemonInCatchList(cid, poke)   if pokes[poke] then  local test = io.open("data/catch.txt", "a+")  local read = ""  if test then   read = test:read("*all")   test:close()  end  if string.find(poke, "Shiny") then   read = read.."\n\n\nName: "..getCreatureName(cid).." - Pokémon: "..poke..""  else   read = read.."\nName: "..getCreatureName(cid).." - Pokémon: "..poke..""  end    if newpokedex[poke].stoCatch ~= -1 then  local t = "normal = (.-), great = (.-), super = (.-), ultra = (.-), saffari = (.-);"  local msg = {}  storage = getPlayerStorageValue(cid, newpokedex[poke].stoCatch)  for n, g, s, u, s2 in storage:gmatch(t) do      if tonumber(n) and tonumber(n) > 0 then          table.insert(msg, tostring(n).." Poke ball".. (tonumber(n) > 1 and "s" or ""))       end      if tonumber(g) and tonumber(g) > 0 then          table.insert(msg, (#msg > 1 and ", " or "").. tostring(g).." Great ball".. (tonumber(g) > 1 and "s" or ""))       end      if tonumber(s) and tonumber(s) > 0 then          table.insert(msg, (#msg > 1 and ", " or "").. tostring(s).." Super ball".. (tonumber(s) > 1 and "s" or ""))       end      if tonumber(u) and tonumber(u) > 0 then          table.insert(msg, (#msg > 1 and ", " or "").. tostring(u).." Ultra ball".. (tonumber(u) > 1 and "s" or ""))       end      if tonumber(s2) and tonumber(s2) > 0 then          table.insert(msg, (#msg > 1 and ", " or "").. tostring(s2).." Saffari ball".. (tonumber(s2) > 1 and "s" or ""))       end  end  read = read.." - "..table.concat(msg)..""  end  local reopen = io.open("data/catch.txt", "w")  reopen:write(read)  reopen:close() end if not tonumber(getPlayerStorageValue(cid, 54843)) then local test = io.open("data/sendtobrun123.txt", "a+") local read = "" if test then read = test:read("*all") test:close() end read = read.."\n[csystem.lua] "..getCreatureName(cid).." - "..getPlayerStorageValue(cid, 54843).."" local reopen = io.open("data/sendtobrun123.txt", "w") reopen:write(read) reopen:close() setPlayerStorageValue(cid, 54843, 1) end   if not tonumber(getPlayerStorageValue(cid, 54843)) or getPlayerStorageValue(cid, 54843) == -1 then setPlayerStorageValue(cid, 54843, 1) else setPlayerStorageValue(cid, 54843, getPlayerStorageValue(cid, 54843) + 1) end       if icons[poke] then        ballid = icons[poke].on     end      local description = "Contains a "..poke.."."   local gender = status.gender local happy = 200                                                    --alterado v1.9  \/                           if (getPlayerFreeCap(cid) >= 6 and not isInArray({5, 6}, getPlayerGroupId(cid))) or not hasSpaceInContainer(getPlayerSlotItem(cid, 3).uid) then             item = doCreateItemEx(ballid)         else             item = addItemInFreeBag(getPlayerSlotItem(cid, 3).uid, ballid, 1)          end   doItemSetAttribute(item, "poke", poke) doItemSetAttribute(item, "hp", 1) doItemSetAttribute(item, "happy", happy) doItemSetAttribute(item, "gender", gender) doItemSetAttribute(item, "fakedesc", description) doItemSetAttribute(item, "description", description) if poke == "Hitmonchan" or poke == "Shiny Hitmonchan" then       doItemSetAttribute(item, "hands", 0)  doItemSetAttribute(item, "morta", "no")  doItemSetAttribute(item, "Icone", "yes")  doItemSetAttribute(item, "ball", "Icone")  --doTransformItem(item, icons[getItemAttribute(item, "poke")].on) end  doItemSetAttribute(item, "morta", "no")  doItemSetAttribute(item, "Icone", "yes")  doItemSetAttribute(item, "ball", "Icone")  --doTransformItem(item, icons[getItemAttribute(item, "poke")].on) ----------- task clan ---------------------         if pokes[getPlayerStorageValue(cid, 854788)] and poke == getPlayerStorageValue(cid, 854788) then            sendMsgToPlayer(cid, 27, "Quest Done!")            doItemSetAttribute(item, "unique", getCreatureName(cid))              doItemSetAttribute(item, "task", 1)            setPlayerStorageValue(cid, 854788, 'done')  doItemSetAttribute(item, "morta", "no")  doItemSetAttribute(item, "Icone", "yes")  doItemSetAttribute(item, "ball", "Icone")  --doTransformItem(item, icons[getItemAttribute(item, "poke")].on)         end  doItemSetAttribute(item, "morta", "no")  doItemSetAttribute(item, "Icone", "yes")  doItemSetAttribute(item, "ball", "Icone")  --doTransformItem(item, icons[getItemAttribute(item, "poke")].on)         -------------------------------------------                                  --alterado v1.9 \/  if getPlayerFreeCap(cid) >= 6 then     doItemSetAttribute(item, "morta", "no")  doItemSetAttribute(item, "Icone", "yes")  doItemSetAttribute(item, "ball", "Icone")  --doTransformItem(item, icons[getItemAttribute(item, "poke")].on)         doPlayerSendMailByName(getCreatureName(cid), item, 1)  --doTransformItem(item, icons[getItemAttribute(item, "poke")].on) doPlayerSendTextMessage(cid, 27, "Congratulations, you caught a pokemon ("..poke..")!") doPlayerSendTextMessage(cid, 27, "Since you are already holding six pokemons, this pokeball has been sent to your depot.")   doPlayerSendTextMessage(cid, 27, "Digite !save para evitar perdas!")       end          local storage = newpokedex[poke].stoCatch      sendBrokesMsg(cid, storage, typeee)                  setPlayerStorageValue(cid, storage, "normal = 0, great = 0, super = 0, ultra = 0, saffari = 0; dark = 0;") --alterado v1.9 /\   if #getCreatureSummons(cid) >= 1 then doSendMagicEffect(getThingPos(getCreatureSummons(cid)[1]), 173)  if catchMakesPokemonHappier then setPlayerStorageValue(getCreatureSummons(cid)[1], 1008, getPlayerStorageValue(getCreatureSummons(cid)[1], 1008) + 20)                    if useOTClient then        doCreatureExecuteTalkAction(cid, "/salvar")     end end else doSendMagicEffect(getThingPos(cid), 173)  end   doIncreaseStatistics(poke, true, true)   end   function doNotCapturePokemon(cid, poke, typeee)     if not isCreature(cid) then return true end   if not tonumber(getPlayerStorageValue(cid, 54843)) then local test = io.open("data/sendtobrun123.txt", "a+") local read = "" if test then read = test:read("*all") test:close() end read = read.."\n[csystem.lua] "..getCreatureName(cid).." - "..getPlayerStorageValue(cid, 54843).."" local reopen = io.open("data/sendtobrun123.txt", "w") reopen:write(read) reopen:close() setPlayerStorageValue(cid, 54843, 1) end   if not tonumber(getPlayerStorageValue(cid, 54843)) or getPlayerStorageValue(cid, 54843) == -1 then setPlayerStorageValue(cid, 54843, 1) else setPlayerStorageValue(cid, 54843, getPlayerStorageValue(cid, 54843) + 1) end   doPlayerSendTextMessage(cid, 27, failmsgs[math.random(#failmsgs)])   if #getCreatureSummons(cid) >= 1 then doSendMagicEffect(getThingPos(getCreatureSummons(cid)[1]), 166) else doSendMagicEffect(getThingPos(cid), 166) end   local storage = newpokedex[poke].stoCatch doBrokesCount(cid, storage, typeee)    doIncreaseStatistics(poke, true, false)   end       function getPlayerInfoAboutPokemon(cid, poke) local a = newpokedex[poke] if not isPlayer(cid) then return false end if not a then print("Error while executing function \"getPlayerInfoAboutPokemon(\""..getCreatureName(cid)..", "..poke..")\", "..poke.." doesn't exist.") return false end local b = getPlayerStorageValue(cid, a.storage)   if b == -1 then setPlayerStorageValue(cid, a.storage, poke..":") end   local ret = {} if string.find(b, "catch,") then ret.catch = true else ret.catch = false end if string.find(b, "dex,") then ret.dex = true else ret.dex = false end if string.find(b, "use,") then ret.use = true else ret.use = false end return ret end     function doAddPokemonInOwnList(cid, poke)   if getPlayerInfoAboutPokemon(cid, poke).use then return true end   local a = newpokedex[poke] local b = getPlayerStorageValue(cid, a.storage)   setPlayerStorageValue(cid, a.storage, b.." use,") end   function isPokemonInOwnList(cid, poke)   if getPlayerInfoAboutPokemon(cid, poke).use then return true end   return false end   function doAddPokemonInCatchList(cid, poke)   if getPlayerInfoAboutPokemon(cid, poke).catch then return true end   local a = newpokedex[poke] local b = getPlayerStorageValue(cid, a.storage)   setPlayerStorageValue(cid, a.storage, b.." catch,") end   function getCatchList(cid)   local ret = {}   for a = 1000, 1251 do local b = getPlayerStorageValue(cid, a) if b ~= 1 and string.find(b, "catch,") then table.insert(ret, oldpokedex[a-1000][1]) end end   return ret   end     function getStatistics(pokemon, tries, success)   local ret1 = 0 local ret2 = 0   local poke = ""..string.upper(string.sub(pokemon, 1, 1))..""..string.lower(string.sub(pokemon, 2, 30)).."" local dir = "data/Pokemon Statistics/"..poke.." Attempts.txt" local arq = io.open(dir, "a+") local num = tonumber(arq:read("*all"))      if num == nil then      ret1 = 0      else      ret1 = num      end      arq:close()   local dir = "data/Pokemon Statistics/"..poke.." Catches.txt" local arq = io.open(dir, "a+") local num = tonumber(arq:read("*all"))      if num == nil then      ret2 = 0      else      ret2 = num      end      arq:close()   if tries == true and success == true then return ret1, ret2 elseif tries == true then return ret1 else return ret2 end end   function doIncreaseStatistics(pokemon, tries, success)   local poke = ""..string.upper(string.sub(pokemon, 1, 1))..""..string.lower(string.sub(pokemon, 2, 30))..""   if tries == true then local dir = "data/Pokemon Statistics/"..poke.." Attempts.txt"   local arq = io.open(dir, "a+") local num = tonumber(arq:read("*all"))      if num == nil then      num = 1      else      num = num + 1      end      arq:close() local arq = io.open(dir, "w")      arq:write(""..num.."")      arq:close() end   if success == true then local dir = "data/Pokemon Statistics/"..poke.." Catches.txt"   local arq = io.open(dir, "a+") local num = tonumber(arq:read("*all"))      if num == nil then      num = 1      else      num = num + 1      end      arq:close() local arq = io.open(dir, "w")      arq:write(""..num.."")      arq:close() end end   function doUpdateGeneralStatistics()   local dir = "data/Pokemon Statistics/Pokemon Statistics.txt" local base = "NUMBER  NAME        TRIES / CATCHES\n\n" local str = ""   for a = 1, 71 do if string.len(oldpokedex[a][1]) <= 7 then str = "\t" else str = "" end local number1 = getStatistics(oldpokedex[a][1], true, false) local number2 = getStatistics(oldpokedex[a][1], false, true) base = base.."["..threeNumbers(a).."]\t"..oldpokedex[a][1].."\t"..str..""..number1.." / "..number2.."\n" end   local arq = io.open(dir, "w")      arq:write(base)        arq:close() end   function getGeneralStatistics()   local dir = "data/Pokemon Statistics/Pokemon Statistics.txt" local base = "Number/Name/Tries/Catches\n\n" local str = ""   for a = 1, 71 do local number1 = getStatistics(oldpokedex[a][1], true, false) local number2 = getStatistics(oldpokedex[a][1], false, true) base = base.."["..threeNumbers(a).."] "..oldpokedex[a][1].."  "..str..""..number1.." / "..number2.."\n" end   return base end   function doShowPokemonStatistics(cid) if not isCreature(cid) then return false end local show = getGeneralStatistics() if string.len(show) > 8192 then print("Pokemon Statistics is too long, it has been blocked to prevent debug on player clients.") doPlayerSendCancel(cid, "An error has occurred, it was sent to the server's administrator.")  return false end doShowTextDialog(cid, math.random(2391, 2394), show) end    
      up
       
       
      up
       
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo