Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Alguem ae Tem Essa Script ou Possa Faze-la Pra Mim Pvf?

Ela Funciona Assim Dou Use em Certo Item e Fica Uma Cruzinha Ai Clico Com Aquela Cruz no Chao e Sou Teleportado Para Onde Cliquei e Sai um Efeito e uma Fala:Shunshin 

   Obg

 

Link para o post
Compartilhar em outros sites

O tópico foi movido para a área correta, preste mais atenção da próxima vez!

Leia as regras do fórum: http://tibiaking.com/forum/topic/1281-regras-gerais/?p=7680

Este tópico foi movido:

De: "OTServScriptingGeral"

Para: "OTServSuporte OTServSuporte de Servidores Derivados"

Link para o post
Compartilhar em outros sites
  • 2 weeks later...
  • 1 month later...

vai em actions/scripts e copie um arquivo e renomeie para hirashin e cole isso nele:

 

function onUse(cid, item, fromPosition, itemEx, toPosition)
 
local pos = fromPosition
local aqui = getPlayerPosition(cid)
local vocs = {300, 301, 302, 303, 304, 305, 306, 307}
local agua = {4610, 4612, 4611, 4664, 4613, 4666, 4646, 4654, 4609, 4665, 4608, 4625, 4665, 4666, 4645}
local parede = {1030, 1029, 1025, 1026, 1027, 1259, 1028, 1032, 1034, 1033, 1536, 1533, 873, 919, 874, 1037, 2700, 2708, 4472, 4475, 4471, 3388, 3373, 3363, 3398, 3408, 3417, 3420, 3407, 3368, 2701, 5130, 6170, 6166, 1596, 3361, 3362, 3363, 3364, 3365, 3366, 3367, 3368, 3369, 3370, 3371, 3372, 3373, 3374, 3375, 3376, 3377, 3378, 3379, 3380, 3381, 3382, 3383, 3384, 3385, 3386, 3387, 3388, 3389, 3390, 3391, 3392, 3393, 3394, 3395, 3396, 3397, 3398, 3399, 3400, 3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, 3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, 3420, 3421, 3422}
local pedra = {874, 919, 873, 2707, 2784, 2778, 3330, 4471, 4475, 4473, 4472, 4474, 4468, 4478, 4469, 4470, 4479, 2703, 2704, 1534, 2739, 3867, 5324, 5316, 5315, 5317, 1600, 1597, 1601}
 
if getDistanceBetween(aqui, toPosition) >= 8 then
return doPlayerSendTextMessage(cid, 27, "Está muito longe.")
 
elseif(not(isSightClear(aqui, toPosition, 1))) then
return doPlayerSendTextMessage(cid, 27, "Isso é impossivel.")
 
elseif(getTilePzInfo(aqui)) then
return doPlayerSendCancel(cid, "Não pode usar a tecnica Deus Dragão em casas ou areas protegidas.")
 
elseif(getTilePzInfo(toPosition)) then
return doPlayerSendCancel(cid, "Não pode usar a tecnica Deus Dragão em casas ou areas protegidas.")
 
elseif(isInArray(agua, itemEx.itemid)) then
return doPlayerSendTextMessage(cid, 27, "voce nao pode usar em agua")
 
elseif(isInArray(parede, itemEx.itemid)) then
return doPlayerSendTextMessage(cid, 27, "voce nao pode usar em paredes")
 
elseif(isInArray(pedra, itemEx.itemid)) then
return doPlayerSendTextMessage(cid, 27, "voce nao pode usar em pedras")
 
elseif(not(isInArray(vocs, getPlayerVocation(cid)))) then
return doPlayerSendTextMessage(cid, 27, "Desculpe, Apenas Minato pode usar a tecnica Deus Dragão.")
end
 
if(doTeleportThing(cid, toPosition, false)) then
doSendMagicEffect(pos, 24)
doSendMagicEffect(toPosition, 24)
 
doCreatureSay(cid, "Shunshin", 19)
return doSendDistanceShoot(pos, toPosition, 16)
end
 
return doPlayerSendCancel(cid, "Desculpe nao foi possivel.")
end
 
 
agora em actions.xml vcs add:
 
