local key = 123
function onUse(cid, item, fromPosition, itemEx, toPosition)
if itemEx.itemid == 1429 then
if getCreatureStorage(cid, key) == -1 then
doCreatureSetStorage(cid, key, 1)
doCreatureSay(cid, 'Success', TALKTYPE_ORANGE_1)
else
doCreatureSay(cid, 'Failure'...