whitout desc how can i add?You can't, this is only possible by UID.
Or search backpacks of all online players for it.
function onSay (cid, words, param, channel)
doRemoveItem(1000)
return true
end
function onUse(cid, item, fromPosition, itemEx, toPosition)
if item.actionid == NUMBER then
doPlayerSendCancel(cid,"Done.")
return true
end
<action actionid="NUMBER" event="script" value="balablab.lua"/>
function onUse(cid, item, fromPosition, itemEx, toPosition)
doPlayerSendCancel(cid,"Done")
doRemoveItem(item.uid) ---item will be removed the item with the aid you set in action.xml
return true
end