• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

Action Golden Newspaper = Gold Premium Card

Was this helpful?

  • Yes!

    Votes: 1 20.0%
  • No.

    Votes: 4 80.0%

  • Total voters
    5

God Mythera

Veteran OT User
Joined
Aug 11, 2012
Messages
2,048
Solutions
2
Reaction score
256
Location
United States
GQXQHwA.png

data/items/items.xml
Code:
<item id="8981" article="a" name="gold premium card">
        <attribute key="weight" value="0" />
        <attribute key="description" value="Use this card to receive 7 premium days." />
    </item>

data/actions/actions.xml
Code:
    <action itemid="8981" script="other/premiumcard.lua"/>

data/actions/scripts/premium_card
Code:
local t = {
    days = 7,
    effect = CONST_ME_HOLYAREA
}
function onUse(cid, item, fromPosition, itemEx, toPosition)
  doPlayerRemoveItem(cid, 8981, 1)
    return TRUE, doPlayerAddPremiumDays(cid, t.days), doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You now have +" .. t.days .. " premium days!"), doSendMagicEffect(fromPosition, t.effect)
end
 
Back
Top