• 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!

Remove Premium Action

jpkulik

New Member
Joined
Mar 15, 2008
Messages
208
Reaction score
2
Hello all!
Im needing a script, when the Guy press a lever, remove "X" days of the premium account.
To do like a iten shop! :D
Im whating for help, tanks all!:thumbup:
 
Code:
function onUse(item, frompos, topos)

if item.itemid == 1945 then
doPlayerAddPremiumDays(cid, -x)
doTransformItem(cid,item.uid, item.itemid + 1)
else
doTransformItem(cid,item.uid, item.itemid - 1)
end
end

Change "x" to the number of days you want to remove.
 
Back
Top