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

Add X Vip days To players

MxSoft

Leave Tibia, Live Life.
Joined
Dec 22, 2009
Messages
1,804
Solutions
1
Reaction score
44
Location
Mexico
Hi i want to know i way to add to all my ot players 6 Vip days.
I use this Vip Script
Code:
local days = 30
local levelToBeVIP = 1

function onUse(cid, item, fromPosition, itemEx, toPosition)
        if getPlayerLevel(cid) >= levelToBeVIP then
                if isPlayerVip(cid) == FALSE then
                        doCreatureSay(cid, "CONGRATULATIONS! You are now a VIP for "..days.." days! You can now enter the VIP-area and use unique features!. ", TALKTYPE_ORANGE_1)
                end
                doSendAnimatedText(getPlayerPosition(cid), "Welcome!", TEXTCOLOR_RED) 
                doPlayerAddVipDays(cid, days)
                doRemoveItem(item.uid, 1)
                doSendAnimatedText(getCreaturePosition(cid), "+"..days.." days", 30)
        else
                doPlayerSendCancel(cid, "You need level "..levelToBeVIP.." to be a VIP player.")
        end     
        return TRUE
end
Code:
- <!--  VIP 
  --> 
  <action actionid="5786" script="vipdoor.lua" /> 
  <action itemid="5785" script="vip.lua" />
And a query to add 3 Shop poitns to everyone
Greetings
 
It's simple..
local days = 30

Replace that 30 with the amount of days you want..
Also.. i dont know where your vipdays table is at if it is in the account table then:
UPDATE accounts SET vipdays = vipdays + 3
Else:
UPDATE players SET vipdays = vipdays + 3
Replace vipdays with the name of the table you use
 
It's simple..


Replace that 30 with the amount of days you want..
Also.. i dont know where your vipdays table is at if it is in the account table then:

Else:

Replace vipdays with the name of the table you use

And if i want to add vips days only to players that have already vip days?
 
Back
Top