Custom configuration adjustments.
This commit is contained in:
parent
2a1a463251
commit
5df68a1046
@ -1,22 +1,23 @@
|
|||||||
# ========================== #
|
# ---------------------------------------------------------------------------
|
||||||
# Away System #
|
# Away System
|
||||||
# ========================== #
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
# Allow Players to change status Away.
|
# Allow players to change their status to Away.
|
||||||
# Command .away & .back
|
# Commands: .away and .back
|
||||||
AllowAwayStatus = False
|
AllowAwayStatus = False
|
||||||
|
|
||||||
# Away only in peace places
|
# Away only in peace zones.
|
||||||
AwayOnlyInPeaceZone = True
|
AwayOnlyInPeaceZone = True
|
||||||
|
|
||||||
# Player take mobs aggro if he is Away.
|
# Player can take aggro from monsters while he is Away.
|
||||||
AwayPlayerTakeAggro = False
|
AwayPlayerTakeAggro = False
|
||||||
|
|
||||||
# Away status title Color (red 0000FF).
|
# Away status title color.
|
||||||
|
# Default: 0000FF (red)
|
||||||
AwayTitleColor = 0000FF
|
AwayTitleColor = 0000FF
|
||||||
|
|
||||||
# How many sec till player goes in away mode.
|
# How many seconds until player goes in away mode.
|
||||||
AwayTimer = 10
|
AwayTimer = 10
|
||||||
|
|
||||||
# How many sec till player goes back from away mode.
|
# How many seconds until player goes back from away mode.
|
||||||
BackTimer = 10
|
BackTimer = 10
|
@ -1,12 +1,15 @@
|
|||||||
#-----------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Banking System
|
# Banking System
|
||||||
#-----------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
# To enable banking system set this value to true, default is false.
|
# Enable banking system.
|
||||||
|
# Default: False
|
||||||
BankingEnabled = False
|
BankingEnabled = False
|
||||||
|
|
||||||
# This is the amount of Goldbars someone will get when they do the .deposit command, and also the same amount they will lose when they do .withdraw
|
# This is the amount of Gold Bars players will receive when using the .deposit command,
|
||||||
|
# also the same amount destroyed when they use the .withdraw command.
|
||||||
BankingGoldbarCount = 1
|
BankingGoldbarCount = 1
|
||||||
|
|
||||||
# This is the amount of Adena someone will get when they do the .withdraw command, and also the same amount they will lose when they do .deposit
|
# This is the amount of Adena players will receive when using the .withdraw command,
|
||||||
|
# also the same amount destroyed when they use the .deposit command.
|
||||||
BankingAdenaCount = 500000000
|
BankingAdenaCount = 500000000
|
@ -1,6 +1,6 @@
|
|||||||
#=============================================================
|
# ---------------------------------------------------------------------------
|
||||||
# Buffer
|
# Buffer
|
||||||
#=============================================================
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
# Maximum number of available schemes per player.
|
# Maximum number of available schemes per player.
|
||||||
BufferMaxSchemesPerChar = 4
|
BufferMaxSchemesPerChar = 4
|
||||||
|
@ -1,44 +1,49 @@
|
|||||||
# =========================================================== #
|
# ---------------------------------------------------------------------------
|
||||||
# Champion mobs #
|
# Champion monsters
|
||||||
# Turns random mobs into Champions #
|
# ---------------------------------------------------------------------------
|
||||||
# =========================================================== #
|
|
||||||
|
|
||||||
# Enable champion monsters.
|
# Enable champion monsters.
|
||||||
|
# Default: False
|
||||||
ChampionEnable = False
|
ChampionEnable = False
|
||||||
|
|
||||||
# Chance for a mob to became champion (in percents) - 0 to disable
|
# Chance for a mob to became champion.
|
||||||
|
# Use 0 to disable.
|
||||||
ChampionFrequency = 5
|
ChampionFrequency = 5
|
||||||
|
|
||||||
# Min and max lvl allowed for a mob to be champion.
|
# Min and max lvl allowed for a mob to be champion.
|
||||||
ChampionMinLevel = 20
|
ChampionMinLevel = 20
|
||||||
ChampionMaxLevel = 70
|
ChampionMaxLevel = 70
|
||||||
|
|
||||||
# Hp multiplier
|
# Hp multiplier.
|
||||||
ChampionHp = 8
|
ChampionHp = 8
|
||||||
|
|
||||||
# Hp Regen Multiplier
|
# Hp Regen Multiplier.
|
||||||
ChampionRegenHp = 1.
|
ChampionRegenHp = 1.
|
||||||
|
|
||||||
# Rewards multiplier
|
# Rewards multiplier.
|
||||||
ChampionRewards = 8
|
ChampionRewards = 8
|
||||||
|
|
||||||
# Adenas & seal stones rewards multiplier
|
# Adena and seal stones reward multiplier.
|
||||||
ChampionAdenasRewards = 1
|
ChampionAdenasRewards = 1
|
||||||
|
|
||||||
# Atk bonus for champion (changes apply on patk & matk)
|
# Atk bonus for champions.
|
||||||
|
# Changes apply on patk and matk.
|
||||||
ChampionAtk = 1.
|
ChampionAtk = 1.
|
||||||
|
|
||||||
# Spd Atk bonus for champion (changes apply on patkspd & matkspd)
|
# Spd Atk bonus for champions.
|
||||||
|
# Changes apply on patkspd and matkspd.
|
||||||
ChampionSpdAtk = 1.
|
ChampionSpdAtk = 1.
|
||||||
|
|
||||||
# Chance to obtain a specified reward item from a higher lvl champion (in percents) default is off using glittering medal as reward
|
# Chance to obtain a specified reward item from a higher lvl champion.
|
||||||
|
# Default is 0 (off).
|
||||||
ChampionRewardItem = 0
|
ChampionRewardItem = 0
|
||||||
|
|
||||||
# Specified reward item ID
|
# Specified reward item id.
|
||||||
|
# Default: 6393 (glittering medal)
|
||||||
ChampionRewardItemID = 6393
|
ChampionRewardItemID = 6393
|
||||||
|
|
||||||
# Specified reward item quantity
|
# Specified reward item quantity.
|
||||||
ChampionRewardItemQty = 1
|
ChampionRewardItemQty = 1
|
||||||
|
|
||||||
# Champion Mob Custom Title
|
# Custom title for champion monsters.
|
||||||
ChampionTitle = Champion
|
ChampionTitle = Champion
|
@ -1,229 +1,238 @@
|
|||||||
#============================================================#
|
# ---------------------------------------------------------------------------
|
||||||
# Server Config #
|
# Custom Server Configurations
|
||||||
#============================================================#
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
# Server Name Enabled: Displays a message on char login
|
# Server name (used for messages).
|
||||||
# with the server name you have set below.
|
ServerName = Lineage II
|
||||||
|
|
||||||
|
# Display a message on player login, with the server name.
|
||||||
ServerNameEnabled = False
|
ServerNameEnabled = False
|
||||||
|
|
||||||
# Here you should type your server's name.
|
# Shows total number of players on login.
|
||||||
ServerName = Server
|
|
||||||
|
|
||||||
# Shows total players number on login.
|
|
||||||
OnlineOnLogin = False
|
OnlineOnLogin = False
|
||||||
|
|
||||||
# If it is true, it shows a htm on every player's log in.
|
# Shows a welcome html on player login.
|
||||||
# It is located in data/html/welcome.htm
|
# File is located in data/html/welcome.htm
|
||||||
# You can edit it from there.
|
|
||||||
WelcomeHtm = False
|
WelcomeHtm = False
|
||||||
|
|
||||||
# Whether or not the announcement to all players about the appearance in the world raidboss (spawn)
|
# Announce when a raidboss has spawned.
|
||||||
AnnounceToAllSpawnRb = False
|
AnnounceToAllSpawnRb = False
|
||||||
|
|
||||||
#Whether or not the announcement about the ban a player from an administrator account?
|
# Announce when a player has ben banned.
|
||||||
AnnounceTryBannedAccount = False
|
AnnounceTryBannedAccount = False
|
||||||
|
|
||||||
# Max difference between char Z and other Z objects
|
# Max difference between char Z and other Z objects.
|
||||||
DifferentZchangeObject = 650
|
DifferentZchangeObject = 650
|
||||||
|
|
||||||
# Max difference between char Z and next Z potition
|
# Max difference between char Z and next Z position.
|
||||||
DifferentZnewmovie = 1000
|
DifferentZnewmovie = 1000
|
||||||
|
|
||||||
# --------------------------
|
|
||||||
# Custom Tables
|
|
||||||
# --------------------------
|
|
||||||
# Enable / Disable custom tables.
|
|
||||||
# The rest of the custom tables are already activated.
|
|
||||||
|
|
||||||
# Custom Spawnlist Table
|
# ---------------------------------------------------------------------------
|
||||||
|
# Custom Tables
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Enable / Disable custom SQL tables.
|
||||||
|
# Other custom tables are activated by default.
|
||||||
|
|
||||||
|
# Custom spawnlist table.
|
||||||
CustomSpawnlistTable = True
|
CustomSpawnlistTable = True
|
||||||
|
|
||||||
# Gm Spawn gets saved on custom_spawnlist Table?
|
# Save GM spawns at custom_spawnlist table.
|
||||||
SaveGmSpawnOnCustom = True
|
SaveGmSpawnOnCustom = True
|
||||||
|
|
||||||
# Gm Spawn gets deleted on custom_spawnlist Table?
|
# Delete GM spawns at custom_spawnlist table.
|
||||||
DeleteGmSpawnOnCustom = False
|
DeleteGmSpawnOnCustom = False
|
||||||
|
|
||||||
# -------------------------------------------------------
|
|
||||||
# Noble Custom Item Configuration
|
# ---------------------------------------------------------------------------
|
||||||
# -------------------------------------------------------
|
# Noble Custom Item
|
||||||
# When ActiveChar will use this item will gain Noble Status.
|
# ---------------------------------------------------------------------------
|
||||||
|
# When players use this item, they will gain Noble status.
|
||||||
EnableNobleCustomItem = False
|
EnableNobleCustomItem = False
|
||||||
# Id Itemn Need's
|
|
||||||
|
# Noble custom item id.
|
||||||
NoobleCustomItemId = 6673
|
NoobleCustomItemId = 6673
|
||||||
|
|
||||||
# -----------------------------------------------------
|
|
||||||
# Hero Custom Item Configuration
|
# ---------------------------------------------------------------------------
|
||||||
# -----------------------------------------------------
|
# Hero Custom Item
|
||||||
# When ActiveChar will use this item will gain Hero Status.
|
# ---------------------------------------------------------------------------
|
||||||
|
# When players use this item, they will gain Hero status.
|
||||||
EnableHeroCustomItem = False
|
EnableHeroCustomItem = False
|
||||||
# Id Itemn Need's
|
|
||||||
|
# Hero custom item id.
|
||||||
HeroCustomItemId = 3481
|
HeroCustomItemId = 3481
|
||||||
# Hero for X days, 0 forever.
|
|
||||||
|
# Number of days they will remain heroes.
|
||||||
|
# Default: 0 (forever)
|
||||||
HeroCustomDay = 0
|
HeroCustomDay = 0
|
||||||
|
|
||||||
# --------------------------------------------
|
|
||||||
# Custom hero subclass skill
|
# ---------------------------------------------------------------------------
|
||||||
# --------------------------------------------
|
# Custom hero subclass skills
|
||||||
# Allow you to add the hero skills to all subclasses
|
# ---------------------------------------------------------------------------
|
||||||
# CustomHeroSubSkill is the allow/disallow
|
# Allow to add hero skills to all subclasses.
|
||||||
# HeroCount means how many times the player needs to be a hero in row
|
|
||||||
CustomHeroSubSkill = False
|
CustomHeroSubSkill = False
|
||||||
|
|
||||||
|
# How many times does the player need to be a hero in row.
|
||||||
HeroCount = 1
|
HeroCount = 1
|
||||||
|
|
||||||
# ----------------------
|
|
||||||
# Skill Config
|
# ---------------------------------------------------------------------------
|
||||||
# ----------------------
|
# Skill
|
||||||
# List of Skills that are allowed for all Classes if CheckSkillsOnEnter = True in config/protected/other.ini
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
# List of Skills that are allowed for all classes if CheckSkillsOnEnter = True in config/protected/Other.ini
|
||||||
AllowedSkills = 541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,617,618,619
|
AllowedSkills = 541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,617,618,619
|
||||||
|
|
||||||
# ------------------------------
|
|
||||||
# Equipment Config
|
# ---------------------------------------------------------------------------
|
||||||
# ------------------------------
|
# Equipment
|
||||||
# Alternate Gaming
|
# ---------------------------------------------------------------------------
|
||||||
# Usage: true = Restriction enabled
|
|
||||||
# false = Restriction disabled
|
# Castle shield can be equipped by all clan members if they own a castle.
|
||||||
# Castle Shield can be equipped by all clan members if they own a castle. = default true
|
# Default: True
|
||||||
CastleShieldRestriction = True
|
CastleShieldRestriction = True
|
||||||
|
|
||||||
# ClanHall Shield can be equipped by all clan members if they own a clan hall. = default true
|
# ClanHall shield can be equipped by all clan members if they own a clan hall.
|
||||||
|
# Default: True
|
||||||
ClanHallShieldRestriction = True
|
ClanHallShieldRestriction = True
|
||||||
|
|
||||||
# Apella armors can be equipped only by clan members if their class is Baron or higher = default true
|
# Apella armor can be equipped only by clan members if their class is Baron or higher.
|
||||||
|
# Default: True
|
||||||
ApellaArmorsRestriction = True
|
ApellaArmorsRestriction = True
|
||||||
|
|
||||||
# Clan Oath Armors can be equipped only by clan members = default true
|
# Clan Oath armor can be equipped only by clan members.
|
||||||
|
# Default: True
|
||||||
OathArmorsRestriction = True
|
OathArmorsRestriction = True
|
||||||
|
|
||||||
# Castle Crown can be equipped only by castle lord = default true
|
# Castle Crown can be equipped only by castle lord.
|
||||||
|
# Default: True
|
||||||
CastleLordsCrownRestriction = True
|
CastleLordsCrownRestriction = True
|
||||||
|
|
||||||
# Castle Circlets can be equipped only by clan members if they own a castle = default true
|
# Castle circlets can be equipped only by clan members if they own a castle.
|
||||||
|
# Default: True
|
||||||
CastleCircletsRestriction = True
|
CastleCircletsRestriction = True
|
||||||
|
|
||||||
# ------------------------------
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
# Custom Features
|
# Custom Features
|
||||||
# ------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
# When True, this will allow a person who changes subclasses to keep the skills of the previous class.
|
# When True, this will allow a person who changes subclasses to keep the skills of the previous class.
|
||||||
# When False, this will remove all skills of the previous sub=class,
|
# When False, this will remove all skills of the previous subclass and only award skills of the current class.
|
||||||
# and only award skills of the current class.
|
# Retail: False
|
||||||
# (official = False)
|
|
||||||
KeepSubClassSkills = False
|
KeepSubClassSkills = False
|
||||||
|
|
||||||
# Allows user to use command .online
|
# Allow players to use the .online command.
|
||||||
# Displays The Number of The Players That are Currently Online.
|
# Displays the number of online players.
|
||||||
# Default : False
|
# Default : False
|
||||||
AllowOnlineView = False
|
AllowOnlineView = False
|
||||||
|
|
||||||
# Allows user to use command .stats
|
# Allow players to use the .stats command to view the targets simple statics.
|
||||||
# And view the targets simple statics.
|
|
||||||
AllowSimpleStatsView = False
|
AllowSimpleStatsView = False
|
||||||
# Allows user to use command .stat
|
|
||||||
# And view the targets detailed statics.
|
# Allow players to use the .stat command to view the targets detailed statics.
|
||||||
AllowDetailedStatsView = False
|
AllowDetailedStatsView = False
|
||||||
|
|
||||||
# Disable Weight Penalty
|
# Disable weight penalty.
|
||||||
DisableWeightPenalty = False
|
DisableWeightPenalty = False
|
||||||
|
|
||||||
# Save Raid Boss Status Into Data Base?
|
# Save raidboss status in database.
|
||||||
# Default: True
|
# Default: True
|
||||||
SaveRBStatusIntoDB = True
|
SaveRBStatusIntoDB = True
|
||||||
|
|
||||||
# Set this option to True to enable custom titles on new chars.
|
# Enable custom titles on new players.
|
||||||
# Also replace Jenova with title you want.
|
# Replace "Newbie" with title you want.
|
||||||
CharTitle = False
|
CharTitle = False
|
||||||
CharAddTitle = NewChar
|
CharAddTitle = Newbie
|
||||||
|
|
||||||
# Allow Custom Starting Level.
|
# Allow custom starting level.
|
||||||
# Usage: if True , Then When A New Character is Created , Its Level is Automatically
|
|
||||||
# Setted To The Number of CharLvl
|
|
||||||
CustomStartingLvl = False
|
CustomStartingLvl = False
|
||||||
# Character Level You Want
|
|
||||||
CharLvl = 80
|
CharLvl = 80
|
||||||
|
|
||||||
# # Set this to True if you want to add a custom spawn location for ALL new characters.
|
# Custom spawn location for new players.
|
||||||
# choose the coordinates you want Example:
|
|
||||||
# SpawnX = 149999
|
|
||||||
# SpawnYY = 46728
|
|
||||||
# SpawnZ = -3414
|
|
||||||
CustomSpawn = False
|
CustomSpawn = False
|
||||||
SpawnX = 149999
|
SpawnX = 149999
|
||||||
SpawnY = 46728
|
SpawnY = 46728
|
||||||
SpawnZ = -3414
|
SpawnZ = -3414
|
||||||
|
|
||||||
# Enable Raid Petrified if raid more than 8 levels lower.
|
# Enable raid Petrification when raid is more than 8 levels lower.
|
||||||
# Default: True
|
# Default: True
|
||||||
AllowRaidBossPetrified = True
|
AllowRaidBossPetrified = True
|
||||||
|
|
||||||
# This option will disallow PvP/PK of any and ALL kind between players above and below the level given below.
|
# Newbie player PK/PVP protection.
|
||||||
# For example if the number is set to 39, then players level 1-39 cannot attack or be attacked by level 40+.
|
# When is set to 39, then players level 1-39 cannot attack or be attacked by level 40+.
|
||||||
# (official = 0)
|
# Retail: 0
|
||||||
AltPlayerProtectionLevel = 0
|
AltPlayerProtectionLevel = 0
|
||||||
|
|
||||||
# Allow Players Over 76 Level To Trade Characters
|
# PvP only in the same grade (0-19, 20-39, 40-51, 52-60, 61-76, 76-85).
|
||||||
# Lower Than 76 Level?
|
# Default: False
|
||||||
|
AllowLowLvlProtect = False
|
||||||
|
|
||||||
|
# Allow players lower than 76 level to trade.
|
||||||
# Retail : True
|
# Retail : True
|
||||||
AllowLowLevelTrade = True
|
AllowLowLevelTrade = True
|
||||||
|
|
||||||
# Low level char killing protection
|
# Level restriction for Cruma Tower.
|
||||||
# If enabled players can pvp only in the same grade
|
|
||||||
# 0-19,20-39,40-51,52-60,61-76,76-85 (Default = False)
|
|
||||||
AllowLowLvlProtect = False
|
|
||||||
|
|
||||||
# Cruma Tower max level allowed to enter
|
|
||||||
# Retail: 56 Level
|
# Retail: 56 Level
|
||||||
CrumaTowerLevelRestrict = 56
|
CrumaTowerLevelRestrict = 56
|
||||||
|
|
||||||
# Delay before teleporting monsters back to spawn if past drift range in seconds.
|
# Delay before teleporting monsters back to spawn if past drift range (in seconds).
|
||||||
# Every 20 minutes (1200) monsters if blocked on Geodata are teleported to their spawn.
|
# Every 20 minutes (1200) monsters if blocked by Geodata are teleported to their spawn.
|
||||||
# 0 is disabled, 1200 for 20 minutes, etc.
|
# Use 0 to disable.
|
||||||
# Default: 1200
|
# Default: 1200
|
||||||
MonsterReturnDelay = 1200
|
MonsterReturnDelay = 1200
|
||||||
|
|
||||||
# Scroll is Stackable? (default = False)
|
# If you have made enchant scrolls stackable set this to true.
|
||||||
|
# Default: False
|
||||||
ScrollStackable = False
|
ScrollStackable = False
|
||||||
|
|
||||||
# -------------------------------------------
|
|
||||||
# Clan Leader Color Config
|
# ---------------------------------------------------------------------------
|
||||||
# ------------------------------------------
|
# Clan leader color
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
ClanLeaderNameColorEnabled = False
|
ClanLeaderNameColorEnabled = False
|
||||||
ClanLeaderColor = 00FF00
|
ClanLeaderColor = 00FF00
|
||||||
ClanLeaderColorAtClanLevel = 3
|
ClanLeaderColorAtClanLevel = 3
|
||||||
# Color Where?
|
# Color position.
|
||||||
# 1 - Name
|
# 1 - Name
|
||||||
# 2 - Title
|
# 2 - Title
|
||||||
ClanLeaderColored = 1
|
ClanLeaderColored = 1
|
||||||
|
|
||||||
# ---------------------------
|
|
||||||
# Donator Config
|
# ---------------------------------------------------------------------------
|
||||||
# ---------------------------
|
# Donators
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
# Command in game: //setdonator
|
# Command in game: //setdonator
|
||||||
|
|
||||||
# If it is true then donators will have their name colored.
|
# If it is true then donators will have their name colored.
|
||||||
DonatorNameColorEnabled = False
|
DonatorNameColorEnabled = False
|
||||||
|
|
||||||
# Donator Name's Color.
|
# Donator name Color.
|
||||||
DonatorColorName = FF33AA
|
DonatorColorName = FF33AA
|
||||||
|
|
||||||
# Donator Title's Colon.
|
# Donator title Colon.
|
||||||
DonatorTitleColor = FFAA33
|
DonatorTitleColor = FFAA33
|
||||||
|
|
||||||
# Donator Sp Rate
|
# Donator EXP and SP rate.
|
||||||
DonatorXpSpRate = 1.5
|
DonatorXpSpRate = 1.5
|
||||||
|
|
||||||
# Donator Adena rate
|
# Donator Adena rate.
|
||||||
DonatorAdenaRate = 1.5
|
DonatorAdenaRate = 1.5
|
||||||
|
|
||||||
# Donator drop rate
|
# Donator drop rate.
|
||||||
DonatorDropRate = 1.5
|
DonatorDropRate = 1.5
|
||||||
|
|
||||||
# Donator spoil rate
|
# Donator spoil rate.
|
||||||
DonatorSpoilRate = 1.5
|
DonatorSpoilRate = 1.5
|
||||||
|
|
||||||
# ----------------------------------------------
|
|
||||||
# Custom Commands
|
# ---------------------------------------------------------------------------
|
||||||
# ----------------------------------------------
|
# Commands
|
||||||
# Allows user to use command .farm1
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
# Allow players to use command .farm1
|
||||||
AllowFarm1Command = False
|
AllowFarm1Command = False
|
||||||
# Put your Farm1 Location ( x,y,z )
|
# Put your Farm1 Location ( x,y,z )
|
||||||
farm1_X = 81304
|
farm1_X = 81304
|
||||||
@ -232,7 +241,7 @@ farm1_Z = -3469
|
|||||||
# Message after successful TP
|
# Message after successful TP
|
||||||
Farm1CustomMeesage = You have been teleported to Farm Zone 1!
|
Farm1CustomMeesage = You have been teleported to Farm Zone 1!
|
||||||
|
|
||||||
# Allows user to use command .farm2
|
# Allow players to use command .farm2
|
||||||
AllowFarm2Command = False
|
AllowFarm2Command = False
|
||||||
# Put your Farm2 Location ( x,y,z )
|
# Put your Farm2 Location ( x,y,z )
|
||||||
farm2_X = 81304
|
farm2_X = 81304
|
||||||
@ -241,7 +250,7 @@ farm2_Z = -3469
|
|||||||
# Message after successful TP
|
# Message after successful TP
|
||||||
Farm2CustomMeesage = You have been teleported to Farm Zone 2!
|
Farm2CustomMeesage = You have been teleported to Farm Zone 2!
|
||||||
|
|
||||||
# Allows user to use command .pvp1
|
# Allow players to use command .pvp1
|
||||||
AllowPvP1Command = False
|
AllowPvP1Command = False
|
||||||
# Put your Farm1 Location ( x,y,z )
|
# Put your Farm1 Location ( x,y,z )
|
||||||
pvp1_X = 81304
|
pvp1_X = 81304
|
||||||
@ -250,7 +259,7 @@ pvp1_Z = -3469
|
|||||||
# Message after successful TP
|
# Message after successful TP
|
||||||
PvP1CustomMeesage = You have been teleported to PvP Zone 1!
|
PvP1CustomMeesage = You have been teleported to PvP Zone 1!
|
||||||
|
|
||||||
# Allows user to use command .pvp2
|
# Allow players to use command .pvp2
|
||||||
AllowPvP2Command = False
|
AllowPvP2Command = False
|
||||||
# Put your Farm2 Location ( x,y,z )
|
# Put your Farm2 Location ( x,y,z )
|
||||||
pvp2_X = 81304
|
pvp2_X = 81304
|
||||||
@ -259,42 +268,42 @@ pvp2_Z = -3469
|
|||||||
# Message after successful TP
|
# Message after successful TP
|
||||||
PvP2CustomMeesage = You have been teleported to PvP Zone 2!
|
PvP2CustomMeesage = You have been teleported to PvP Zone 2!
|
||||||
|
|
||||||
# -----------------------------------------
|
|
||||||
# Protector System Config
|
# ---------------------------------------------------------------------------
|
||||||
# -----------------------------------------
|
# Protector
|
||||||
# Protector activate when a player this PK
|
# ---------------------------------------------------------------------------
|
||||||
|
# Protector activate when a player this PK.
|
||||||
ProtectorPlayerPK = True
|
ProtectorPlayerPK = True
|
||||||
# Protector activate when a player is flaged
|
# Protector activate when a player is flagged.
|
||||||
ProtectorPlayerPVP = False
|
ProtectorPlayerPVP = False
|
||||||
# Radius of action
|
# Radius of action.
|
||||||
ProtectorRadiusAction = 5000
|
ProtectorRadiusAction = 5000
|
||||||
# Skill ID used for the npc
|
# Skill ID used for the npc
|
||||||
ProtectorSkillId = 1170
|
ProtectorSkillId = 1170
|
||||||
# Skill Level used for npc
|
# Skill level used for NPC.
|
||||||
ProtectorSkillLevel = 13
|
ProtectorSkillLevel = 13
|
||||||
ProtectorSkillTime = 600
|
ProtectorSkillTime = 600
|
||||||
# Npc Protector Message
|
# NPC protector message.
|
||||||
ProtectorMessage = Hey You!, Never Kill On This Area, Go Read The Rules!
|
ProtectorMessage = Hey you! Never kill on this area! Go read the rules!
|
||||||
|
|
||||||
|
|
||||||
# GM restrictions:
|
# Prevent GMs selling items on private store and trade with items.
|
||||||
# With True they can't sell items on private store and trade with items.
|
|
||||||
# Default: False
|
# Default: False
|
||||||
GMTradeRestrictedItems = False
|
GMTradeRestrictedItems = False
|
||||||
|
|
||||||
# Allow GMs to restart/exit while is fighting stance
|
# Allow GMs to restart/exit while in fighting stance.
|
||||||
# Default: False
|
# Default: True
|
||||||
GMRestartFighting = True
|
GMRestartFighting = True
|
||||||
|
|
||||||
# Show Welcome PM on start
|
# Show welcome PM on start.
|
||||||
PMWelcomeShow = False
|
PMWelcomeShow = False
|
||||||
PMServerName = Server
|
PMServerName = Server
|
||||||
PMText1 = Have Fun and Nice Stay on
|
PMText1 = Have fun and a nice stay.
|
||||||
PMText2 = Vote for us every 24h
|
PMText2 = Vote for us every 24 hours.
|
||||||
|
|
||||||
# Show Server Time to player on start
|
# Show server time to players on login.
|
||||||
ShowServerTimeOnStart = False
|
ShowServerTimeOnStart = False
|
||||||
|
|
||||||
# New players get fireworks the first time they log in
|
# New players get fireworks effect the first time they login.
|
||||||
# Default: False
|
# Default: False
|
||||||
NewPlayerEffect = False
|
NewPlayerEffect = False
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# ==================================== #
|
# ---------------------------------------------------------------------------
|
||||||
# Offline trade/craft #
|
# Offline trade/craft
|
||||||
# ==================================== #
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
# Option to enable or disable offline trade feature.
|
# Option to enable or disable offline trade feature.
|
||||||
# Enable -> true, Disable -> false
|
# Enable -> true, Disable -> false
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
# ============================================================ #
|
# ---------------------------------------------------------------------------
|
||||||
# Rebirth System #
|
# Rebirth System
|
||||||
# ============================================================ #
|
# ---------------------------------------------------------------------------
|
||||||
# The Rebirth Engine's Settings
|
# NPC ID - 55555 - Custom NPC table
|
||||||
# NPC ID - 55555 - Custom npc table
|
|
||||||
|
|
||||||
# Enable Rebirth system
|
# Enable Rebirth system
|
||||||
REBIRTH_ENABLE = False
|
REBIRTH_ENABLE = False
|
||||||
|
@ -1,14 +1,13 @@
|
|||||||
# ==================================== #
|
# ---------------------------------------------------------------------------
|
||||||
# Wedding System #
|
# Wedding System
|
||||||
# ==================================== #
|
# ---------------------------------------------------------------------------
|
||||||
# The Wedding System's Settings
|
# NPC ID - 50007 - Custom NPC table
|
||||||
# NPC ID - 50007 - Custom Npc table
|
|
||||||
|
|
||||||
# True Allows Wedding, False disables Wedding.
|
# True Allows Wedding, False disables Wedding.
|
||||||
AllowWedding = False
|
AllowWedding = False
|
||||||
|
|
||||||
# Announce Weddings?
|
# Announce Weddings?
|
||||||
# When a Player Gets Married With Someone Else , Announce It?
|
# When a player gets married with someone else, announce it?
|
||||||
# Default : True
|
# Default : True
|
||||||
AnnounceWedding = True
|
AnnounceWedding = True
|
||||||
|
|
||||||
@ -18,7 +17,7 @@ WeddingPrice = 250000000
|
|||||||
# Would you like to punish the player for for disloyalty to their spouses? If you want them punished set to True, if you would like NO punishment then set to False
|
# Would you like to punish the player for for disloyalty to their spouses? If you want them punished set to True, if you would like NO punishment then set to False
|
||||||
WeddingPunishInfidelity = True
|
WeddingPunishInfidelity = True
|
||||||
|
|
||||||
# Have the players teleported for marriage? If so True, if not False
|
# Have the players teleported for marriage?
|
||||||
WeddingTeleport = True
|
WeddingTeleport = True
|
||||||
|
|
||||||
# The Price for Teleport is configurable below in Adena
|
# The Price for Teleport is configurable below in Adena
|
||||||
@ -34,7 +33,7 @@ WeddingNameCollorB = FFF500
|
|||||||
# Custom Name Color Wedding
|
# Custom Name Color Wedding
|
||||||
WeddingNameCollorL = B469FF
|
WeddingNameCollorL = B469FF
|
||||||
|
|
||||||
# Homosexuality- Allowed = True, Not Allowed = False
|
# Homosexuality
|
||||||
WeddingAllowSameSex = False
|
WeddingAllowSameSex = False
|
||||||
|
|
||||||
# Require Players to wear formal wear, True is yes require formal wear, False is not require formal wear.
|
# Require Players to wear formal wear, True is yes require formal wear, False is not require formal wear.
|
||||||
@ -43,5 +42,6 @@ WeddingFormalWear = True
|
|||||||
# Cost of Divorce, % of Adena
|
# Cost of Divorce, % of Adena
|
||||||
WeddingDivorceCosts = 20
|
WeddingDivorceCosts = 20
|
||||||
|
|
||||||
# Give Wedding Bow, like L2OFF is True
|
# Give wedding bow.
|
||||||
|
Retail: True
|
||||||
WeddingGiveBow = True
|
WeddingGiveBow = True
|
||||||
|
Loading…
Reference in New Issue
Block a user