Ir para conteúdo
  • Cadastre-se

error : unable to load actions Ajuda ?


Posts Recomendados

function doPlayerWatchOther(cid, target)

 
if not isCreature(cid) then return true end
 
local hasOutfitCond = getCreatureCondition(cid, CONDITION_OUTFIT) and getCreatureOutfit(cid).lookType or -1
setPlayerStorageValue(cid, 99282, getCreatureSpeed(cid))
setPlayerStorageValue(cid, 99283, hasOutfitCond)
 
setPlayerStorageValue(cid, 99285, target)
doCreatureSetNick(cid, " ")
 
local o = getCreatureOutfit(cid)
local olddir = getCreatureLookDir(cid)
local oldpos = getThingPos(cid)
 
doTeleportThing(cid, getThingPos(target), false)
doCreatureSetHideHealth(cid, true)
doPlayerLock(cid)
 
local dir = "data/npc/TVNPC.xml"
local a = io.open(dir, "a+")
local b = a:read("*all")
a:close()
 
local npcname = 'name="'..getCreatureName(cid)..'  "'
local npchealth = 'health now="'..getCreatureHealth(cid)..'" max="'..getCreatureMaxHealth(cid)..'"'
local npcoutfit = 'look type="'..o.lookType..'" head="'..o.lookHead..'" body="'..o.lookBody..'" legs="'..o.lookLegs..'" feet="'..o.lookFeet..'"'
 
b = string.gsub(b, 'name="(.-)"', npcname)
b = string.gsub(b, 'health now="(.-)" max="(.-)"', npchealth)
b = string.gsub(b, 'look type="(.-)" head="(.-)" body="(.-)" legs="(.-)" feet="(.-)"', npcoutfit)
 
local c = io.open(dir, "w")
c:write(b)
c:close()
 
o.lookType = 814
 
doCreatureSetOutfit(cid, o, -1)
 
local n = doCreateNpc("TVNPC", oldpos)
doCreatureSetLookDir(n, olddir)
setPlayerStorageValue(n, 9891, getPlayerSex(cid))
doPlayerSetVocation(cid, 1)
doChangeSpeed(cid, -getCreatureSpeed(cid))
doChangeSpeed(cid, getCreatureSpeed(target))
 
end
 
function doPlayerStopWatching(cid)
 
if not isCreature(cid) then return true end
 
doPlayerUnlock(cid)
doCreatureSetNick(cid, getCreatureName(cid))
 
local pos = {}
local speed = getPlayerStorageValue(cid, 99282)
local outfit = getPlayerStorageValue(cid, 99283)
if outfit >= 1 then
local newOutfit = getCreatureOutfit(cid)
newOutfit.lookType = outfit
doCreatureSetOutfit(cid, newOutfit, -1)
else
doCreatureRemoveCondition(cid, CONDITION_OUTFIT)
end
local npc = getCreatureByName(getCreatureName(cid).."  ")
local olddir = 0
if isCreature(npc) then
olddir = getCreatureLookDir(npc)
local pos = getThingPos(npc)
doRemoveCreature(npc)
doTeleportThing(cid, pos, false)
end
doChangeSpeed(cid, -getCreatureSpeed(cid))
doChangeSpeed(cid, speed)
doCreatureSetHideHealth(cid, false)
doCreatureSetLookDir(cid, olddir)
doCreatureSetNick(cid, getCreatureName(cid))
setPlayerStorageValue(cid, 99285, -1)
 
end
 
 
function getWatchingPlayersFromPos(cid, pos)
local ret = {}
 
local cp = {}
cp.x = pos.x
cp.y = pos.y
cp.z = pos.z
 
for a = 0, 255 do
cp.stackpos = a
local b = getTileThingByPos(cp).uid
if isCreature(b) and getCreatureOutfit(b).lookType == 814 and getPlayerStorageValue(b, 99285) == cid then
table.insert(ret, b)
end
end
return ret
end
Link para o post
Compartilhar em outros sites

Creio eu que deveria ser assim:

function doPlayerWatchOther(cid, target)



if not isCreature(cid) then return true end

local hasOutfitCond = getCreatureCondition(cid, CONDITION_OUTFIT) and getCreatureOutfit(cid).lookType or -1
setPlayerStorageValue(cid, 99282, getCreatureSpeed(cid))
setPlayerStorageValue(cid, 99283, hasOutfitCond)

setPlayerStorageValue(cid, 99285, target)
doCreatureSetNick(cid, " ")

local o = getCreatureOutfit(cid)
local olddir = getCreatureLookDir(cid)
local oldpos = getThingPos(cid)

doTeleportThing(cid, getThingPos(target), false)
doCreatureSetHideHealth(cid, true)
doPlayerLock(cid)

local dir = "data/npc/TVNPC.xml"
local a = io.open(dir, "a+")
local b = a:read("*all")
a:close()

local npcname = 'name="'..getCreatureName(cid)..' "'
local npchealth = 'health now="'..getCreatureHealth(cid)..'" max="'..getCreatureMaxHealth(cid)..'"'
local npcoutfit = 'look type="'..o.lookType..'" head="'..o.lookHead..'" body="'..o.lookBody..'" legs="'..o.lookLegs..'" feet="'..o.lookFeet..'"'

b = string.gsub(b, 'name="(.-)"', npcname)
b = string.gsub(b, 'health now="(.-)" max="(.-)"', npchealth)
b = string.gsub(b, 'look type="(.-)" head="(.-)" body="(.-)" legs="(.-)" feet="(.-)"', npcoutfit)

local c = io.open(dir, "w")
c:write(b)
c:close()

o.lookType = 814

doCreatureSetOutfit(cid, o, -1)

local n = doCreateNpc("TVNPC", oldpos)
doCreatureSetLookDir(n, olddir)
setPlayerStorageValue(n, 9891, getPlayerSex(cid))
doPlayerSetVocation(cid, 1)
doChangeSpeed(cid, -getCreatureSpeed(cid))
doChangeSpeed(cid, getCreatureSpeed(target))

end

function doPlayerStopWatching(cid)

if not isCreature(cid) then return true end

doPlayerUnlock(cid)
doCreatureSetNick(cid, getCreatureName(cid))

local pos = {}
local speed = getPlayerStorageValue(cid, 99282)
local outfit = getPlayerStorageValue(cid, 99283)
if outfit == 1 then
local newOutfit = getCreatureOutfit(cid)
newOutfit.lookType = outfit
doCreatureSetOutfit(cid, newOutfit, -1)
else
doCreatureRemoveCondition(cid, CONDITION_OUTFIT)
end
local npc = getCreatureByName(getCreatureName(cid).." ")
local olddir = 0
if isCreature(npc) then
olddir = getCreatureLookDir(npc)
local pos = getThingPos(npc)
doRemoveCreature(npc)
doTeleportThing(cid, pos, false)
end
doChangeSpeed(cid, -getCreatureSpeed(cid))
doChangeSpeed(cid, speed)
doCreatureSetHideHealth(cid, false)
doCreatureSetLookDir(cid, olddir)
doCreatureSetNick(cid, getCreatureName(cid))
setPlayerStorageValue(cid, 99285, -1)

end


function getWatchingPlayersFromPos(cid, pos)
local ret = {}

local cp = {}
cp.x = pos.x
cp.y = pos.y
cp.z = pos.z

for a = 0, 255 do
cp.stackpos = a
local b = getTileThingByPos(cp).uid
if isCreature(b) and getCreatureOutfit(b).lookType == 814 and getPlayerStorageValue(b, 99285) == cid then
table.insert(ret, b)
end
end
return ret
end

Link para o post
Compartilhar em outros sites

eu estava com o msm erro porem dps de trocar o tvsystem p erro do tvsystem sumiu, porem o erro das actions continua.

 

erro_zps9beo9nor.png

 

Este é o meu data/actions/actions.xml

<?xml version="1.0" encoding="UTF-8"?>
<actions>

	<!-- LigaPokemon -->
        <action actionid="2222" event="script" value="ligapokemon.lua"/>
        <action uniqueid="4135" event="script" value="Quest Players/LigaPokemon/LigaPokemon.lua"/>
        <action uniqueid="4136" event="script" value="Quest Players/LigaPokemon/Lorelei1.lua"/>
        <action uniqueid="4137" event="script" value="Quest Players/LigaPokemon/Lorelei2.lua"/>
        <action uniqueid="4138" event="script" value="Quest Players/LigaPokemon/Lorelei3.lua"/>
        <action uniqueid="4139" event="script" value="Quest Players/LigaPokemon/Lorelei4.lua"/>
        <action uniqueid="4140" event="script" value="Quest Players/LigaPokemon/Bruno1.lua"/>
        <action uniqueid="4141" event="script" value="Quest Players/LigaPokemon/Bruno2.lua"/>
        <action uniqueid="4142" event="script" value="Quest Players/LigaPokemon/Bruno3.lua"/>
        <action uniqueid="4143" event="script" value="Quest Players/LigaPokemon/Bruno4.lua"/>
		<action uniqueid="4153" event="script" value="Quest Players/LigaPokemon/Bruno5.lua"/>
        <action uniqueid="4144" event="script" value="Quest Players/LigaPokemon/Agatha1.lua"/>
        <action uniqueid="4145" event="script" value="Quest Players/LigaPokemon/Agatha2.lua"/>
        <action uniqueid="4146" event="script" value="Quest Players/LigaPokemon/Agatha3.lua"/>
        <action uniqueid="4147" event="script" value="Quest Players/LigaPokemon/Agatha4.lua"/>
        <action uniqueid="4148" event="script" value="Quest Players/LigaPokemon/Lance1.lua"/>
        <action uniqueid="4149" event="script" value="Quest Players/LigaPokemon/Lance2.lua"/>
        <action uniqueid="4150" event="script" value="Quest Players/LigaPokemon/Lance3.lua"/>
        <action uniqueid="4151" event="script" value="Quest Players/LigaPokemon/Lance4.lua"/>
        <action uniqueid="4452" event="script" value="Quest Players/LigaPokemon/Master Ball.lua"/>
		<action itemid="13941-13947;13948-13954;13969-13975;13976-13982;13983-13989;13990-13996" event="script" value="heldsystem.lua"/>

	<action actionid="26840;9430;26842" event="script" value="Quest Click Map.lua"/>

		<action actionid="17000" event="script" value="Caves/Entrada C.O.lua"/>
	<action actionid="17001" event="script" value="Caves/Saida C.O.lua"/>
	
	<action actionid="17002" event="script" value="Caves/Entrada Cave de Steelix.lua"/>
	<action actionid="17003" event="script" value="Caves/Saida Cave de Steelix.lua"/>
	
-- Box Boosted!!

	<action actionid="3033" event="script" value="Box Boosted/1 sala.lua"/>

	--- OutlanMain	
     <action actionid="19380" script="OutlandMain/sala 1.lua"/>
	 <action actionid="19381" script="OutlandMain/sala 2.lua"/>
	 <action actionid="19382" script="OutlandMain/sala 3.lua"/>
	 <action actionid="19383" script="OutlandMain/sala 4.lua"/>
	 <action actionid="19384" script="OutlandMain/sala 5.lua"/>
	 <action actionid="19385" script="OutlandMain/sala 6.lua"/>
	 <action actionid="19386" script="OutlandMain/sala 7.lua"/>
	 <action actionid="19387" script="OutlandMain/sala 8.lua"/>
	 <action actionid="19388" script="OutlandMain/sala 9.lua"/>
	 <action actionid="19391" script="OutlandMain/sala 10.lua"/>
	 <action actionid="19390" script="OutlandMain/outlandmain1.lua"/>
	 <action uniqueid="19392" script="OutlandMain/premio.lua"/>


-- Icone System

	<action itemid="11989" event="script" value="icons.lua"/>
	<action itemid="2589" event="script" value="iconsDP.lua"/>
	<action itemid="11826-11837;11737-11748;10975-10977;12621-12623;12826-12831;12861-13781;13797-13823;13836-13861;13902-13904;13919-13930;13933-13935;13937-13939;14020-14022;14015-14017;14033-14035;14038-14040;14043-14045;14086-14088;14091-14093;14096-14098;14101-14103;14106-14108;14111-14113;14116-14118;14121-14123;14126-14128;14136-14138;14141-14143;14157-14159;14163-14165;14173-14175;14081-14083;14190-14192;14178-14180;14193-14195" event="script" value="goback.lua"/>  <!-- alterado v1.9 -->


	<action itemid="13824-13825" event="script" value="Systema Movel/pack_Moveis.lua"/>

