faz assim gabi.
voce usou o script da health potion no lugar da mana potion
altera isso
function onUse(cid, item, fromPosition, itemEx, toPosition)
mp_id = 7620 -- Item a ser vendido
customp_id = 6500 -- Valor
cargasmp_id = 100 -- Cargas
local name = getItemNameById(mp_id)
if doPlayerRemoveMoney(cid, customp_id) == TRUE then
doSendAnimatedText(fromPosition, "Purchased", TEXTCOLOR_YELLOW)
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have purchased ".. name .."s for ".. customp_id .." gold.")
doPlayerAddItem(cid, mp_id, cargasmp_id)
else
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "You need ".. customp_id .." gold coins to buy ".. name .."s.")
end
return true
end
alterando os hp_id por mp_id, e o id por 7620
testae