Hex everyone! 
here is my mana booster script:
l
Could you please make that the mana booster can only be used once a character?
Thanks
- - - Updated - - -
BUUUMP!
Anyone knows? I give rep++

here is my mana booster script:
l
PHP:
ocal cfg =
{
level = 1000,
itemid = 8474,
newMana = 150000
}
function onUse(cid, item, fromPosition, itemEx, toPosition)
if (item.itemid == cfg.itemid) then
if getPlayerLevel(cid) >= cfg.level then
setCreatureMaxMana(cid, (getCreatureMaxMana(cid)+cfg.newMana))
doSendAnimatedText(getCreaturePosition(cid), "HP!",TEXTCOLOR_RED)
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_GIFT_WRAPS)
doCreatureSay(cid, "You have recieved ".. cfg.newMana .." extra mp points, now your mp is ".. getCreatureMaxMana(cid) .."!", TALKTYPE_ORANGE_1)
doRemoveItem(item.uid)
else
doPlayerSendCancel(cid, "Your level is not high enough.")
end
return TRUE
end
end
Could you please make that the mana booster can only be used once a character?
Thanks

- - - Updated - - -
BUUUMP!
Anyone knows? I give rep++