<action itemid="7382" event="script" value="hiraishin.lua" allowfaruse="1"/>
Link para o post
Compartilhar em outros sites
  • 2 years later...
Em 19/08/2014 ás 19:55, ManoTobira disse:

vai em actions/scripts e copie um arquivo e renomeie para hirashin e cole isso nele:

 

function onUse(cid, item, fromPosition, itemEx, toPosition)
 
local pos = fromPosition
local aqui = getPlayerPosition(cid)
local vocs = {300, 301, 302, 303, 304, 305, 306, 307}
local agua = {4610, 4612, 4611, 4664, 4613, 4666, 4646, 4654, 4609, 4665, 4608, 4625, 4665, 4666, 4645}
local parede = {1030, 1029, 1025, 1026, 1027, 1259, 1028, 1032, 1034, 1033, 1536, 1533, 873, 919, 874, 1037, 2700, 2708, 4472, 4475, 4471, 3388, 3373, 3363, 3398, 3408, 3417, 3420, 3407, 3368, 2701, 5130, 6170, 6166, 1596, 3361, 3362, 3363, 3364, 3365, 3366, 3367, 3368, 3369, 3370, 3371, 3372, 3373, 3374, 3375, 3376, 3377, 3378, 3379, 3380, 3381, 3382, 3383, 3384, 3385, 3386, 3387, 3388, 3389, 3390, 3391, 3392, 3393, 3394, 3395, 3396, 3397, 3398, 3399, 3400, 3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, 3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, 3420, 3421, 3422}
local pedra = {874, 919, 873, 2707, 2784, 2778, 3330, 4471, 4475, 4473, 4472, 4474, 4468, 4478, 4469, 4470, 4479, 2703, 2704, 1534, 2739, 3867, 5324, 5316, 5315, 5317, 1600, 1597, 1601}
 
if getDistanceBetween(aqui, toPosition) >= 8 then
return doPlayerSendTextMessage(cid, 27, "Está muito longe.")
 
elseif(not(isSightClear(aqui, toPosition, 1))) then
return doPlayerSendTextMessage(cid, 27, "Isso é impossivel.")
 
elseif(getTilePzInfo(aqui)) then
return doPlayerSendCancel(cid, "Não pode usar a tecnica Deus Dragão em casas ou areas protegidas.")
 
elseif(getTilePzInfo(toPosition)) then
return doPlayerSendCancel(cid, "Não pode usar a tecnica Deus Dragão em casas ou areas protegidas.")
 
elseif(isInArray(agua, itemEx.itemid)) then
return doPlayerSendTextMessage(cid, 27, "voce nao pode usar em agua")
 
elseif(isInArray(parede, itemEx.itemid)) then
return doPlayerSendTextMessage(cid, 27, "voce nao pode usar em paredes")
 
elseif(isInArray(pedra, itemEx.itemid)) then
return doPlayerSendTextMessage(cid, 27, "voce nao pode usar em pedras")
 
elseif(not(isInArray(vocs, getPlayerVocation(cid)))) then
return doPlayerSendTextMessage(cid, 27, "Desculpe, Apenas Minato pode usar a tecnica Deus Dragão.")
end
 
if(doTeleportThing(cid, toPosition, false)) then
doSendMagicEffect(pos, 24)
doSendMagicEffect(toPosition, 24)
 
doCreatureSay(cid, "Shunshin", 19)
return doSendDistanceShoot(pos, toPosition, 16)
end
 
return doPlayerSendCancel(cid, "Desculpe nao foi possivel.")
end
 
 
agora em actions.xml vcs add:
 
<action itemid="7382" event="script" value="hiraishin.lua" allowfaruse="1"/>
 
 
 
Mano quero sua ajuda o meu n teleporta quando do use witch..ele n teleporta aonde eu quero ir ... como posso ajeitar isso?

 

