Advertisement
DevWilliams

Vip system

Apr 13th, 2021
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. #=============================================================
  2. # Vip System
  3. #=============================================================
  4.  
  5. # Name/Title color for players with vip privileges
  6. # Default: 0099FF
  7. VipColor = 0099FF
  8.  
  9. # Acquired skill by players with vip privileges
  10. # Syntax: skillId-skillLv;skillId-skillLv; ...
  11. VipSkill = 0-0
  12.  
  13. # Acquired items by players with vip privileges
  14. # Syntax: itemId-amount;itemId-amount; ...
  15. VipItems = 0-0
  16.  
  17. # Vip Rate configuration settings.
  18. VipRateXp = 2.
  19. VipRateSp = 2.
  20. VipRateDropAdena = 2.
  21. VipRateDropSpoil = 2.
  22. VipRateDropItems = 2.
  23.  
  24. # Reduce price buff, teleport and skins in 2. Default : 0
  25. VipReduce = 0
  26.  
  27. # Reduce Exp, Sp, and Drops of items for non-vip players who are in the party. The Value will be divided by the value of the config.
  28. # Default = 3
  29. VipReduceReward = 2
  30.  
  31. # Show info Vip.
  32. VipShowHtml = False
  33.  
  34. # Activate the Scheme command for VIPs only.
  35. VipScheme = False
  36.  
  37. # Choose the message for the ad vip with clan member name
  38. # Variables: %player%, %clan%
  39. AnnounceVipLoginByClanMemberMsg = The Vip %player% clan member of %clan% is now online.
  40. # Choose the message for the ad vip without the clan member name
  41. # Variables: %player%
  42. AnnounceVipLoginByPlayerMsg = The Vip %player% is now online.
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement