• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Lua Wayfarer Addons storages

MxSoft

Leave Tibia, Live Life.
Joined
Dec 22, 2009
Messages
1,804
Solutions
1
Reaction score
43
Location
Mexico
Hi could someone give me the wayfarer addons storages to update my addoner and addon shop?
Greetings
 
do you mean the look types? if yes then here you go.

Code:
	<outfit id="23" premium="yes" default="0">
		<list gender="0" lookType="366" name="Wayfarer"/>
		<list gender="1" lookType="367" name="Wayfarer"/>
	</outfit>
 
Update your 000-Constant.lua with 2 new looktypes

maleOutfits = {128, 129, 130, 131, 132, 133, 134, 143, 144, 145, 146, 151, 152, 153, 154, 251, 268, 273, 278, 289, 325, 328, 335, 367}
femaleOutfits = {136, 137, 138, 139, 140, 141, 142, 147, 148, 149, 150, 155, 156, 157, 158, 252, 269, 270, 279, 288, 324, 329, 336, 366}
 
is that so hard or what?

Code:
	-- Wayfarer
local outfit_node = keywordHandler:addKeyword({'first wayfarer'}, playerBuyAddonNPC, {premium = true, cost = 0, items = {{1337,1}}, outfit_female = 366, outfit_male = 367, addon = 1, storageID = 10045})
    outfit_node:addChildKeywordNode(yesNode)
    outfit_node:addChildKeywordNode(noNode)
local outfit_node = keywordHandler:addKeyword({'second wayfarer'}, playerBuyAddonNPC, {premium = true, cost = 0, items = {{1337,1}}, outfit_female = 366, outfit_male = 367, addon = 2, storageID = 10046})
    outfit_node:addChildKeywordNode(yesNode)
    outfit_node:addChildKeywordNode(noNode)

it is up to you to configure

Edit: Fixed storageID
 
Back
Top