General.properties 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744
  1. # ---------------------------------------------------------------------------
  2. # General Server Settings
  3. # ---------------------------------------------------------------------------
  4. # The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
  5. # Warning:
  6. # Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
  7. # ---------------------------------------------------------------------------
  8. # ---------------------------------------------------------------------------
  9. # Administrator
  10. # ---------------------------------------------------------------------------
  11. # If this option is set to True every newly created character will have access level 200. This means that every character created will have Administrator Privileges.
  12. # Default: False
  13. EverybodyHasAdminRights = False
  14. # Show server/DP revision numbers when players enter the game
  15. DisplayServerRevision = True
  16. # Setting for serverList
  17. # Displays [] in front of server name on character selection
  18. # Default: False
  19. ServerListBrackets = False
  20. # Displays a clock next to the server name on character selection.
  21. # Default: False
  22. ServerListClock = False
  23. # If True, only accounts with GM access can enter the server.
  24. # Default: False
  25. ServerGMOnly = False
  26. # Enable GMs to have the glowing aura of a Hero character on login.
  27. # Notes:
  28. # GMs can do "///hero" on themselves and get this aura voluntarily.
  29. # It's advised to keep this off due to graphic lag.
  30. # Default: False
  31. GMHeroAura = False
  32. # Auto set invulnerable status to a GM on login.
  33. # Default: False
  34. GMStartupInvulnerable = False
  35. # Auto set invisible status to a GM on login.
  36. # Default: False
  37. GMStartupInvisible = False
  38. # Auto block private messages to a GM on login.
  39. # Default: False
  40. GMStartupSilence = False
  41. # Auto list GMs in GM list (/gmlist) on login.
  42. # Default: False
  43. GMStartupAutoList = False
  44. # Auto set diet mode on to a GM on login (affects your weight penalty).
  45. # Default: False
  46. GMStartupDietMode = False
  47. # The way //admin panel looks can be "modern" or "classic" (default is modern while classic provides more compatibility).
  48. # Default: modern
  49. GMAdminMenuStyle = modern
  50. # Item restrictions apply to GMs aswell?
  51. GmItemRestriction = False
  52. # ---------------------------------------------------------------------------
  53. # Server Security
  54. # ---------------------------------------------------------------------------
  55. # Bypass exploit protection. To ENABLE protection set to True.
  56. # Default: True
  57. BypassValidation = True
  58. # Enforce gameguard for clients. Sends a gameguard query on character login.
  59. # Default: True
  60. GameGuardEnforce = True
  61. # Don't allow player to perform trade, talk with npc, or move until gameguard reply is received.
  62. # Default: True
  63. GameGuardProhibitAction = True
  64. #Logging settings. The following four settings, while enabled, will increase writing to your hard drive(s) considerably. Depending on the size of your server, the amount of players, and other factors, you may suffer a noticable performance hit.
  65. # Default: True
  66. LogChat = True
  67. # Default: False
  68. LogItems = False
  69. # Default: False
  70. GMAudit = False
  71. # Default: False
  72. LogGameDamage = False
  73. # ---------------------------------------------------------------------------
  74. # Thread Configuration
  75. # ---------------------------------------------------------------------------
  76. # Extreme caution should be here, set to defaults if you do not know what you are doing.
  77. # These could possibly hurt your servers performance or improve it depending on your server's configuration, size, and other factors.
  78. # Default: 10
  79. ThreadPoolSizeEffects = 10
  80. # Default: 13
  81. ThreadPoolSizeGeneral = 13
  82. # Default: 2
  83. UrgentPacketThreadCoreSize = 2
  84. # Default: 4
  85. GeneralPacketThreadCoreSize = 4
  86. # Default: 4
  87. GeneralThreadCoreSize = 4
  88. # Default: 6
  89. AiMaxThread = 6
  90. # Packet LifeTime in milliseconds. Disabled = 0.
  91. # Default: 0
  92. PacketLifeTime = 0
  93. # Dead Lock Detector (a separate thread for detecting deadlocks).
  94. # For improved crash logs and automatic restart in deadlock case if enabled.
  95. # Check interval is in seconds.
  96. # Default: False
  97. DeadLockDetector = False
  98. # Default: 20
  99. DeadLockCheckInterval = 20
  100. # Default: False
  101. RestartOnDeadlock = False
  102. # ---------------------------------------------------------------------------
  103. # Optimization
  104. # ---------------------------------------------------------------------------
  105. # Flood Protector. Set the initial size of the flood protector (should equal about roughly your player count)
  106. # Default: 50
  107. FloodProtectorInitialSize = 50
  108. # Items on ground management.
  109. # Allow players to drop items on the ground.
  110. # Default: True
  111. AllowDiscardItem = True
  112. # Delete dropped reward items from world after a specified amount of seconds. Disabled = 0.
  113. # Default: 0
  114. AutoDestroyDroppedItemAfter = 0
  115. # Time in secs after which dropped herb will be auto-destroyed (default: 15 seconds)
  116. # Default: 15
  117. AutoDestroyHerbTime = 15
  118. # List of items that will not be destroyed (separated by ",").
  119. # Notes:
  120. # Make sure the lists do NOT CONTAIN trailing spaces or spaces between the numbers!
  121. # Items on this list will be protected regardless of the following options.
  122. # Default: 57,5575,6673
  123. ListOfProtectedItems = 57,5575,6673
  124. # This is the interval (in minutes), that the gameserver will update a players information such as location.
  125. # The higher you set this number, there will be less character information saving so you will have less accessessing of the database and your hard drive(s).
  126. # The lower you set this number, there will be more frequent character information saving so you will have more access to the database and your hard drive(s).
  127. # A value of 0 disables periodic saving.
  128. # Independent of this setting the character is always saved after leaving the world.
  129. # Default: 15
  130. CharacterDataStoreInterval = 15
  131. # This enables the server to only update items when saving the character.
  132. # Enabling this greatly reduces DB usage and improves performance.
  133. # WARNING: This option causes item loss during crashes.
  134. # Default: False
  135. LazyItemsUpdate = False
  136. # When enabled, this forces (even if using lazy item updates) the items owned by the character to be updated into DB when saving its character.
  137. # Default: False
  138. UpdateItemsOnCharStore = False
  139. # Also delete from world misc. items dropped by players (all except equip-able items).
  140. # Notes:
  141. # Works only if AutoDestroyDroppedItemAfter is greater than 0.
  142. # Default: False
  143. DestroyPlayerDroppedItem = False
  144. # Destroy dropped equipable items (armor, weapon, jewelry).
  145. # Notes:
  146. # Works only if DestroyPlayerDroppedItem = True
  147. # Default: False
  148. DestroyEquipableItem = False
  149. # Save dropped items into the database for restoring after restart.
  150. # Default: False
  151. SaveDroppedItem = False
  152. # Enable/Disable the emptying of the stored dropped items table after items are loaded into memory (safety setting).
  153. # If the server crashed before saving items, on next start old items will be restored and players may already have picked up some of them so this will prevent duplicates.
  154. # Default: False
  155. EmptyDroppedItemTableAfterLoad = False
  156. # Time interval in minutes to save in DB items on ground. Disabled = 0.
  157. # Notes:
  158. # If SaveDroppedItemInterval is disabled, items will be saved into the database only at server shutdown.
  159. # Default: 60
  160. SaveDroppedItemInterval = 60
  161. # Delete all saved items from the database on next restart?
  162. # Notes:
  163. # Works only if SaveDroppedItem = False.
  164. # Default: False
  165. ClearDroppedItemTable = False
  166. # Delete invalid quest from players.
  167. # Default: False
  168. AutoDeleteInvalidQuestData = False
  169. # Setting False can improve server performance on high rate/population servers.
  170. # Default: True
  171. PreciseDropCalculation = True
  172. # Allow creating multiple non-stackable items at one time?
  173. # Default: True
  174. MultipleItemDrop = True
  175. # Forces full item inventory packet to be sent for any item change.
  176. # Notes:
  177. # This can increase network traffic
  178. # Default: False
  179. ForceInventoryUpdate = False
  180. # True = Load html's into cache only on first time html is requested.
  181. # False = Load all html's into cache on server startup.
  182. # Default: True
  183. LazyCache = True
  184. # Minimum and maximum variables in seconds for npc animation delay.
  185. # You must keep MinNPCAnimation < = MaxNPCAnimation.
  186. # Default: 10
  187. MinNPCAnimation = 10
  188. # Default: 20
  189. MaxNPCAnimation = 20
  190. # Default: 5
  191. MinMonsterAnimation = 5
  192. # Default: 20
  193. MaxMonsterAnimation = 20
  194. # Knownlist (the list of things a character sees) update method. Default is currently time based updating, which also makes it possible to use config options for guards to see moving monsters. Alternatively move based update can be used but guards cannot track mobs with that option but otherwise it should work well.
  195. # Default: False
  196. MoveBasedKnownlist = False
  197. # Interval (in miliseconds) in which the knownlist does full updates.
  198. # For move based updates its used for intermediate updates.
  199. # WARNING!
  200. # Useful interval is between 300 - 2000. Too small value may kill your CPU, too high value may not update knownlists properly. The default value is chosen experimentally.
  201. # Default: 1250
  202. KnownListUpdateInterval = 1250
  203. # Grid options: Grids can turn themselves on and off. This also affects the loading and processing of all AI tasks and (in the future) geodata within this grid.
  204. # Turn on for a grid with a person in it is immediate, but it then turns on the 8 neighboring grids based on the specified number of seconds.
  205. # Turn off for a grid and neighbors occurs after the specified number of seconds have passed during which a grid has had no players in or in any of its neighbors.
  206. # The always on option allows to ignore all this and let all grids be active at all times (not suggested).
  207. # Default: False
  208. GridsAlwaysOn = False
  209. # Default: 1
  210. GridNeighborTurnOnTime = 1
  211. # Default: 90
  212. GridNeighborTurnOffTime = 90
  213. # ---------------------------------------------------------------------------
  214. # Geodata
  215. # ---------------------------------------------------------------------------
  216. # GeoData options:
  217. # 0 = GeoData and PathFinding OFF (default)
  218. # 1 = GeoData is used to check Line Of Sight (LOS) targeting and
  219. # L2Playable movement. You need to download files for data/geodata folder.
  220. # Monsters can pass walls but not aggro (no line of sight) through them.
  221. # 2 = Full GeoData enabled. Includes PathFinding (requires also /data/pathnode
  222. # files if CellPathFinding not enabled) and all character moves go through
  223. # geodata checks (if a mob passes a wall, pathfinding didn't find a route
  224. # but we allow attack and returning home).
  225. # Recommended server memory minimum 2 GB, rather 3 GB.
  226. # Default: 0
  227. GeoData = 0
  228. # Cell-level pathfinding, produces more accurate routes but is (maybe 10x) heavier to calculate. Recommended for small servers at least.
  229. # If False, pathnode files are used. Uses a max number of nodes in calculation which can be adjusted in the algorithm if it needs to be faster.
  230. # Default: False
  231. CellPathFinding = False
  232. # True = Loads GeoData buffer's content into physical memory.
  233. # False = Does not necessarily imply that the GeoData buffer's content is not resident in physical memory.
  234. # Default: True
  235. ForceGeodata = True
  236. # This setting controls Client <--> Server Player coordinates synchronization:
  237. # -1 - Will synchronize only Z from Client --> Server. Default when no geodata.
  238. # 1 - Synchronization Client --> Server only. Using this option (without geodata) makes it more difficult for players to bypass obstacles.
  239. # 2 - Intended for geodata (at least with cell-level pathfinding, otherwise can you try -1).
  240. # Server sends validation packet if client goes too far from server calculated coordinates.
  241. # Default: -1
  242. CoordSynchronize = -1
  243. # ---------------------------------------------------------------------------
  244. # Features
  245. # ---------------------------------------------------------------------------
  246. # Zone Setting Options:
  247. # 0 = Peace All the Time
  248. # 1 = PVP During Siege for siege participants
  249. # 2 = PVP All the Time
  250. # Default: 0
  251. ZoneTown = 0
  252. # Activates the position recorder. Valid 3D points will be recorded and written to data/universe.txt on shutdown.
  253. # Default: False
  254. ActivatePositionRecorder = False
  255. # Global Chat.
  256. # Available Options: ON, OFF, GM, GLOBAL
  257. # Default: ON
  258. GlobalChat = ON
  259. # Trade Chat.
  260. # Available Options: ON (global), OFF, GM, LIMITED (region)
  261. # Default: LIMITED
  262. TradeChat = LIMITED
  263. # If you are experiencing problems with Warehouse or Freight transactions, feel free to disable them here.
  264. # Default: True
  265. AllowWarehouse = True
  266. # Enable Warehouse Cache. If warehouse is not used will server clear memory used by this warehouse.
  267. # Default: False
  268. WarehouseCache = False
  269. # How long warehouse should be stored in memory.
  270. # Default: 15
  271. WarehouseCacheTime = 15
  272. # Default: True
  273. AllowFreight = True
  274. # If True player can try on weapon and armor in shop.
  275. # Default: False
  276. AllowWear = False
  277. # Default: 5
  278. WearDelay = 5
  279. #Adena cost to try on an item.
  280. # Default: 10
  281. WearPrice = 10
  282. # ---------------------------------------------------------------------------
  283. # Misc Settings
  284. # ---------------------------------------------------------------------------
  285. # Default: False
  286. AllowRace = False
  287. # Default: True
  288. AllowWater = True
  289. # Enable pets for rent (wyvern & strider) from pet managers.
  290. # Default: False
  291. AllowRentPet = False
  292. # Default: True
  293. AllowFishing = True
  294. # Default: True
  295. AllowBoat = True
  296. # Default: True
  297. AllowCursedWeapons = True
  298. # This controls whether or not NPCs (not mobs) will walk around from one point to another.
  299. # Default: True
  300. AllowNpcWalkers = True
  301. #Allow Pet manager's pets to walk around.
  302. # Default: False
  303. AllowPetWalkers = False
  304. # Show "data/html/servnews.htm" when a character enters world.
  305. # Default: False
  306. ShowServerNews = False
  307. # Type of the Community board:
  308. # 0 = community is disabled
  309. # 1 = old community
  310. # 2 = full community (not fully implemented, experimental)
  311. # Default: 1
  312. CommunityType = 1
  313. # Default: False
  314. BBSShowPlayerList = False
  315. # Default: _bbshome
  316. BBSDefault = _bbshome
  317. # show level of character to others in Community Board
  318. # Default: False
  319. ShowLevelOnCommunityBoard = False
  320. # Default: True
  321. ShowStatusOnCommunityBoard = True
  322. # Default: 50
  323. NamePageSizeOnCommunityBoard = 50
  324. # Default: 5
  325. NamePerRowOnCommunityBoard = 5
  326. # ---------------------------------------------------------------------------
  327. # Olympiad
  328. # ---------------------------------------------------------------------------
  329. # Olympiad Start Time in Military hours Default 6pm (18)
  330. # Default: 18
  331. AltOlyStartTime = 18
  332. # Olympiad Start Time for Min's, Default 00 so at the start of the hour.
  333. # Default: 00
  334. AltOlyMin = 00
  335. # Olympiad Competition Period, Default 6 hours.
  336. # (If set different, should be increment by 10mins)
  337. # Default: 21600000
  338. AltOlyCPeriod = 21600000
  339. # Olympiad Battle Period, Default 6 minutes. (If set different, should be < AltOlyBWait)
  340. # Default: 360000
  341. AltOlyBattle = 360000
  342. # Olympiad Battle Wait, Default 10 Minutes
  343. # Default: 600000
  344. AltOlyBWait = 600000
  345. # Olympiad Initial Wait Period, Default 5 minutes
  346. # Default: 300000
  347. AltOlyIWait = 300000
  348. # Olympiad Weekly Period, Default 1 week
  349. # Default: 604800000
  350. AltOlyWPeriod = 604800000
  351. # Olympiad Validation Period, Default 24 Hours.
  352. # Default: 86400000
  353. AltOlyVPeriod = 86400000
  354. # Required number of participants for Classed and Non-Classed matches, Default 5 & 9
  355. # Default: 5
  356. AltOlyClassedParticipants = 5
  357. # Default: 9
  358. AltOlyNonClassedParticipants = 9
  359. # Olympiad battle winner reward for class and non-class games.
  360. # Default: 6651
  361. AltOlyBattleRewItem = 6651
  362. # Default: 50
  363. AltOlyClassedRewItemCount = 50
  364. # Default: 30
  365. AltOlyNonClassedRewItemCount = 30
  366. # Minimum points needed to to exchange noblesse gate pass.
  367. # Default: 50
  368. AltOlyMinPointForExchange = 50
  369. # ItemId for this reward.
  370. # Default: 6651
  371. AltOlyCompRewItem = 6651
  372. # Rate to exchange points to reward item.
  373. # Default: 1000
  374. AltOlyGPPerPoint = 1000
  375. # Noblesse points awarded to Heros.
  376. # Default: 300
  377. AltOlyHeroPoints = 300
  378. # Hero tables show last month's winners or current status.
  379. # Default: True
  380. AltOlyShowMonthlyWinners = True
  381. # Olympiad Managers announce each start of fight.
  382. # Default: True
  383. AltOlyAnnounceGames = True
  384. # Restrict specified items in Olympiad. ItemID's need to be separated with a comma (ex. 1,200,350)
  385. # Default: 0
  386. AltOlyRestrictedItems = 0
  387. # Enchant limit for items during Olympiad battles. Disabled = -1.
  388. # Default: -1
  389. AltOlyEnchantLimit = -1
  390. # Log all Olympiad fights and outcome to olympiad.csv file.
  391. # Default: False
  392. AlyOlyLogFights = False
  393. # ---------------------------------------------------------------------------
  394. # Manor
  395. # ---------------------------------------------------------------------------
  396. # Default: True
  397. AllowManor = True
  398. # Manor refresh time in military hours.
  399. # Default: 20 (8pm)
  400. AltManorRefreshTime = 20
  401. # Manor refresh time (minutes).
  402. # Default: 00 (start of the hour)
  403. AltManorRefreshMin = 00
  404. # Manor period approve time in military hours.
  405. # Default: 6 (6am)
  406. AltManorApproveTime = 6
  407. # Manor period approve time (minutes).
  408. # Default: 00 (start of the hour)
  409. AltManorApproveMin = 00
  410. # Manor maintenance time.
  411. # Default: 360000 (6 minutes)
  412. AltManorMaintenancePeriod = 360000
  413. # Manor Save Type.
  414. # True = Save data into the database after every action
  415. # Default: False
  416. AltManorSaveAllActions = False
  417. # Manor Save Period (used only if AltManorSaveAllActions = False) Default very 2 hours
  418. # Default: 2
  419. AltManorSavePeriodRate = 2
  420. # ---------------------------------------------------------------------------
  421. # Lottery
  422. # ---------------------------------------------------------------------------
  423. # Default: False
  424. AllowLottery = False
  425. # Initial Lottery prize.
  426. # Default: 50000
  427. AltLotteryPrize = 50000
  428. # Lottery Ticket Price
  429. # Default: 2000
  430. AltLotteryTicketPrice = 2000
  431. # What part of jackpot amount should receive characters who pick 5 wining numbers
  432. # Default: 0.6
  433. AltLottery5NumberRate = 0.6
  434. # What part of jackpot amount should receive characters who pick 4 wining numbers
  435. # Default: 0.2
  436. AltLottery4NumberRate = 0.2
  437. # What part of jackpot amount should receive characters who pick 3 wining numbers
  438. # Default: 0.2
  439. AltLottery3NumberRate = 0.2
  440. # How much adena receive characters who pick two or less of the winning number
  441. # Default: 200
  442. AltLottery2and1NumberPrize = 200
  443. # ---------------------------------------------------------------------------
  444. # Dimension Rift
  445. # ---------------------------------------------------------------------------
  446. # Minimal party size to enter rift. Min = 2, Max = 9.
  447. # If while inside the rift, the party becomes smaller, all members will be teleported back.
  448. # Default: 2
  449. RiftMinPartySize = 2
  450. # Number of maximum jumps between rooms allowed, after this time party will be teleported back
  451. # Default: 4
  452. MaxRiftJumps = 4
  453. # Time in ms the party has to wait until the mobs spawn when entering a room. C4 retail: 10s
  454. # Default: 10000
  455. RiftSpawnDelay = 10000
  456. # Time between automatic jumps in seconds
  457. # Default: 480
  458. AutoJumpsDelayMin = 480
  459. # Default: 600
  460. AutoJumpsDelayMax = 600
  461. # Time Multiplier for stay in the boss room
  462. # Default: 1.5
  463. BossRoomTimeMultiply = 1.5
  464. # Cost in dimension fragments to enter the rift, each party member must own this amount
  465. # Default: 18
  466. RecruitCost = 18
  467. # Default: 21
  468. SoldierCost = 21
  469. # Default: 24
  470. OfficerCost = 24
  471. # Default: 27
  472. CaptainCost = 27
  473. # Default: 30
  474. CommanderCost = 30
  475. # Default: 33
  476. HeroCost = 33
  477. # ---------------------------------------------------------------------------
  478. # Four Sepulchers
  479. # ---------------------------------------------------------------------------
  480. # Default: 50
  481. TimeOfAttack = 50
  482. # Default: 5
  483. TimeOfCoolDown = 5
  484. # Default: 3
  485. TimeOfEntry = 3
  486. # Default: 2
  487. TimeOfWarmUp = 2
  488. # Default: 4
  489. NumberOfNecessaryPartyMembers = 4
  490. # ---------------------------------------------------------------------------
  491. # Punishment
  492. # ---------------------------------------------------------------------------
  493. # Player punishment for illegal actions:
  494. # 1 - broadcast warning to gms only
  495. # 2 - kick player(default)
  496. # 3 - kick & ban player
  497. # 4 - jail player (define minutes of jail with param: 0 = infinite)
  498. # Default: 2
  499. DefaultPunish = 2
  500. # This setting typically specifies the duration of the above punishment.
  501. # Default: 0
  502. DefaultPunishParam = 0
  503. # Apply default punish if player buy items for zero adena.
  504. # Default: True
  505. OnlyGMItemsFree = True
  506. # Jail is a PvP zone.
  507. # Default: True
  508. JailIsPvp = True
  509. # Disable all chat in jail (except normal one)
  510. # Default: True
  511. JailDisableChat = True
  512. # ---------------------------------------------------------------------------
  513. # Database Custom Tables
  514. # ---------------------------------------------------------------------------
  515. # Default: False
  516. CustomSpawnlistTable = False
  517. # Option to save GM spawn only in the custom table.
  518. # Default: False
  519. SaveGmSpawnOnCustom = False
  520. # Option to delete spawn in alternate table.
  521. # Default: False
  522. DeleteGmSpawnOnCustom = False
  523. # Default: False
  524. CustomNpcTable = False
  525. # Default: False
  526. CustomItemTables = False
  527. # Default: False
  528. CustomArmorSetsTable = False
  529. # Default: False
  530. CustomTeleportTable = False
  531. # Default: False
  532. CustomDroplistTable = False
  533. # Default: False
  534. CustomMerchantTables = False
  535. # ---------------------------------------------------------------------------
  536. # Developer Settings
  537. # ---------------------------------------------------------------------------
  538. # Do not touch these if you do not know what you are doing.
  539. # These settings are for debugging servers ONLY. They are not meant for LIVE servers.
  540. # Default: False
  541. Debug = False
  542. # Packet handler debug output
  543. # Default: False
  544. PacketHandlerDebug = False
  545. # Default: False
  546. Assert = False
  547. # Default: False
  548. Developer = False
  549. # Default: False
  550. AcceptGeoeditorConn = False
  551. # If True the server will be a test server (listed by test server clients only).
  552. # Default: False
  553. TestServer = False
  554. # If this is True then test servers will be listed like test servers.
  555. # Default: False
  556. ListTestServers = False
  557. # Don't load quests.
  558. # Default: False
  559. AltDevNoQuests = False
  560. # Don't load spawntable.
  561. # Default: False
  562. AltDevNoSpawns = False