Hello. I have a script for PACC RUNE that adds 14 days of premium account. It is possible that in addition to using the rune and activating PACC, the player receives DOUBLE EXP. For the duration of Premium ACC???
Code:
function onUse(cid, item, frompos, item2, topos)
if item.itemid == 2298 then
local playerpos = getCreaturePosition(cid)
doRemoveItem(item.uid,2298)
addPremium(cid, 14)
doSendMagicEffect(playerpos, 12)
doPlayerSendTextMessage(cid,22,"You received 14 days of Premium Account!")
end
end