Hello
I Release mine banshee quest script... the point is im just learning lua and etc
and giving everything what creat for us
Banshee Chests... its should by usefull for lazy guys 
And Xml Code.
if wanna you can rep me




LUA:
-- banshee chests Scripted By Apsivaflines
function onUse(cid, item, frompos, item2, topos)
if item.uid == 3567 then
queststatus = getPlayerStorageValue(cid,6112)
if queststatus == -1 then
doPlayerSendTextMessage(cid,22,"You have found Boots Of Haste.")
doPlayerAddItem(cid,2195,1)
setPlayerStorageValue(cid,6112,1)
else
doPlayerSendTextMessage(cid,22,"It is empty.")
end
elseif item.uid == 7895 then
queststatus = getPlayerStorageValue(cid,6212)
if queststatus == -1 then
doPlayerSendTextMessage(cid,22,"You have found Giant Sword.")
doPlayerAddItem(cid,2393,1)
setPlayerStorageValue(cid,6212,1)
else
doPlayerSendTextMessage(cid,22,"It is empty.")
end
elseif item.uid == 4168 then
queststatus = getPlayerStorageValue(cid,6312)
if queststatus == -1 then
doPlayerSendTextMessage(cid,22,"You have found Tower Shield.")
doPlayerAddItem(cid,2528,1)
setPlayerStorageValue(cid,6312,1)
else
doPlayerSendTextMessage(cid,22,"It is empty.")
end
elseif item.uid == 6145 then
queststatus = getPlayerStorageValue(cid,6412)
if queststatus == -1 then
doPlayerSendTextMessage(cid,22,"You have found Stealth Ring.")
doPlayerAddItem(cid,2165,1)
setPlayerStorageValue(cid,6412,1)
else
doPlayerSendTextMessage(cid,22,"It is empty.")
end
elseif item.uid == 4673 then
queststatus = getPlayerStorageValue(cid,6512)
if queststatus == -1 then
doPlayerSendTextMessage(cid,22,"You have found Stone Skin Amulet.")
doPlayerAddItem(cid,2179,1)
setPlayerStorageValue(cid,6512,1)
else
doPlayerSendTextMessage(cid,22,"It is empty.")
end
elseif item.uid == 4691 then
queststatus = getPlayerStorageValue(cid,6612)
if queststatus == -1 then
doPlayerSendTextMessage(cid,22,"You have found 100 Platinum Coins.")
doPlayerAddItem(cid,2152,100)
setPlayerStorageValue(cid,6612,1)
else
doPlayerSendTextMessage(cid,22,"It is empty.")
end
else
return 0
end
return 1
end
And Xml Code.
Code:
<!-- Banshee -->
<action uniqueid="3567" script="reward.lua" />
<action uniqueid="7895" script="reward.lua" />
<action uniqueid="4168" script="reward.lua" />
<action uniqueid="6145" script="reward.lua" />
<action uniqueid="4673" script="reward.lua" />
<action uniqueid="4691" script="reward.lua" />
if wanna you can rep me
