• 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!

Wayfarer addon not available

Loney

#!
Senator
Premium User
Joined
Jul 23, 2012
Messages
2,030
Solutions
31
Reaction score
237
Location
México
Hi, i'm my server i'm using the addon npc, like: 5000 gp < 1st addon and 15000 gp < 2nd addon, this works fine, but the wayfarer addons (both) don't appear.
Maybe its a simple thing but i don't have any clue.
Thanks.
 
Yes, i have it in Outfits.xml, I can create a addon quest, and the addons added.. so I don't have clue about this.. :o
Thanks anyways
 
ohh i have in post all addons you need and easy config :)
http://otland.net/f81/addonsxquest-full-scripts-164567/

outfits.xml you get
LUA:
    <outfit id="23" premium="yes">
        <list gender="0" lookType="366" name="Wayfarer">
        <list gender="1" lookType="367" name="Wayfarer">
    </outfit>
so only edit ID
Only edit looktypemy script have file winrar have all .lua, easy config is script:
Wayfarer?
LUA:
local outfitmale = 366
local outfitfemale = 367
local addons = 3
local storage = 1213

function onUse(cid, item, fromPosition, itemEx, toPosition)
if getPlayerStorageValue(cid, storage) == -1 then
	doPlayerAddOutfit(cid, outfitmale, addons)
	doPlayerAddOutfit(cid, outfitfemale, addons)
		doPlayerSendTextMessage(cid, 21, "You get addons for Wayfarer outfit!")
		doSendMagicEffect(getCreaturePosition(cid), 28)
	setPlayerStorageValue(cid, storage, 1)
else
	doPlayerSendCancel(cid, "Already you have this addons.")
end
	return true
end
 
Last edited:
Back
Top