Ir para conteúdo

Tricoder

Héroi
  • Registro em

  • Última visita

Tudo que Tricoder postou

  1. Se seu computador for 64 bits, tente usar o TFS 32bits. E assim vice-versa. Veja se resolve, uma vez aconteceu comigo e eu fiz isso...
  2. Troca seu war.lua por esse: function onSay(cid, words, param, channel) local guild = getPlayerGuildId(cid) if(not guild or getPlayerGuildLevel(cid) < GUILDLEVEL_LEADER) then doPlayerSendChannelMessage(cid, "", "You cannot execute this talkaction.", TALKTYPE_CHANNEL_W, 0) return true end local t = string.explode(param, ",") if(not t[2]) then doPlayerSendChannelMessage(cid, "", "Not enough param(s).", TALKTYPE_CHANNEL_W, 0) return true end local enemy = getGuildId(t[2]) if(not enemy) then doPlayerSendChannelMessage(cid, "", "Guild \"" .. t[2] .. "\" does not exists.", TALKTYPE_CHANNEL_W, 0) return true end if(enemy == guild) then doPlayerSendChannelMessage(cid, "", "You cannot perform war action on your own guild.", TALKTYPE_CHANNEL_W, 0) return true end local enemyName, tmp = "", db.getResult("SELECT `name` FROM `guilds` WHERE `id` = " .. enemy) if(tmp:getID() ~= -1) then enemyName = tmp:getDataString("name") tmp:free() end if(isInArray({"accept", "reject", "cancel"}, t[1])) then local query = "`guild_id` = " .. enemy .. " AND `enemy_id` = " .. guild if(t[1] == "cancel") then query = "`guild_id` = " .. guild .. " AND `enemy_id` = " .. enemy end tmp = db.getResult("SELECT `id`, `begin`, `end`, `payment` FROM `guild_wars` WHERE " .. query .. " AND `status` = 0") if(tmp:getID() == -1) then doPlayerSendChannelMessage(cid, "", "Currently there's no pending invitation for a war with " .. enemyName .. ".", TALKTYPE_CHANNEL_W, 0) return true end if(t[1] == "accept") then local _tmp = db.getResult("SELECT `balance` FROM `guilds` WHERE `id` = " .. guild) local state = _tmp:getID() < 0 or _tmp:getDataInt("balance") < tmp:getDataInt("payment") _tmp:free() if(state) then doPlayerSendChannelMessage(cid, "", "Your guild balance is too low to accept this invitation.", TALKTYPE_CHANNEL_W, 0) return true end db.query("UPDATE `guilds` SET `balance` = `balance` - " .. tmp:getDataInt("payment") .. " WHERE `id` = " .. guild) end query = "UPDATE `guild_wars` SET " local msg = "accepted " .. enemyName .. " invitation to war." if(t[1] == "reject") then query = query .. "`end` = " .. os.time() .. ", `status` = 2" msg = "rejected " .. enemyName .. " invitation to war." elseif(t[1] == "cancel") then query = query .. "`end` = " .. os.time() .. ", `status` = 3" msg = "canceled invitation to a war with " .. enemyName .. "." else query = query .. "`begin` = " .. os.time() .. ", `end` = " .. (tmp:getDataInt("end") > 0 and (os.time() + ((tmp:getDataInt("begin") - tmp:getDataInt("end")) / 86400)) or 0) .. ", `status` = 1" end query = query .. " WHERE `id` = " .. tmp:getDataInt("id") if(t[1] == "accept") then doGuildAddEnemy(guild, enemy, tmp:getDataInt("id"), WAR_GUILD) doGuildAddEnemy(enemy, guild, tmp:getDataInt("id"), WAR_ENEMY) end tmp:free() db.query(query) doBroadcastMessage(getPlayerGuildName(cid) .. " has " .. msg, MESSAGE_EVENT_ADVANCE) return true end if(t[1] == "invite") then local str = "" tmp = db.getResult("SELECT `guild_id`, `status` FROM `guild_wars` WHERE `guild_id` IN (" .. guild .. "," .. enemy .. ") AND `enemy_id` IN (" .. enemy .. "," .. guild .. ") AND `status` IN (0, 1)") if(tmp:getID() ~= -1) then if(tmp:getDataInt("status") == 0) then if(tmp:getDataInt("guild_id") == guild) then str = "You have already invited " .. enemyName .. " to war." else str = enemyName .. " have already invited you to war." end else str = "You are already on a war with " .. enemyName .. "." end tmp:free() end if(str ~= "") then doPlayerSendChannelMessage(cid, "", str, TALKTYPE_CHANNEL_W, 0) return true end local frags = tonumber(t[3]) if(frags ~= nil) then frags = math.max(10, math.min(1000, frags)) else frags = 100 end local payment = tonumber(t[4]) if(payment ~= nil) then payment = math.max(100000, math.min(1000000000, payment)) tmp = db.getResult("SELECT `balance` FROM `guilds` WHERE `id` = " .. guild) local state = tmp:getID() < 0 or tmp:getDataInt("balance") < payment tmp:free() if(state) then doPlayerSendChannelMessage(cid, "", "Your guild balance is too low for such payment.", TALKTYPE_CHANNEL_W, 0) return true end db.query("UPDATE `guilds` SET `balance` = `balance` - " .. payment .. " WHERE `id` = " .. guild) else payment = 0 end local begining, ending = os.time(), tonumber(t[5]) if(ending ~= nil and ending ~= 0) then ending = begining + (ending * 86400) else ending = 0 end db.query("INSERT INTO `guild_wars` (`guild_id`, `enemy_id`, `begin`, `end`, `frags`, `payment`) VALUES (" .. guild .. ", " .. enemy .. ", " .. begining .. ", " .. ending .. ", " .. frags .. ", " .. payment .. ");") doBroadcastMessage(getPlayerGuildName(cid) .. " has invited " .. enemyName .. " to war till " .. frags .. " frags.", MESSAGE_EVENT_ADVANCE) return true end if(not isInArray({"end", "finish"}, t[1])) then return false end local status = (t[1] == "end" and 1 or 4) tmp = db.getResult("SELECT `id` FROM `guild_wars` WHERE `guild_id` = " .. guild .. " AND `enemy_id` = " .. enemy .. " AND `status` = " .. status) if(tmp:getID() ~= -1) then local query = "UPDATE `guild_wars` SET `end` = " .. os.time() .. ", `status` = 5 WHERE `id` = " .. tmp:getDataInt("id") tmp:free() doGuildRemoveEnemy(guild, enemy) doGuildRemoveEnemy(enemy, guild) db.query(query) doBroadcastMessage(getPlayerGuildName(cid) .. " has " .. (status == 4 and "mend fences" or "ended up a war") .. " with " .. enemyName .. ".", MESSAGE_EVENT_ADVANCE) return true end if(status == 4) then doPlayerSendChannelMessage(cid, "", "Currently there's no pending war truce from " .. enemyName .. ".", TALKTYPE_CHANNEL_W, 0) return true end tmp = db.getResult("SELECT `id`, `end` FROM `guild_wars` WHERE `guild_id` = " .. enemy .. " AND `enemy_id` = " .. guild .. " AND `status` = 1") if(tmp:getID() ~= -1) then if(tmp:getDataInt("end") > 0) then tmp:free() doPlayerSendChannelMessage(cid, "", "You cannot request ending for war with " .. enemyName .. ".", TALKTYPE_CHANNEL_W, 0) return true end local query = "UPDATE `guild_wars` SET `status` = 4, `end` = " .. os.time() .. " WHERE `id` = " .. tmp:getDataInt("id") tmp:free() db.query(query) doBroadcastMessage(getPlayerGuildName(cid) .. " has signed an armstice declaration on a war with " .. enemyName .. ".", MESSAGE_EVENT_ADVANCE) return true end doPlayerSendChannelMessage(cid, "", "Currently there's no active war with " .. enemyName .. ".", TALKTYPE_CHANNEL_W, 0) return true end Depois poste se resolveu, por favor.
  3. Refugia Jack 8.60 Informações Templo foi modificado. Foram adicionados novos teleports. Novos treiners. Área de teleports completamente modificada. Download http://www.4shared.com/rar/4RNEg-6W/Refugia_86.html Scan https://www.virustotal.com/file/5a6ac95f69e215e51a263ca35eb629e60ac69eaf0b656fc115fa18e27758de26/analysis/1358487516/ Créditos totais à jacksonsns.
  4. Segue esse tutorial: https://www.youtube.com/watch?v=z2CrWHVtMXY
  5. Hard Baiak 8.60 Informações Novo templo bem RPG Visual novo dos teleports War system Servidor estável VIP donate Vários eventos automáticos Vocações balanceadas Armas pouco editadas para melhor pvp. Max 90 de atk Quest novas Download http://www.4shared.com/rar/X1gMs04m/Hard_Baiak_ADM_Junior.html Scan https://www.virustotal.com/en/file/e803863734f1bed866afa12b43b271aba32beb109d2fbfcaa0a05e48fc4a7c42/analysis/1373895035/ Créditos totais à [ADM] Junior.
  6. Baiak VIPs 8.60 Informações Novo templo com mais um andar Nova área em frente ao templo Depot super modificado Teleports modificados Citys VIPs arrumadas Retirados alguns bugs Ao alcançar a VIP 4 na frente do nome do char, fica escrito [VIP] Se o server cair, salva sozinho Download http://www.mediafire.com/download/ji1hvgsh2ylfcfk/Baiak-Vips.rar Scan https://www.virustotal.com/en/file/41181c1a7f6d6c22f485dcc806f70a57e21790f70c630801dc99a44bd6c797f7/analysis/1448409442/ Créditos totais à tomax.
  7. Parabéns, seu tópico de conteúdo foi aprovado! Muito obrigado pela sua contribuição, nós do Tibia King agradecemos. Seu conteúdo com certeza ajudará à muitos outros, você recebeu +1 REP.
  8. Tricoder postou uma resposta no tópico em Remere's Map Editor
    Cemitério Créditos à Victor Amaral Video Aula
  9. Tricoder postou uma resposta no tópico em Remere's Map Editor
    Shop Créditos à Victor Amaral Video Aula
  10. Restaurante/Barzinho Créditos à Victor Amaral Video Aula
  11. Base de Montanha Créditos à AnyurCT Video Aula
  12. Paradise Evolution 8.60 Informações Mapa evolutions editado Cada vocação tem suas próprias magias editadas Novos monstros Itens donate Novas quests Novas outfits Teleports Novas runas Npc Addoner Npc Priest *Realiza Casamentos* Evento Tetris Evento Snake Evento Zombie Evento Race PvpE Room E muito mais! Download http://www.mediafire.com/download/pzr8smmlc32kote/methemia+exp+alta+8.60.rar Scan https://www.virustotal.com/en/file/f53f9969638665f369fe3983ca93129010f049d51f201f6e786405badeb81f60/analysis/1448332074/ Créditos totais à Amiroslo, Brilux, BT, SmoOkeR e Animal Pak.
  13. http://www.tibiaking.com/forum/topic/21118-gesior-pagseguro-autom%C3%A1tico-100-funcional
  14. @ADM WAR, amo seus mapas! Você deveria disponibilizar mais conteúdos e você mesmo postar aqui, poxa. Eu apoio a causa, haha.
  15. Fuzion Global 8.60 Informações Mapa Global 100%. Rashid está de cidade em cidade em cada dia da semana. Todas as quests 100%. Spells 100%. Monstros 100%. Teleports; Teleports para as quests 100%. Offline Trainer 100%. Servidor 100% estável. Teleports para as cidades 100%. E muito mais! Quests The Annihilator Quest Demon Helmet Quest The Elemental Spheres Quest Firewalker Boots Quest The Inquisition Quest Killing in the Name of... Quest The Pits of Inferno Quest Shadows of Yalahar Quest Children of the Revolution Quest The New Frontier Quest The Demon Oak Quest Tomes of Knowledge Quest In Service of Yalahar Quest Cidades Carlin Thais Ab'Dendriel Venore Liberty Bay Outlaw Camp Ankrahmun Zao + Razachai! Edron Kazordoon Port Hope Svargrund Yalahar Darashia E muitas outras... Download http://www.4shared.com/rar/PLed471h/westelation-fusion.html Scan https://www.virustotal.com/en/file/e6fe9b5b05b8bcbd1928891a0159c02dce783a08661c2096bf9aaf7d3bc13027/analysis/1375810285/ Créditos totais à Lordfireot.
  16. Tricoder postou uma resposta no tópico em Websites
    Parabéns, seu tópico de conteúdo foi aprovado! Muito obrigado pela sua contribuição, nós do Tibia King agradecemos. Seu conteúdo com certeza ajudará à muitos outros, você recebeu +1 REP.
  17. Cutopi Baiak 8.60 Informações Erros do .exe arrumados Templo editado Cidade editada NPCs editados Sistema VIP Lottery System Novos comandos !ubp !food !donate Download https://mega.co.nz/#!JpVQUTTI!d6VwBgGjdiSPMNS8KpyJ4Ch-tHx_lzMIgwkexWbwlQw Scan https://www.virustotal.com/en/file/3d841179b14b446b3edd3dd7f265f8b7082134a538a47415fccafe1a3ed39713/analysis/1378593609/ Créditos totais à Lordfireot.
  18. Eribaiak Edition v3.0 8.60 Informações Retirado executavel Crystal e Modificado para TFS All features, actions, funções 100% Addons 100% - Os addons São recebidos conforme Up LVL Spells 100% - Todas para Free e com mais 4 Spells VIPs: 1° Spell Vip = Apocalypse - exevo gran mas vis lux 2° Spell Vip = Explosion Beam - exevo gran vis 3° Spell Vip = Fury of Nature- exevo gran max tera 4° Spell Vip = Terra Beam - exevo gran tera Vocações balanceadas. Estabilidade - Ainda em teste. Serve save sem lag. Clean 100% Talkactions GOD, CM, GM, Players 100% Mapa Baiak Yourots editado. INQ. Quest 100% POI 100% Anihi 100% Área VIP - Uma grande cidade nova com hunts e teleports 100% Sala de teleports arenas e muito mais... Atualizações Adicionado sets vips para shopping com Sistema de Makers para Upgrade dos Itens. Adicionado novo outfit "King" ao alcançar lvl do Rei Eribaiak. Quests Logs funcionando com algumas quests. Mapa com novo visual Npcs concertados e melhorados Novas quests Novas hunts Novas arenas Novos itens donation Conta do GOD god/god Download http://www.mediafire.com/download/iila9a09lfbs1yo/eribaiak+3.0.rar Scan https://www.virustotal.com/en/file/be591e236edf2999ec5bc1c94592f5c5f76947f11539a7e6ceb0d0c7e168cfe4/analysis/1371532861/ Senha para descompactar erimythoficial Créditos totais à Erimyth e Roksas.
  19. Hunter Baiak v2.0 8.60 Informações Baiak totalmente editado com sistema exclusivo Novos monstros Novas áreas Com apenas uma vip Que da acesso à 2 áreas Área free Para Players level 200+ Novos itens Novas quests Foram removidos todos os arquivos inúteis Removido todos os erros e bugs E muito mais... Evento Imperador Torne-se Imperador e obtenha acesso a áreas Exclusivas e 50% a mais de EXP. Outros players tomarão seu Império. (Recupere-o) Tornando-se VIP no Servidor Para se tornar VIP, é necessário fazer a quest VIP que se encontra no Templo. Distro Limpa Download http://www.4shared.com/rar/qN8iUnzzce/Baiak_Hunter.html? Scan http://virusscan.jotti.org/pt-br/scanresult/cfda1e1e72ba28924b4d88dc559b226d4ab6f450 Créditos totais à DuuhCarvalho
  20. YUROTS CLASSIC V2 Barco Behemoth Quest Cidade Demon oak Sala de Treinamento Quests Demon oak Blue Legs Boots of Hasle Anihi Demon Helmet Dragon Scale Mail Dragon Scale Helmet Dragon Scale Legs Royal Helmet Golden Armor Demon Shield Behemoth Quest Golden Boots Magic Plate Armor Crown Set Quest Bright Sword Quest Mastermind Shield Amazon Armor Amazon Helmet Amazon Shield Dwarven Armor Dwarven Legs Dwarven Helmet Entre outras... Novas hunts Frost Dragon Grim Reaper Hydras Hellhound com Boss do Hellgorak Warlock Boss do Ferumbras na Quest da Dragon Scale Legs e Helmet. Medusa Massacre Na Poi Senha do GOD yurots/yurots Servidor http://www.4shared.com/rar/IdejuaNTce/Yurots_Classico_V2.html Scan https://www.virustotal.com/en/file/1268d24e5423fb8b4bb9e3ffbff1dafcc2c79a1342f0474ae36906ee7084afab/analysis/1448272267/ Créditos totais à LuisBaiak.
  21. BAIAK SKULL Mudanças Novos monstros Novos sistemas Novas cidades Novo templo Attack speed ajustado Lag removido Bugs removidos E muito mais... Servidor http://www.4shared.com/rar/VH6smrf7ce/BaiakSkull.html? Scan https://www.virustotal.com/en/file/d42290acf91326a752fe6a91d5fe6543dacbbc15cf35c6824b106841faf61384/analysis/1446766236/ Créditos totais à Adm Andrey
  22. Principais Quests Annihilator Pits OF Inferno Demon Helmet Monstros VIPs Hydra VIP Demon VIP Infernalist VIP Grim Reaper VIP Medusa Vip Frost Dragon VIP Warlock Vip Sources Oficiais https://mega.nz/#!nct3SJyK!4A_UxziWmio7OwG2J8G4qz_x_OsRKRr10JOl9oAsTVk Servidor https://mega.nz/#!3Z8gSTiQ!5LbFVZsr76W-1Xx1Ic0mMlS_3wfIZN6iYOTtfjTzl1k Scan https://www.virustotal.com/pt/file/94a972e48bd46b85bad3b789ed05c05579a9aaf342b7c1a6b498041ca1b98bca/analysis/1440730843/ Créditos totais à Marco Oliveira.

Informação Importante

Confirmação de Termo