Editado por tibiakings2 (veja o histórico de edições)
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 dbko
      Alguem poderia fazer uma script pra mim de food qe certo food healaria ex 10% do hp?
    • Por Lokozoido
      Olá,estou com 1 problema muito sério!
      tenho 1 servidor de poketibia e os players uzam bot,e como são muitos players,fica foda de dar goto em cada 1 pra ve se tá de BOT ou não
      então eu queria criar 1 client Anti Bot(não da pra abrir nenhum bot no client)

    • Por Deemolidor
      Estava criando uma hunt nova, e ao colocar meus pokemos percebi que eles não estavam causando dano algum.
       
      Eu ja adicionei eles no configuration.lua, tanto na parte de " movestable " quanto também no " pokes " onde fica as estatisticas de cada pokemon e mesmo assim não funcionou

    • Por franckle
      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~~
    • Por DeathRocks
      Bom Pessoal,
       
      Estou com Este Erro na Minha Distro...
      E Queria Que vcs Conseguise Arrumar
      E Uso OTX 8.60
      Ficaria Muito Grato e Sempre Valendo +REP
       
      Mensagem do Erro
      [3/12/2015 16:9:4] [Error - CreatureScript Interface] [3/12/2015 16:9:4] data/creaturescripts/scripts/fraglook.lua:onLook [3/12/2015 16:9:4] Description: [3/12/2015 16:9:4] (LuaInterface::luaGetPlayerNameByGUID) Player not found E Aqui Esta o Script
      function getPlayerFrags(cid) local time = os.time() local times = {today = (time - 86400), week = (time - (7 * 86400))} local contents, result = {day = {}, week = {}, month = {}}, db.getResult("SELECT `pd`.`date`, `pd`.`level`, `p`.`name` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` LEFT JOIN `players` p ON `pd`.`player_id` = `p`.`id` WHERE `pk`.`player_id` = " .. getPlayerGUID(cid) .. " AND `k`.`unjustified` = 1 AND `pd`.`date` >= " .. (time - (30 * 86400)) .. " ORDER BY `pd`.`date` DESC") if(result:getID() ~= -1) then repeat local content = {date = result:getDataInt("date")} if(content.date > times.today) then table.insert(contents.day, content) elseif(content.date > times.week) then table.insert(contents.week, content) else table.insert(contents.month, content) end until not result:next() result:free() end local size = { day = table.maxn(contents.day), week = table.maxn(contents.week), month = table.maxn(contents.month) } return size.day + size.week + size.month end function onLook(cid, thing, position, lookDistance) local string = 'You see yourself.' if isPlayer(thing.uid) and thing.uid ~= cid then if getPlayerPremiumDays(thing.uid) > 0 then doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..'][VIP]') else doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..'][FREE]') end elseif thing.uid == cid then if getPlayerPremiumDays(cid) > 0 then doPlayerSetSpecialDescription(cid,'[Frags: '..getPlayerFrags(cid)..'][VIP]') else doPlayerSetSpecialDescription(cid,'[Frags: '..getPlayerFrags(cid)..'][FREE]') end if getPlayerFlagValue(cid, PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION) then string = string..' You are '.. getPlayerGroupName(cid) ..'.' elseif getPlayerVocation(cid) ~= 0 then string = string..' You are '.. getPlayerVocationName(cid) ..'.' else string = string..' You have no vocation.' end string = string..getPlayerSpecialDescription(cid)..'' if getPlayerNameByGUID(getPlayerPartner(cid), false, false) ~= nil then string = string..' You are '.. (getPlayerSex(cid) == 0 and 'wife' or 'husband') ..' of '.. getPlayerNameByGUID(getPlayerPartner(cid)) ..'.' end if getPlayerGuildId(cid) > 0 then string = string..' You are ' .. (getPlayerGuildRank(cid) == '' and 'a member' or getPlayerGuildRank(cid)) ..' of the '.. getPlayerGuildName(cid) string = getPlayerGuildNick(cid) ~= '' and string..' ('.. getPlayerGuildNick(cid) ..').' or string..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS) then string = string..'\nHealth: ['.. getCreatureHealth(cid) ..' / '.. getCreatureMaxHealth(cid) ..'], Mana: ['.. getCreatureMana(cid) ..' / '.. getCreatureMaxMana(cid) ..'].' string = string..'\nIP: '.. doConvertIntegerToIp(getPlayerIp(cid)) ..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEEPOSITION) then string = string..'\nPosition: [X:'.. position.x..'] [Y:'.. position.y..'] [Z:'.. position.z..'].' end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string) return false end return true end  
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo