Postado Julho 7, 2015 9 anos Esta falando que nao existe o Arquivo chamado "addonmount.lua" em data/creaturescripts/addonmount.lua - Posta seu Creaturescripts.xml para eu Remover
Postado Julho 7, 2015 9 anos Autor <?xml version="1.0" encoding="UTF-8"?> <creaturescripts> <!-- Secret Service Quest --> <event type="kill" name="SecretServiceBlackKnight" script="others/blackKnight.lua"/> <!-- Spike Task: Drillworm --> <event type="kill" name="SpikeDrillworm" script="spike task/drillworm.lua"/> <!-- Thieves Guild Quest --> <event type="kill" name="ThievesGuildNomad" script="others/nomad.lua"/> <!-- Pythius The Rotten --> <event type="kill" name="pythiusDead" script="pythius the rotten/pythiusDead.lua" /> <!-- Gray Island --> <event type="kill" name="bossesGrayIsland" script="gray island/bossesgrayisland.lua"/> <!-- The Elemental Spheres --> <event type="death" name="ElementalSpheres" script="elemental spheres quest/the_elemental_spheres.lua"/> <event type="kill" name="ElementalSpheresKill" script="elemental spheres quest/the_elemental_spheres.lua"/> <event type="login" name="ElementalSpheresLogin" script="elemental spheres quest/the_elemental_spheres.lua"/> <!-- Gnomebase --> <event type="kill" name="WarzoneTwo" script="gnomebase/warzone2.lua"/> <event type="kill" name="WarzoneThree" script="gnomebase/warzone3.lua"/> <event type="kill" name="bossesWarzone" script="gnomebase/bossesWarzone.lua"/> <!-- Svargrond Arena: Killing a boss --> <event type="kill" name="SvargrondArenaKill" script="svargrond arena quest/arena_kill.lua"/> <!-- Pharaos: Portal to reward room --> <event type="kill" name="PharaoKillPortal" script="others/pharaoPortal.lua"/> <!-- In Service Of Yalahar Quest --> <event type="kill" name="inServiceOfYalaharQuestsDiseased" script="in service of yalahar quest/inServiceOfYalaharQuestsDiseased.lua"/> <event type="kill" name="inServiceOfYalaharQuestsMorik" script="in service of yalahar quest/inServiceOfYalaharQuestsMorik.lua"/> <event type="kill" name="inServiceOfYalaharQuestsQuara" script="in service of yalahar quest/inServiceOfYalaharQuestsQuara.lua"/> <!-- Inquisition Quest --> <event type="kill" name="inquisitionQuestBosses" script="inquisition quest/inquisitionQuestBosses.lua"/> <event type="kill" name="inquisitionQuestUngreez" script="inquisition quest/inquisitionQuestUngreez.lua"/> <!-- Killing In The Name Of Quest --> <event type="kill" name="killingInTheNameOfQuestKills" script="killing in the name of quest/killingInTheNameOfQuestKills.lua"/> <event type="kill" name="TaskCustom" script="killing in the name of quest/taskcustom.lua"/> <!-- Raging Mage Tower --> <event type="kill" name="Yielothax" script="raging mage tower/yielothax.lua"/> <event type="kill" name="Energized" script="raging mage tower/energized.lua"/> <event type="kill" name="Raging" script="raging mage tower/raging.lua"/> <!-- The Masters Voice Quest --> <event type="kill" name="MastersVoiceServants" script="their master's voice quest/ServantsKill.lua"/> <!-- Wrath of Emperor --> <event type="kill" name="wrathBoss" script="wrath of the emperor quest/wrathOfTheEmperorQuestBoss.lua"/> <event type="kill" name="wrathZalamon" script="wrath of the emperor quest/wrathOfTheEmperorQuestZalamon.lua"/> <!-- Others --> <event type="logout" name="Cast" script="others/cast.lua"/> <event type="login" name="PlayerLogin" script="others/login.lua"/> <event type="death" name="PlayerDeath" script="others/playerdeath.lua"/> <event type="advance" name="AdvanceSave" script="others/advance_save.lua"/> <event type="advance" name="AdvanceRook" script="others/advance_rook.lua"/> <event type="advance" name="Recompense" script="others/recompense.lua"/> <event type="login" name="AddonsMounts" script="others/addons-montarias.lua"/> <event type="login" name="ShopMountAddon" script="addonmount.lua"/> </creaturescripts>
Postado Julho 7, 2015 9 anos Remove essa linha: <event type="login" name="ShopMountAddon" script="addonmount.lua"/>
Postado Julho 7, 2015 9 anos Autor e como eu faço para ter montaria e addon a venda no site? e tb estou com outro problema os char quando criado nasce sem itens Editado Julho 7, 2015 9 anos por juarez juca (veja o histórico de edições)
Postado Julho 10, 2015 9 anos Por gentileza altere o nome do tópico para algo referente ao tópico, clicando em Editar/Usar Editor Completo Sobre os char começar sem itens, adicione esse arquivos. mods\firstitems.xml <?xml version="1.0" encoding="UTF-8"?> <mod name="First Items" version="1.0" author="The Forgotten Server" contact="otland.net" enabled="yes"> <config name="firstitems_config"><![CDATA[ config = { storage = 30001, items = {2050, 2382} } ]]></config> <event type="login" name="FirstItems" event="script"><![CDATA[ domodlib('firstitems_config') function onLogin(cid) if(getPlayerStorageValue(cid, config.storage) > 0) then return true end for _, id in ipairs(config.items) do doPlayerAddItem(cid, id, 1) end if(getPlayerSex(cid) == PLAYERSEX_FEMALE) then doPlayerAddItem(cid, 2651, 1) else doPlayerAddItem(cid, 2650, 1) end doAddContainerItem(doPlayerAddItem(cid, 1987, 1), 2674, 1) setPlayerStorageValue(cid, config.storage, 1) return true end ]]></event> </mod> data/creaturescripts.xml <event type="login" name="FirstItems" event="script" value="firstitems.lua"/> creaturescripts\scripts\firstitems.lua local firstItems = {} firstItems[0] = { 2173, 2525, 2428, 2124, 2460, 2478, 2643 } firstItems[1] = { 2173, 2525, 2190, 2124, 2460, 2478, 2643 } firstItems[2] = { 2173, 2525, 2182, 2124, 2460, 2478, 2643 } firstItems[3] = { 2173, 2525, 2389, 2124, 2460, 2478, 2643 } firstItems[4] = { 2173, 2525, 2428, 2124, 2460, 2478, 2643 } function onLogin(cid) if getPlayerStorageValue(cid, 30001) == -1 then for i = 1, table.maxn(firstItems[getPlayerVocation(cid)]) do doPlayerAddItem(cid, firstItems[getPlayerVocation(cid)][i], 1) end if getPlayerSex(cid) == 0 then doPlayerAddItem(cid, 2465, 1) else doPlayerAddItem(cid, 2465, 1) end local bag = doPlayerAddItem(cid, 10518, 1) doAddContainerItem(bag, 2160, 2) doAddContainerItem(bag, 2554, 1) doAddContainerItem(bag, 2120, 1) doAddContainerItem(bag, 7618, 1) doAddContainerItem(bag, 2383, 1) setPlayerStorageValue(cid, 30001, 1) end return TRUE end
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.