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

[Request] Addon

alc95

New Member
Joined
Feb 20, 2009
Messages
10
Reaction score
0
I need a script that when i click a morgaroth heart i get elf outfit, please someone help me :s!



Thanks,

ps. sorry for my sucky english
 
elfoutfit.lua
Code:
local outfitMale =
{
lookType = 159,
lookHead = 0,
lookBody = 0,
lookLegs = 0,
lookFeet = 0,
lookAddons = 0
}

function onUse(cid, item, fromPosition, itemEx, toPosition)
doSetCreatureOutfit(cid,outfitMale, -1)
doRemoveItem(item.uid, 1)
end

actions.xml
Code:
<action itemid="5943" script="elfoutfit.lua"/>

This script working perfectly.
 
Back
Top