function onUse(cid, item, fromPosition, itemEx, toPosition)
if(getPlayerLevel(cid) <= 20) then
setPlayerPromotionLevel(cid, 1)
doPlayerSendTextMessage(cid, "You have been promoted to " .. getVocationInfo(getPlayerVocation(cid)).name .. ".")
doRemoveItem(item.uid, 1)
else
doPlayerSendTextMessage(cid, "You dont have level.")
end
return true
end