-- Quest Inicial
 <action actionid="9499" event="script" value="QuestInicialFoodClick/ItemQuestClick.lua"/>

	<action itemid="12594" event="script" value="Squirtle Bottle.lua"/>
	<action fromid="11790" toid="11803" event="script" value="other/doors.lua"/>
	<action uniqueid="14474" event="script" value="quests/box boosted.lua"/>
	<action uniqueid="14475" event="script" value="quests/outland main clan.lua"/>

	<!--action itemid="2550" event="script" value="bike.lua"/-->

        <action itemid="9004" event="script" value="scroll.lua"/>
        <action actionid="7779" script="premiumdoor.lua"/>

	<!-- Golden Arena -->
	<action actionid="65535" event="script" value="Quadro_Golden.lua"/>
	<action actionid="55356" event="script" value="Quadro_Golden_Rank.lua"/>
	<action itemid="6527" event="script" value="Meowth Coin.lua"/>

	<!-- Quests -->
	<action actionid="2000" event="script" value="quests/system.lua"/>
	<action actionid="2001" event="script" value="quests/system.lua"/>
	<action actionid="3001" event="script" value="quests/system.lua"/>
	<!-- Weapons enchanting (Gems) -->
	<action itemid="2150" event="script" value="other/enchanting.lua"/>
	<action itemid="2149" event="script" value="other/enchanting.lua"/>
	<action itemid="7759" event="script" value="other/enchanting.lua"/>
	<action itemid="7760" event="script" value="other/enchanting.lua"/>
	<action itemid="7761" event="script" value="other/enchanting.lua"/>
	<action itemid="7762" event="script" value="other/enchanting.lua"/>
	<action uniqueid="3500" event="script" value="quests/psyca quest.lua"/>
	<action uniqueid="3502" event="script" value="quests/thunder clan.lua"/>
	<action uniqueid="3503" event="script" value="quests/water clan.lua"/>
	<action uniqueid="3504" event="script" value="quests/fire clan.lua"/>
	<action uniqueid="3505" event="script" value="quests/malefic clan.lua"/>
	<action uniqueid="3506" event="script" value="quests/darkness stone.lua"/>
	<action uniqueid="3507" event="script" value="quests/enigma stone.lua"/>
	<action actionid="2011;2012;2013;2014;2015;2016" event="script" value="quests/psycraft clan1.lua"/>
	<action uniqueid="3508" event="script" value="quests/leaf clan.lua"/>
	<action uniqueid="3510" event="script" value="quests/lutador clan.lua"/>
	<action uniqueid="3511" event="script" value="quests/rock clan.lua"/>
	<action uniqueid="3512" event="script" value="quests/PewterQuest.lua"/>
	<action uniqueid="3513" event="script" value="quests/PokeBallQuest.lua"/>
	<action uniqueid="3515" event="script" value="quests/venom quest.lua"/>
	<action uniqueid="3516" event="script" value="quests/IceQuest.lua"/>
	<action uniqueid="3517" event="script" value="quests/heart quest.lua"/>
	<action uniqueid="3518" event="script" value="quests/d.a quest.lua"/>
	<action uniqueid="3520" event="script" value="quests/valley quest.lua"/>
	<action uniqueid="3521" event="script" value="quests/outland quest.lua"/>
	<action uniqueid="3522" event="script" value="quests/boxboosted.lua"/>
	<action uniqueid="3523" event="script" value="quests/ice quest1.lua"/>
	<action uniqueid="3524" event="script" value="quests/ice stone.lua"/>
	<action actionid="2017" event="script" value="quests/dark ball quest.lua"/>
	<action uniqueid="3525" event="script" value="quests/dark ball quest premio.lua"/>
	<action uniqueid="3526" event="script" value="quests/outland main.lua"/>
	<action uniqueid="3527" event="script" value="quests/bugvenom.lua"/>
	<action uniqueid="3528" event="script" value="quests/outland water.lua"/>
	<action uniqueid="3529" event="script" value="quests/outland enigma.lua"/>
	<action uniqueid="3530" event="script" value="quests/outland leaf.lua"/>
	<action uniqueid="3531" event="script" value="quests/outland coccon.lua"/>
	<action uniqueid="3532" event="script" value="quests/outland thunder.lua"/>
	<action uniqueid="3533" event="script" value="quests/outland poison.lua"/>
	<action uniqueid="3534" event="script" value="quests/outland fire.lua"/>
	<action uniqueid="3535" event="script" value="quests/outland dark.lua"/>
	<action uniqueid="3536" event="script" value="quests/outland rock.lua"/>
	<action uniqueid="3537" event="script" value="quests/outland heart.lua"/>
	<action uniqueid="3538" event="script" value="quests/CeruleanQuest.lua"/>
	<action uniqueid="3539" event="script" value="quests/outland earth.lua"/>
	<action uniqueid="3540" event="script" value="quests/outland ice.lua"/>
	<action uniqueid="3541" event="script" value="quests/outland lutador.lua"/>
	<action uniqueid="3544" event="script" value="quests/LeafQuest.lua"/>

	<!-- Fishing System -->
		<action itemid="2580" event="script" value="Fishing_System/fishing.lua" allowfaruse="1"/>
	    <action itemid="10223" event="script" value="Fishing_System/fishing.lua" allowfaruse="1"/>
	    <action itemid="12853-12860;3976" event="script" value="Fishing_System/Iscas_Fishing.lua"/>

	<!-- Tools -->
	<action itemid="2420" event="script" value="tools/machete.lua"/>
	<action itemid="2442" event="script" value="tools/machete.lua"/>
	<action itemid="2554" event="script" value="tools/shovel.lua"/>
	<action itemid="5710" event="script" value="tools/shovel.lua"/>
	<action itemid="2120" event="script" value="tools/rope.lua"/>
	<action itemid="7731" event="script" value="tools/rope.lua"/>
	<action itemid="2553" event="script" value="tools/pick.lua"/>
	<action itemid="5908" event="script" value="tools/obsidian_knife.lua"/>
	<action itemid="5942" event="script" value="tools/blessed_wooden_stake.lua"/>

	<!-- Food -->
	<action itemid="2362;2666-2691" event="script" value="other/food.lua"/>
	<action fromid="2695" toid="2696" event="script" value="other/food.lua"/>
	<action fromid="2787" toid="2796" event="script" value="other/food.lua"/>
	<action itemid="5097" event="script" value="other/food.lua"/>
	<action itemid="6125" event="script" value="other/food.lua"/>
	<action itemid="6278" event="script" value="other/food.lua"/>
	<action itemid="6279" event="script" value="other/food.lua"/>
	<action itemid="6394" event="script" value="other/food.lua"/>
	<action itemid="6501" event="script" value="other/food.lua"/>
	<action fromid="6541" toid="6545" event="script" value="other/food.lua"/>
	<action itemid="6574" event="script" value="other/food.lua"/>
	<action itemid="7158" event="script" value="other/food.lua"/>
	<action itemid="7159" event="script" value="other/food.lua"/>
	<action fromid="7372" toid="7377" event="script" value="other/food.lua"/>
	<action itemid="7909" event="script" value="other/food.lua"/>
	<action fromid="8838" toid="8845" event="script" value="other/food.lua"/>
	<action itemid="8847" event="script" value="other/food.lua"/>
	<action itemid="12211;12213-12222" event="script" value="other/food.lua"/>

	<!-- Increase/Decrease ItemId -->
	<action itemid="461" event="function" value="increaseItemId"/>
	<action itemid="462" event="function" value="decreaseItemId"/>
	<action itemid="1873" event="function" value="increaseItemId"/>
	<action itemid="1874" event="function" value="decreaseItemId"/>
	<action itemid="1875" event="function" value="increaseItemId"/>
	<action itemid="1876" event="function" value="decreaseItemId"/>
	<action itemid="2162" event="function" value="increaseItemId"/>
	<action itemid="2163" event="function" value="decreaseItemId"/>
	<action itemid="3743" event="function" value="increaseItemId"/>
	<action itemid="3744" event="function" value="decreaseItemId"/>
	<action itemid="3947" event="function" value="increaseItemId"/>
	<action itemid="3948" event="function" value="decreaseItemId"/>
	<action itemid="1479" event="function" value="increaseItemId"/>
	<action itemid="1480" event="function" value="decreaseItemId"/>
	<action itemid="2037" event="function" value="increaseItemId"/>
	<action itemid="2038" event="function" value="decreaseItemId"/>
	<action itemid="2039" event="function" value="increaseItemId"/>
	<action itemid="2040" event="function" value="decreaseItemId"/>
	<action itemid="2058" event="function" value="increaseItemId"/>
	<action itemid="2059" event="function" value="decreaseItemId"/>
	<action itemid="2060" event="function" value="increaseItemId"/>
	<action itemid="2061" event="function" value="decreaseItemId"/>
	<action itemid="2066" event="function" value="increaseItemId"/>
	<action itemid="2067" event="function" value="decreaseItemId"/>
	<action itemid="2068" event="function" value="increaseItemId"/>
	<action itemid="2069" event="function" value="decreaseItemId"/>
	<action itemid="2064" event="function" value="increaseItemId"/>
	<action itemid="2065" event="function" value="decreaseItemId"/>
	<action itemid="2096" event="function" value="increaseItemId"/>
	<action itemid="2097" event="function" value="decreaseItemId"/>
	<action itemid="1786" event="function" value="increaseItemId"/>
	<action itemid="1787" event="function" value="decreaseItemId"/>
	<action itemid="1788" event="function" value="increaseItemId"/>
	<action itemid="1789" event="function" value="decreaseItemId"/>
	<action itemid="1790" event="function" value="increaseItemId"/>
	<action itemid="1791" event="function" value="decreaseItemId"/>
	<action itemid="1792" event="function" value="increaseItemId"/>
	<action itemid="1793" event="function" value="decreaseItemId"/>
	<action itemid="1634" event="function" value="increaseItemId"/>
	<action itemid="1635" event="function" value="decreaseItemId"/>
	<action itemid="1636" event="function" value="increaseItemId"/>
	<action itemid="1637" event="function" value="decreaseItemId"/>
	<action itemid="1638" event="function" value="increaseItemId"/>
	<action itemid="1639" event="function" value="decreaseItemId"/>
	<action itemid="1640" event="function" value="increaseItemId"/>
	<action itemid="1641" event="function" value="decreaseItemId"/>
	<action itemid="7058" event="function" value="increaseItemId"/>
	<action itemid="7059" event="function" value="decreaseItemId"/>
	<action itemid="8684" event="function" value="increaseItemId"/>
	<action itemid="8685" event="function" value="decreaseItemId"/>
	<action itemid="8686" event="function" value="increaseItemId"/>
	<action itemid="8687" event="function" value="decreaseItemId"/>
	<action itemid="8688" event="function" value="increaseItemId"/>
	<action itemid="8689" event="function" value="decreaseItemId"/>
	<action itemid="8690" event="function" value="increaseItemId"/>
	<action itemid="8691" event="function" value="decreaseItemId"/>
	<action itemid="9575" event="function" value="increaseItemId"/>
	<action itemid="9576" event="function" value="decreaseItemId"/>
	<action itemid="9577" event="function" value="increaseItemId"/>
	<action itemid="9578" event="function" value="decreaseItemId"/>
	<action itemid="9579" event="function" value="increaseItemId"/>
	<action itemid="9580" event="function" value="decreaseItemId"/>
	<action itemid="9581" event="function" value="increaseItemId"/>
	<action itemid="9582" event="function" value="decreaseItemId"/>
	<action itemid="9624" event="function" value="increaseItemId"/>
	<action itemid="9625" event="function" value="decreaseItemId"/>
	<action itemid="9747" event="function" value="increaseItemId"/>
	<action itemid="9748" event="function" value="decreaseItemId"/>
	<action itemid="9749" event="function" value="increaseItemId"/>
	<action itemid="9750" event="function" value="decreaseItemId"/>
	<action itemid="9825" event="function" value="increaseItemId"/>
	<action itemid="9826" event="function" value="decreaseItemId"/>
	<action itemid="9827" event="function" value="increaseItemId"/>
	<action itemid="9828" event="function" value="decreaseItemId"/>
	<action itemid="9973" event="function" value="increaseItemId"/>
	<action itemid="9974" event="function" value="decreaseItemId"/>
	<action itemid="10044" event="function" value="increaseItemId"/>
	<action itemid="10045" event="function" value="decreaseItemId"/>

	<!-- Spellbooks -->
	<action itemid="2175" event="script" value="other/spellbook.lua"/>
	<action itemid="6120" event="script" value="other/spellbook.lua"/>
	<action fromid="8900" toid="8904" event="script" value="other/spellbook.lua"/>
	<action itemid="8918" event="script" value="other/spellbook.lua"/>

	<!-- Change gold -->
	<action itemid="2148;2152;2160;12416" event="script" value="other/changegold.lua"/>

	<!-- Construction kits -->
	<action fromid="3901" toid="3938" event="script" value="other/constructionkits.lua"/>
	<action fromid="5086" toid="5088" event="script" value="other/constructionkits.lua"/>
	<action fromid="6114" toid="6115" event="script" value="other/constructionkits.lua"/>
	<action fromid="6372" toid="6373" event="script" value="other/constructionkits.lua"/>
	<action fromid="7960" toid="7962" event="script" value="other/constructionkits.lua"/>
	<action fromid="8692" toid="8693" event="script" value="other/constructionkits.lua"/>
