local refuel = 42 * 60 * 1000
function onUse(cid, item, fromPosition, itemEx, toPosition) return getPlayerStamina(cid) >= refuel and doPlayerSendCancel(cid, "Your stamina is already full.") or not isPremium(cid) and doPlayerSendCancel(cid, "Hey guy, premium account need.") or doPlayerSetStamina(cid, refuel) and doRemoveItem(item.uid, 1) and doSendAnimatedText(cid, "You got full stamina now!", TEXTCOLOR_LIGHTBLUE) end