Ir para conteúdo

franckle

Membro
  • Registro em

  • Última visita

Tudo que franckle postou

  1. franckle postou uma resposta no tópico em Formação de Equipe
    Boa tarde galera , estou montando um projeto para meu global 7.4 / 7.72 , low rate com mais de 70 tasks e vários sistemas e estou precisando de pessoas para me ajudar .... , ja tenho o dedicado , tudo certinho e preciso de pessoas que saibam um pouco das coisas que vou citar a baixo. Scripter OT Client Maker SPR / Pic Editor NPC / Monsters Maker Webmaster Quem tiver interesse deixe a mensagem a baixo que entrarei em contato.
  2. franckle postou uma resposta no tópico em Suporte Tibia OTServer
    Alguem me ajuda por favor
  3. Ola galera , boa tarde .. antes de fazer meu pedido , eu procurei em todo o forum Arena 7.4/7.72 e não encontrei ... serah que alguem poderia me ajudar com esse problema? queria montar uma arena onde o player pode ir a qualquer hora que quiser.. teleport ou pedir para npcs ... ( barco ) , e nao perdessem nada na arena como Level , equips , skills e magic .. e queria colocar pra que nessa area de Arena fosse tudo infinito .. Exemplo ( Runas , Burst Arrows ... todos itens.. ) e quando o player saísse da arena .. nao salvava .. voltava com suas coisas que ja tinha mesmo .. serah que alguem poderia me ajudar com isso? Obrigado e aguardo respostas.
  4. franckle postou uma resposta no tópico em Suporte Tibia OTServer
    UP
  5. franckle postou uma resposta no tópico em Suporte Tibia OTServer
    ta tranquilooo brooo obrigado mesmo assim +REPP
  6. franckle postou uma resposta no tópico em Suporte Tibia OTServer
    testei aqui com /reload npcs , mas parece que não foi .. porque ele continua vendendo de 1 em 1 .. vou da rr no executavel .. as vezes é isso , pera ae é realmente .. ele esta vendendo de 1 por 1 , o script que voce copiou , tenho que apagar aquela explicação sua ou editar o 1? porque se precisar .. eu nao fiz isso kkkkk
  7. franckle postou uma resposta no tópico em Suporte Tibia OTServer
    Boooa noite galera .. , seguinte se alguem puder me ajudar com o meu problema ficarei muito gratooo OTserv versao 7.4 / 7.72 Problema: meu npc de runa só vende de 1 em 1 bp de life fluid ou mana fluid .. , queria colocar ele pra vender tipo varias .. Exemplo: o player quer compra 10 bp de lf de uma vez ... e o npc vai la e vende .. entenderam? NPC: ------------------- local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) -- OTServ event handling functions start function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end function onThink() npcHandler:onThink() end -- OTServ event handling functions end function creatureSayCallback(cid, type, msg) if not npcHandler:isFocused(cid) then return false end if msgcontains(msg, 'bp of lf') or msgcontains(msg, 'bp of life fluid') or msgcontains(msg, 'bp lf') then npcHandler:say('Do you want to buy a backpack of explosion rune for 1200 gold coins?') talk_state = 5 elseif msgcontains(msg, 'yes') and talk_state == 5 then if getPlayerMoney(cid) >= 1200 then purple2_bp = doPlayerAddItem(cid, 2000, 1) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doAddContainerItem(purple2_bp, 2006, 10) doPlayerRemoveMoney(cid, 1200) npcHandler:say('Thank you for buying.') talk_state = 0 else npcHandler:say('You don\'t have enough money.') talk_state = 0 end end if msgcontains(msg, 'bp of mf') or msgcontains(msg, 'bp of manafluid') or msgcontains(msg, 'bp mf') then npcHandler:say('Do you want to buy a backpack of mana fluid for 2000 gold coins?') talk_state = 6 elseif msgcontains(msg, 'yes') and talk_state == 6 then if getPlayerMoney(cid) >= 2000 then brown_bp = doPlayerAddItem(cid, 2001, 1) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doAddContainerItem(brown_bp, 2006, 7) doPlayerRemoveMoney(cid, 2000) npcHandler:say('Thank you for buying.') talk_state = 0 else npcHandler:say('You don\'t have enough money.') talk_state = 0 end end return TRUE end npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback) npcHandler:addModule(FocusModule:new()) Obrigado e aguardo respostas.
  8. Ola boa tarde.. gostaria de saber o que acham dessa lista de task .. Matar / EXP / Money ou Item ... LISTA ABAIXO , não esta completa , estou editando ainda as outras task .. mas vou postando conforme eu for terminando , queria saber a opinião de vocês sobre tudo isso. EXP Stages: 1-8: 10x / 9-30: 5x / 31-50: 3x / 51-9999: 2x Skills rate: 6x Magic Rate: 3x Loot Rate: 2x Trolls: Matar 100 EXP: 3000 Money: 1000 -------------------- Goblins: Matar 150 EXP: 4500 Money: 2000 -------------------- Rotworms: Matar 500 EXP: 24000 Money: 5000 -------------------- Cyclops: Matar 500 EXP: 150000 Money: 10000 -------------------- Dwarf Guards: Matar 500 EXP: 180000 Money: 10000 -------------------- Orc Warlords: Matar 400 EXP: 250000 Money: 20000 -------------------- Dwarfs: Matar 800 EXP: 72000 Money: 5000 -------------------- Orcs: Matar 400 EXP: 20000 Money: 1500 -------------------- Tarantulas: Matar 400 EXP: 35000 Money:3000 -------------------- Demon Skeletons: Matar 400 EXP: 200.000 Money: 0 -------------------- Minotaurs: Matar: 5000 EXP: 250000 Money: 10000 -------------------- Priestes e Necromancers Matar 600 EXP: 350000 Item: Boots of haste --------------------- Carniphilas Matar: 150 EXP: 35000 Money: 0 --------------------- Apes , Sibang e Melkin Matar: 550 EXP: 200000 Money: 10000 --------------------- Fire Elemental Matar: 150 EXP: 110000 Money: 0 ------------------- Dragons / Dragon Lord Matar 2000 EXP: 2000000 Item: Dragon Scale Mail -------------------- Pandas: Matar: 80 EXP: 6000 Money: 3500 ------------------- Giant Spider: Matar: 500 EXP: 900000 Money: 20000 ------------------- Hydras: Matar: 400 EXP: 850000 Money: 0 ------------------- Serpent Spawn: Matar 400 EXP: 930000 Money: 0 ------------------- Behemoths: Matar: 500 EXP: 950000 Money: 0 Item: Giant Sword ------------------ Crocodile: Matar: 150 EXP: 11000 Money: 2500 ------------------ Terror Bird: Matar 80 EXP: 80000 Money: 8000 ------------------- Larvas: Matar: 1000 EXP: 70000 Money: 6000 !------------------- Humans: Smuggler, Amazon, Bandit, Assasin ( TODOS Monstros Humanos ) Matar: 700 EXP: 50000 Money: 15000 -------------------- Scarabs: Matar: 600 Exp: 95000 Money: 6000 -------------------- Vampires: 550 EXP: 280000 Item: Vampire Shield -------------------- Ancient Scarabs Matar: 4000 EXP: 1500000 Money: 20000 ---------------- Heros: Matar: 250 EXP: 250000 Item: Crown Legs ------------------- Black Knights: Matar: 100 EXP: 250000 Item: Dragon Lance ------------------- Dragon Lord: Matar: 600 EXP: 850000 Money: 0 -------------------- Warlocks: Matar: 400 EXP: 1100000 -------------------- Lost Soul: Matar: 200 EXP: 920000 -------------------- Nightmare: Matar: 200 EXP:890000 --------------------- Dark Tortuer Matar: 300 EXP: 1250000 --------------------- Plaguesmith Matar: 350 EXP: 950000 ---------------------- Defilers Matar: 250 EXP: 950000 ---------------------- Hellfire Fighters Matar: 320 EXP: 1500000 ---------------------- Destroyers Matar: 260 EXP: 900000 ---------------------- Diabolic Imps Matar: 330 EXP: 700000 ---------------------- Hellhounds Matar: 500 EXP: 1700000 ----------------------- Blightwalkers Matar: 270 EXP: 950000 ---------------------- Hand of cursed Matar: 180 EXP: 1200000 ---------------------- Son of verminor Matar: 150 EXP: 500000 ---------------------- Juggernauts Matar: 400 EXP: 1550000 ---------------------- Undead Dragons Matar: 280 EXP: 1300000 ---------------------- Betrayed wraiths Matar: 280 EXP: 900000 ---------------------- Phantasm Matar: 230 EXP: 850000 ----------------------- Ghouls Matar: 600 EXP: 100000 Money: 10000 ---------------------- Lizards Matar: 500 EXP: 105000 Money: 15000 ----------------------- Orc Berseker Matar: 700 EXP: 95000 Money: 17000 ----------------------- Orc Leaders Matar: 700 EXP: 115000 Money: 20000 Obrigado e aguardo resposta , pois quero montar um servidor 7.4 Com qualidade
  9. Warning: Invalid argument supplied for foreach() inC:\xampp\htdocs\pages\latestnews.php on line 18 Query: SELECT * FROM `z_news_tickers` WHERE hide_ticker != 1 ORDER BY date DESC LIMIT 50; SQLSTATE: 00000 Driver code: Error message: Query: SELECT * FROM `announcements` WHERE id ORDER BY `date` DESC LIMIT 1 SQLSTATE: 00000 Driver code: Error message: ERROS ARRUMADOS.. Ivens arrumou todos .. mas obrigado mesmo assim pela atenção KotZletY
  10. Um erro sumiu kkk , agora falta os outros 2 , mesmo assim muito obrigado +++REPPP
  11. acessa ai o meu site para voce ver.. http://globx.ddns.net:8090/ ou se não quiser o erro é esse: Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\config\config.php:1) in C:\xampp\htdocs\pages\latestnews.php on line1 Query: SELECT `g`.`id` AS `id`, `g`.`name` AS `name`, COUNT(`g`.`name`) as `frags` FROM `players` p LEFT JOIN `player_deaths` pd ON `pd`.`killed_by` = `p`.`name` LEFT JOIN `guild_membership` gm ON `p`.`id` = `gm`.`player_id` LEFT JOIN `guilds` g ON `gm`.`guild_id` = `g`.`id` WHERE `g`.`id` > 0 AND `pd`.`unjustified` = 1 GROUP BY `name` ORDER BY `frags` DESC, `name` ASC LIMIT 4; SQLSTATE: 42S02 Driver code: 1146 Error message: Table 'server.guild_membership' doesn't exist Warning: Invalid argument supplied for foreach() inC:\xampp\htdocs\pages\latestnews.php on line 18 Query: SELECT * FROM `z_news_tickers` WHERE hide_ticker != 1 ORDER BY date DESC LIMIT 50; SQLSTATE: 00000 Driver code: Error message: Query: SELECT * FROM `announcements` WHERE id ORDER BY `date` DESC LIMIT 1 SQLSTATE: 42S02 Driver code: 1146 Error message: Table 'server.announcements' doesn't exist Warning: Invalid argument supplied for foreach() inC:\xampp\htdocs\pages\latestnews.php on line 286
  12. Alguem saberia resolver esses erros? Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\config\config.php:1) in C:\xampp\htdocs\pages\latestnews.php on line1 Warning: Invalid argument supplied for foreach() inC:\xampp\htdocs\pages\latestnews.php on line 18 Warning: Invalid argument supplied for foreach() inC:\xampp\htdocs\pages\latestnews.php on line 286 Latestnews anexado Obrigado e aguardo respostas. latestnews.php
  13. Boa tarde , alguem seria qual o hexadecimal para deixar o cliente MC da versão 7.72? eu achei no forum so tem 7.4 em diante .. menos 7.72.. alguem saberia me dizer? pois quero deixar meu cliente com MC Obrigado e aguardo respostas.
  14. Ola , bom dia a todos, primeiramente , não achei uma área correta de pedidos para programas de utilidade.., caso esteja errado a seção .. por favor mude para mim , bom queria pedir se alguém tem algum dos programas listados abaixo , preciso muito para editar meu servidor ... Programas: OTCLIENTE para versão 7.72 Item Editor para versão 7.72 Editor de fundo do tibia para versão 7.72 Versão: Windows 64bits se alguém tiver e puder disponibilizar eu iria agradecer muito e dar um REP++ Obrigado e aguardo respostas.
  15. desculpa reviver o post.. mas qual o hexadecimal da versão 7.72 para deixar o cliente com mc?
  16. franckle postou uma resposta no tópico em Suporte Tibia OTServer
    Boa noite , alguem poderia me ajudar a compilar a versao OTX? tenho um servidor global 7.4 .. mas é em OTX , e eu não estou conseguindo compilar .. , alguem poderia me ajudar a compilar? Obrigado e aguardo respostas.
  17. Ola boa noite , eu estou tentando compilar o servidor que o absolute postou ontem em 64bits, para windows... ja tentei no visual studio 2015 e no 2013 , e mesmo assim continua os seguintes logs de erros ... alguém poderia me ajudar? por favor... se alguém puder compilar pra mim em windows ficarei muito grato ... 64 bits... Segue abaixo o log de erros: Error 1 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendSkills(void)" (?sendSkills@ProtocolGameBase@@IEAAXXZ) referenced in function "public: void __cdecl Player::sendSkills(void)const " (?sendSkills@Player@@QEBAXXZ) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\condition.obj theforgottenserver Error 2 error LNK2001: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendSkills(void)" (?sendSkills@ProtocolGameBase@@IEAAXXZ) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\movement.obj theforgottenserver Error 3 error LNK2001: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendSkills(void)" (?sendSkills@ProtocolGameBase@@IEAAXXZ) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\player.obj theforgottenserver Error 4 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendCancelWalk(void)" (?sendCancelWalk@ProtocolGameBase@@IEAAXXZ) referenced in function "public: void __cdecl Player::sendCancelWalk(void)const " (?sendCancelWalk@Player@@QEBAXXZ) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\creature.obj theforgottenserver Error 5 error LNK2001: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendCancelWalk(void)" (?sendCancelWalk@ProtocolGameBase@@IEAAXXZ) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\player.obj theforgottenserver Error 6 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendContainer(unsigned char,class Container const *,bool,unsigned short)" (?sendContainer@ProtocolGameBase@@IEAAXEPEBVContainer@@_NG@Z) referenced in function "public: void __cdecl Player::sendContainer(unsigned char,class Container const *,bool,unsigned short)" (?sendContainer@Player@@QEAAXEPEBVContainer@@_NG@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\game.obj theforgottenserver Error 7 error LNK2001: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendContainer(unsigned char,class Container const *,bool,unsigned short)" (?sendContainer@ProtocolGameBase@@IEAAXEPEBVContainer@@_NG@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\player.obj theforgottenserver Error 8 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendChannel(unsigned short,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::map<unsigned int,class Player *,struct std::less<unsigned int>,class std::allocator<struct std::pair<unsigned int const ,class Player *> > > const *,class std::map<unsigned int,class Player const *,struct std::less<unsigned int>,class std::allocator<struct std::pair<unsigned int const ,class Player const *> > > const *)" (?sendChannel@ProtocolGameBase@@IEAAXGAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEBV?$map@IPEAVPlayer@@U?$less@I@std@@V?$allocator@U?$pair@$$CBIPEAVPlayer@@@std@@@3@@3@PEBV?$map@IPEBVPlayer@@U?$less@I@std@@V?$allocator@U?$pair@$$CBIPEBVPlayer@@@std@@@3@@3@@Z) referenced in function "public: void __cdecl Player::sendChannel(unsigned short,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::map<unsigned int,class Player *,struct std::less<unsigned int>,class std::allocator<struct std::pair<unsigned int const ,class Player *> > > const *,class std::map<unsigned int,class Player const *,struct std::less<unsigned int>,class std::allocator<struct std::pair<unsigned int const ,class Player const *> > > const *)" (?sendChannel@Player@@QEAAXGAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEBV?$map@IPEAVPlayer@@U?$less@I@std@@V?$allocator@U?$pair@$$CBIPEAVPlayer@@@std@@@3@@3@PEBV?$map@IPEBVPlayer@@U?$less@I@std@@V?$allocator@U?$pair@$$CBIPEBVPlayer@@@std@@@3@@3@@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\game.obj theforgottenserver Error 9 error LNK2001: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendChannel(unsigned short,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::map<unsigned int,class Player *,struct std::less<unsigned int>,class std::allocator<struct std::pair<unsigned int const ,class Player *> > > const *,class std::map<unsigned int,class Player const *,struct std::less<unsigned int>,class std::allocator<struct std::pair<unsigned int const ,class Player const *> > > const *)" (?sendChannel@ProtocolGameBase@@IEAAXGAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEBV?$map@IPEAVPlayer@@U?$less@I@std@@V?$allocator@U?$pair@$$CBIPEAVPlayer@@@std@@@3@@3@PEBV?$map@IPEBVPlayer@@U?$less@I@std@@V?$allocator@U?$pair@$$CBIPEBVPlayer@@@std@@@3@@3@@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\protocolgame.obj theforgottenserver Error 10 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendAddCreature(class Creature const *,struct Position const &,int,bool)" (?sendAddCreature@ProtocolGameBase@@IEAAXPEBVCreature@@AEBUPosition@@H_N@Z) referenced in function "public: void __cdecl Player::sendCreatureAppear(class Creature const *,struct Position const &,bool)" (?sendCreatureAppear@Player@@QEAAXPEBVCreature@@AEBUPosition@@_N@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\game.obj theforgottenserver Error 11 error LNK2001: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendAddCreature(class Creature const *,struct Position const &,int,bool)" (?sendAddCreature@ProtocolGameBase@@IEAAXPEBVCreature@@AEBUPosition@@H_N@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\luascript.obj theforgottenserver Error 12 error LNK2001: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendAddCreature(class Creature const *,struct Position const &,int,bool)" (?sendAddCreature@ProtocolGameBase@@IEAAXPEBVCreature@@AEBUPosition@@H_N@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\protocolgame.obj theforgottenserver Error 13 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendMagicEffect(struct Position const &,unsigned char)" (?sendMagicEffect@ProtocolGameBase@@IEAAXAEBUPosition@@E@Z) referenced in function "public: void __cdecl Player::sendMagicEffect(struct Position const &,unsigned char)const " (?sendMagicEffect@Player@@QEBAXAEBUPosition@@E@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\game.obj theforgottenserver Error 14 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendCreatureLight(class Creature const *)" (?sendCreatureLight@ProtocolGameBase@@IEAAXPEBVCreature@@@Z) referenced in function "public: void __cdecl Player::sendCreatureLight(class Creature const *)" (?sendCreatureLight@Player@@QEAAXPEBVCreature@@@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\game.obj theforgottenserver Error 15 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendWorldLight(struct LightInfo const &)" (?sendWorldLight@ProtocolGameBase@@IEAAXAEBULightInfo@@@Z) referenced in function "public: void __cdecl Player::sendWorldLight(struct LightInfo const &)" (?sendWorldLight@Player@@QEAAXAEBULightInfo@@@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\game.obj theforgottenserver Error 16 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendPingBack(void)" (?sendPingBack@ProtocolGameBase@@IEAAXXZ) referenced in function "public: void __cdecl Player::sendPingBack(void)const " (?sendPingBack@Player@@QEBAXXZ) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\game.obj theforgottenserver Error 17 error LNK2001: unresolved external symbol "protected: virtual void __cdecl ProtocolGameBase::onConnect(void)" (?onConnect@ProtocolGameBase@@MEAAXXZ) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\otserv.obj theforgottenserver Error 18 error LNK2019: unresolved external symbol "public: __cdecl ProtocolSpectator::ProtocolSpectator(class std::shared_ptr<class Connection>)" (??0ProtocolSpectator@@QEAA@V?$shared_ptr@VConnection@@@std@@@Z) referenced in function "public: __cdecl std::_Ref_count_obj<class ProtocolSpectator>::_Ref_count_obj<class ProtocolSpectator><class std::shared_ptr<class Connection> const &>(class std::shared_ptr<class Connection> const &)" (??$?0AEBV?$shared_ptr@VConnection@@@std@@@?$_Ref_count_obj@VProtocolSpectator@@@std@@QEAA@AEBV?$shared_ptr@VConnection@@@1@@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\otserv.obj theforgottenserver Error 19 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendStats(void)" (?sendStats@ProtocolGameBase@@IEAAXXZ) referenced in function "public: void __cdecl Player::sendStats(void)" (?sendStats@Player@@QEAAXXZ) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\player.obj theforgottenserver Error 20 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendBasicData(void)" (?sendBasicData@ProtocolGameBase@@IEAAXXZ) referenced in function "public: void __cdecl Player::sendBasicData(void)const " (?sendBasicData@Player@@QEBAXXZ) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\player.obj theforgottenserver Error 21 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendInventoryItem(enum slots_t,class Item const *)" (?sendInventoryItem@ProtocolGameBase@@IEAAXW4slots_t@@PEBVItem@@@Z) referenced in function "public: void __cdecl Player::sendInventoryItem(enum slots_t,class Item const *)" (?sendInventoryItem@Player@@QEAAXW4slots_t@@PEBVItem@@@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\player.obj theforgottenserver Error 22 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendVIP(unsigned int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned int,bool,enum VipStatus_t)" (?sendVIP@ProtocolGameBase@@IEAAXIAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0I_NW4VipStatus_t@@@Z) referenced in function "public: bool __cdecl Player::addVIP(unsigned int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,enum VipStatus_t)" (?addVIP@Player@@QEAA_NIAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@W4VipStatus_t@@@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\player.obj theforgottenserver Error 23 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendPing(void)" (?sendPing@ProtocolGameBase@@IEAAXXZ) referenced in function "public: void __cdecl Player::sendPing(void)" (?sendPing@Player@@QEAAXXZ) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\player.obj theforgottenserver Error 24 error LNK2019: unresolved external symbol "protected: bool __cdecl ProtocolGameBase::canSee(struct Position const &)const " (?canSee@ProtocolGameBase@@IEBA_NAEBUPosition@@@Z) referenced in function "public: virtual bool __cdecl Player::canSee(struct Position const &)const " (?canSee@Player@@UEBA_NAEBUPosition@@@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\player.obj theforgottenserver Error 25 error LNK2001: unresolved external symbol "protected: bool __cdecl ProtocolGameBase::canSee(struct Position const &)const " (?canSee@ProtocolGameBase@@IEBA_NAEBUPosition@@@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\protocolgame.obj theforgottenserver Error 26 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::AddOutfit(class NetworkMessage &,struct Outfit_t const &)" (?AddOutfit@ProtocolGameBase@@IEAAXAEAVNetworkMessage@@AEBUOutfit_t@@@Z) referenced in function "private: void __cdecl ProtocolGame::sendCreatureOutfit(class Creature const *,struct Outfit_t const &)" (?sendCreatureOutfit@ProtocolGame@@AEAAXPEBVCreature@@AEBUOutfit_t@@@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\protocolgame.obj theforgottenserver Error 27 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::GetFloorDescription(class NetworkMessage &,int,int,int,int,int,int,int &)" (?GetFloorDescription@ProtocolGameBase@@IEAAXAEAVNetworkMessage@@HHHHHHAEAH@Z) referenced in function "private: void __cdecl ProtocolGame::MoveUpCreature(class NetworkMessage &,class Creature const *,struct Position const &,struct Position const &)" (?MoveUpCreature@ProtocolGame@@AEAAXAEAVNetworkMessage@@PEBVCreature@@AEBUPosition@@2@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\protocolgame.obj theforgottenserver Error 28 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::GetMapDescription(int,int,int,int,int,class NetworkMessage &)" (?GetMapDescription@ProtocolGameBase@@IEAAXHHHHHAEAVNetworkMessage@@@Z) referenced in function "private: void __cdecl ProtocolGame::sendMoveCreature(class Creature const *,struct Position const &,int,struct Position const &,int,bool)" (?sendMoveCreature@ProtocolGame@@AEAAXPEBVCreature@@AEBUPosition@@H1H_N@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\protocolgame.obj theforgottenserver Error 29 error LNK2019: unresolved external symbol "protected: static void __cdecl ProtocolGameBase::RemoveTileThing(class NetworkMessage &,struct Position const &,unsigned int)" (?RemoveTileThing@ProtocolGameBase@@KAXAEAVNetworkMessage@@AEBUPosition@@I@Z) referenced in function "private: void __cdecl ProtocolGame::sendRemoveTileThing(struct Position const &,unsigned int)" (?sendRemoveTileThing@ProtocolGame@@AEAAXAEBUPosition@@I@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\protocolgame.obj theforgottenserver Error 30 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendMapDescription(struct Position const &)" (?sendMapDescription@ProtocolGameBase@@IEAAXAEBUPosition@@@Z) referenced in function "private: void __cdecl ProtocolGame::sendMoveCreature(class Creature const *,struct Position const &,int,struct Position const &,int,bool)" (?sendMoveCreature@ProtocolGame@@AEAAXPEBVCreature@@AEBUPosition@@H1H_N@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\protocolgame.obj theforgottenserver Error 31 error LNK2019: unresolved external symbol "protected: bool __cdecl ProtocolGameBase::canSee(class Creature const *)const " (?canSee@ProtocolGameBase@@IEBA_NPEBVCreature@@@Z) referenced in function "private: void __cdecl ProtocolGame::sendCreatureTurn(class Creature const *,unsigned int)" (?sendCreatureTurn@ProtocolGame@@AEAAXPEBVCreature@@I@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\protocolgame.obj theforgottenserver Error 32 error LNK2019: unresolved external symbol "public: void __cdecl ProtocolSpectator::onLiveCastStop(void)" (?onLiveCastStop@ProtocolSpectator@@QEAAXXZ) referenced in function "public: bool __cdecl ProtocolGame::stopLiveCast(void)" (?stopLiveCast@ProtocolGame@@QEAA_NXZ) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\protocolgame.obj theforgottenserver Error 33 error LNK2019: unresolved external symbol "protected: void __cdecl ProtocolGameBase::sendUpdateTile(class Tile const *,struct Position const &)" (?sendUpdateTile@ProtocolGameBase@@IEAAXPEBVTile@@AEBUPosition@@@Z) referenced in function "public: void __cdecl Player::sendUpdateTile(class Tile const *,struct Position const &)" (?sendUpdateTile@Player@@QEAAXPEBVTile@@AEBUPosition@@@Z) C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\tile.obj theforgottenserver Error 34 error LNK1120: 25 unresolved externals C:\Users\FrAnCkLe\Desktop\G[10.91] Absolute & Ciroc [FREE VERSION]\theforgottenserver 10.90-1 equiphotkey full\vc12\x64\Debug\theforgottenserver.exe 1 1 theforgottenserver Obrigado ~~ Att~~
  18. alguem conseguiu compilar pra windos 64 bits? to tentando pelo visual studio 2013 ... ja tentei pelo 2015 mas deu erro ... , alguem ai conseguiu? se conseguiu e puder me ajudar .. ficarei grato
  19. Obrigado por esse presentão Absolute e Ciroc , não conheço muito ja amo paaakas 'jpodaposjdpojsaodojasddsoap :D

Informação Importante

Confirmação de Termo