<!--	<action uniqueid="35411" event="script" value="other/constructionhat.lua"/> -->
	<action itemid="7503" event="script" value="other/constructionkits.lua"/>
	<action itemid="7700" event="script" value="other/constructionkits.lua"/>

	<!-- Bed construction kits -->
	<action fromid="7904" toid="7907" event="script" value="other/furniturebeds.lua"/>

	<!-- Music, instruments -->
	<action fromid="2070" toid="2085" event="script" value="other/music.lua"/>
	<action itemid="2095" event="script" value="other/music.lua"/>
	<action itemid="2332" event="script" value="other/music.lua"/>
	<action itemid="2364" event="script" value="other/music.lua"/>
	<action fromid="2367" toid="2374" event="script" value="other/music.lua"/>
	<action fromid="3951" toid="3953" event="script" value="other/music.lua"/>
	<action itemid="3957" event="script" value="other/music.lua"/>
	<action itemid="5786" event="script" value="other/music.lua"/>
	<action itemid="6572" event="script" value="other/music.lua"/>

	<!-- Teleport (stairs, ladders) -->
	<action itemid="430" event="script" value="other/teleport.lua"/>
	<action itemid="1368" event="script" value="other/teleport.lua"/>
	<action itemid="1369" event="script" value="other/teleport.lua"/>
	<action itemid="1386" event="script" value="other/teleport.lua"/>
	<action itemid="3678" event="script" value="other/teleport.lua"/>
	<action itemid="5543" event="script" value="other/teleport.lua"/>
	<action itemid="8580" event="script" value="other/teleport.lua"/>
	<action itemid="8599" event="script" value="other/teleport.lua"/>
	<action itemid="10035" event="script" value="other/teleport.lua"/>

	<!-- Destroy -->
	<action id="2321;2390-2398;2400-2404;2406-2409;2411-2417;2419;2421-2441;2443-2454;3961-3964;3966;4846;6101;6528;6553;7379-7392;7402-7437;7449;7451-7456;7744-7758;7763-7777;7854-7883;7958;8601-8602;8924-8932;10293" event="script" value="other/destroy.lua"/>

	<!-- Bread Creating -->
	<action itemid="2692" event="script" value="other/createbread.lua"/>
	<action itemid="2694" event="script" value="other/createbread.lua"/>

	<!-- Windows -->
	<action fromid="5303" toid="5305" event="script" value="other/windows.lua"/>
	<action fromid="6436" toid="6473" event="script" value="other/windows.lua"/>
	<action fromid="6788" toid="6791" event="script" value="other/windows.lua"/>
	<action fromid="7025" toid="7032" event="script" value="other/windows.lua"/>
	<action fromid="10264" toid="10267" event="script" value="other/windows.lua"/>
	<action fromid="10488" toid="10491" event="script" value="other/windows.lua"/>

	<!-- Doors -->
	<action fromid="1209" toid="1214" event="script" value="other/doors.lua"/>
	<action fromid="1219" toid="1262" event="script" value="other/doors.lua"/>
	<action fromid="1539" toid="1542" event="script" value="other/doors.lua"/>
	<action fromid="2086" toid="2092" event="script" value="other/doors.lua"/>
	<action fromid="3535" toid="3552" event="script" value="other/doors.lua"/>
	<action fromid="4913" toid="4918" event="script" value="other/doors.lua"/>
	<action fromid="5082" toid="5085" event="script" value="other/doors.lua"/>
	<action fromid="5098" toid="5145" event="script" value="other/doors.lua"/>
	<action fromid="5278" toid="5295" event="script" value="other/doors.lua"/>
	<action fromid="5515" toid="5518" event="script" value="other/doors.lua"/>
	<action fromid="5732" toid="5737" event="script" value="other/doors.lua"/>
	<action fromid="5745" toid="5749" event="script" value="other/doors.lua"/>
	<action fromid="6192" toid="6209" event="script" value="other/doors.lua"/>
	<action fromid="6249" toid="6266" event="script" value="other/doors.lua"/>
	<action fromid="6795" toid="6802" event="script" value="other/doors.lua"/>
	<action fromid="6891" toid="6908" event="script" value="other/doors.lua"/>
	<action fromid="7033" toid="7050" event="script" value="other/doors.lua"/>
	<action fromid="7054" toid="7057" event="script" value="other/doors.lua"/>
	<action fromid="8541" toid="8558" event="script" value="other/doors.lua"/>
	<action fromid="9165" toid="9184" event="script" value="other/doors.lua"/>
	<action fromid="9267" toid="9284" event="script" value="other/doors.lua"/>
	<action itemid="10032" event="script" value="other/doors.lua"/>
	<action itemid="10091" event="script" value="other/doors.lua"/>
	<action fromid="10268" toid="10285" event="script" value="other/doors.lua"/>
	<action fromid="10468" toid="10486" event="script" value="other/doors.lua"/>
	<action fromid="10774" toid="10776" event="script" value="other/doors.lua"/>
	<action fromid="10779" toid="10785" event="script" value="other/doors.lua"/>
	<action fromid="10788" toid="10791" event="script" value="other/doors.lua"/>

	<!-- Watch -->
	<action itemid="2036" event="script" value="other/watch.lua"/>
	<action fromid="1728" toid="1731" event="script" value="other/watch.lua"/>
	<action itemid="1877" event="script" value="other/watch.lua"/>
	<action fromid="6091" toid="6092" event="script" value="other/watch.lua"/>
	<action itemid="8187" event="script" value="other/watch.lua"/>

	<!-- Decay To -->
	<action fromid="2041" toid="2042" event="script" value="other/decayto.lua"/>
	<action fromid="2044" toid="2045" event="script" value="other/decayto.lua"/>
	<action fromid="2047" toid="2048" event="script" value="other/decayto.lua"/>
	<action fromid="2050" toid="2055" event="script" value="other/decayto.lua"/>
	<action fromid="5812" toid="5813" event="script" value="other/decayto.lua"/>
	<action itemid="7183" event="script" value="other/decayto.lua"/>
	<action itemid="9006" event="script" value="other/decayto.lua"/>
	<action fromid="9976" toid="9979" event="script" value="other/decayto.lua"/>

	<!-- Other -->
	<action itemid="2114" event="script" value="other/piggybank.lua"/>
	<action fromid="6570" toid="6571" event="script" value="other/surprisebag.lua"/>
	<action fromid="5792" toid="5797" event="script" value="other/dice.lua"/>
	<action itemid="6576" event="script" value="other/fireworksrocket.lua"/>
	<action itemid="6578" event="script" value="other/partyhat.lua"/>
	<action itemid="2785" event="script" value="other/blueberrybush.lua"/>
	<action itemid="2579" event="script" value="other/trap.lua"/>

	<action itemid="5791" event="script" value="other/stuffeddragon.lua"/>
	<action itemid="6566" event="script" value="other/stuffeddragon.lua"/>

