Addition of VIP system.

Contributed by marciox25.
This commit is contained in:
MobiusDevelopment
2021-04-30 16:29:22 +00:00
parent f7b82e35b9
commit 1acb57e53f
331 changed files with 16039 additions and 487 deletions

View File

@@ -13,6 +13,10 @@ EnableAttendanceRewards = False
# Default: False
PremiumOnlyAttendanceRewards = False
# Enable the Attendance Reward system only for Vip accounts.
# Default: False
VipOnlyAttendanceRewards = False
# Make rewards sharable in the same account.
# Default: False (Each character will receive its own rewards.)
AttendanceRewardsShareAccount = False

View File

@@ -9,6 +9,9 @@ PcCafeEnabled = False
# Allow only players with a Premium account.
PcCafeOnlyPremium = False
# Allow only players with a Vip Tier account.
PcCafeOnlyVip = False
# Max points that player may have.
# Limited by int limit.
MaxPcCafePoints = 200000

View File

@@ -0,0 +1,26 @@
# ---------------------------------------------------------------------------
# VIP System
# ---------------------------------------------------------------------------
# VIP System Enabled.
# l2.ini
# [VipSystem]
# UseVipInfoWnd=true
# -> needs to be true
# Prime shop needs to be true aswell!
# Check vip.xml for more info!
VipEnabled = False
# Max vip level that can be reached (Client Limitations, lv 8 -> 10 Doesn't exist. If u want to use, make it yourself!)
MaxVipLevel = 7
# When purchasing from the Prime Shop, the price amount will add to your vip points
PrimeAffectPoints = true
# Drop Amount of Silver coins if the Vip Tier allows it
VipSilverDropMin = 1
VipSilverDropMax = 5
# Drop Amount of Golden coins if the Vip Tier allows it
VipGoldenDropMin = 1
VipGoldenDropMax = 5