-- POTIONS / ANTIDOTE
	<action itemid="12343;12345-12348" event="script" value="potion.lua" allowfaruse="1" blockwalls="1"/>
	<action itemid="12349" event="script" value="medicine.lua" allowfaruse="1" blockwalls="1"/>
	<action itemid="12344" event="script" value="revive.lua" allowfaruse="1" blockwalls="1"/>

-- BOXES (poke inicial)
	<action actionid="1740" event="script" value="starter.lua"/>
	<action actionid="1741" event="script" value="starter2.lua"/>

-- POKEMON PRIZE BOXES / RARE CANDY
	<action itemid="11638-11641" event="script" value="box.lua"/>
	<action itemid="12331" event="script" value="box.lua"/>
	<action itemid="12227" event="script" value="box.lua"/>
	<action itemid="12339" event="script" value="box_boosted.lua"/>
	<action itemid="12338" event="script" value="bag box.lua"/>
	<action itemid="14186" event="script" value="held4.lua"/>
	<action itemid="14185" event="script" value="held5.lua"/>
	<action itemid="14187" event="script" value="held6.lua"/>
	<action itemid="14188" event="script" value="held3.lua"/>


-- POKEDEX
	<action itemid="2382" event="script" value="pokedex.lua" allowfaruse="1" blockwalls="1"/>
	<action itemid="7385" event="script" value="pokeinfo.lua"/>

-- LOJA DE ROUPAS
	<action itemid="3896;3897;3867;3868" event="script" value="roupas.lua"/>

-- GO/BACK E CATCH

	<action itemid="2391-2394;12617;12832" event="script" value="catch.lua" allowfaruse="1"/>                   <!-- alterado v1.9 -->

-- CASSINO
	<action itemid="2547" event="script" value="coincase.lua"/>
	<action itemid="11421" event="script" value="slotmachine.lua"/>

-- TV / CAM By Ricksi2012 DXP 1.1
	<action itemid="11416-11418;11395-11398;11401-11404" event="script" value="television.lua">
        <action itemid="12330" event="script" value="camera.lua">

-- PC
	<action itemid="11462-11469" event="script" value="computer.lua"/>

-- BOOST MACHINE
	<action itemid="12352-12357" event="script" value="boost.lua"/>

-- ORDER
	<action itemid="2550" event="script" value="order.lua" allowfaruse="1" blockwalls="0"/>

-- PEDRAS DE EVO
	<action itemid="11441-11454;12232;12242;12244;12417;12419;12401-12414" event="script" value="evolution.lua" allowfaruse="1"/>

-- DXP Beta

         <action itemid="9694" event="script" value="premiumdxp.lua"/>

  </actions>
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