Advertisement
Guest User

Untitled

a guest
Jan 24th, 2018
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.14 KB | None | 0 0
  1. # ================================================================
  2. # Gameserver setting
  3. # ================================================================
  4.  
  5. # This is transmitted to the clients, so it has to be an IP or resolvable hostname. If this ip is resolvable by Login just leave *
  6. Hostname = *
  7.  
  8. # Bind ip of the gameserver, use * to bind on all available IPs.
  9. GameserverHostname = *
  10. GameserverPort = 7777
  11.  
  12. # The Loginserver host and port.
  13. LoginHost = 127.0.0.1
  14. LoginPort = 9014
  15.  
  16. # This is the server id that the gameserver will request.
  17. RequestServerID = 1
  18.  
  19. # If set to true, the login will give an other id to the server (if the requested id is already reserved).
  20. AcceptAlternateID = True
  21.  
  22. # ================================================================
  23. # Database informations
  24. # ================================================================
  25.  
  26. URL = jdbc:mysql://localhost/acis
  27. #URL = jdbc:hsqldb:hsql://localhost/acis
  28. #URL = jdbc:sqlserver://localhost/database=acis/user=sa/password=
  29.  
  30. Login = root
  31. Password =
  32.  
  33. # Maximum database connections (minimum 2, basically 10 if number under 10, default 100).
  34. MaximumDbConnections = 100
  35.  
  36. # ================================================================
  37. # serverList
  38. # ================================================================
  39.  
  40. # Displays [] in front of server name.
  41. ServerListBrackets = False
  42.  
  43. # Displays a clock next to the server name.
  44. ServerListClock = True
  45.  
  46. # List server according age.
  47. ServerListAgeLimit = 0
  48.  
  49. # If True, the server will be set as GM only.
  50. ServerGMOnly = False
  51.  
  52. # If True, the server will be a test server (listed by testserver clients only).
  53. TestServer = False
  54.  
  55. # If True, the server will be listed as a regular PvP server.
  56. PvpServer = True
  57.  
  58. # ================================================================
  59. # Clients related options
  60. # ================================================================
  61.  
  62. # Allow delete chars after D days, 0 = feature disabled.
  63. DeleteCharAfterDays = 0
  64.  
  65. # Define how many players are allowed to play simultaneously on your server.
  66. MaximumOnlineUsers = 100
  67.  
  68. # Minimum and maximum protocol revision that server allow to connect.
  69. # You must keep MinProtocolRevision <= MaxProtocolRevision.
  70. # Default: 730
  71. MinProtocolRevision = 730
  72.  
  73. # Default: 746
  74. MaxProtocolRevision = 746
  75.  
  76. # ================================================================
  77. # Automatic options
  78. # ================================================================
  79.  
  80. # AutoLoot, don't lead herbs behavior. False by default.
  81. AutoLoot = true
  82.  
  83. # AutoLoot from raid boss. False by default.
  84. AutoLootRaid = true
  85.  
  86. # If False, herbs will drop on ground even if AutoLoot is enabled. False by default.
  87. AutoLootHerbs = False
  88.  
  89. # =================================================================
  90. # Items Management
  91. # =================================================================
  92.  
  93. # Allows players to drop items on the ground, default True.
  94. AllowDiscardItem = False
  95.  
  96. # Allows the creation of multiple non-stackable items at one time, default True.
  97. MultipleItemDrop = False
  98.  
  99. # Destroys dropped herbs after X seconds, set 0 to disable, default 15.
  100. AutoDestroyHerbTime = 1
  101.  
  102. # Destroys dropped items after X seconds, set 0 to disable, default 600.
  103. AutoDestroyItemTime = 600
  104.  
  105. # Destroys dropped equipable items (armor, weapon, jewelry) after X seconds, set 0 to disable, default 0.
  106. AutoDestroyEquipableItemTime = 600
  107.  
  108. # Destroys dropped items after specified time. Ignores rules above, default 57-0,5575-0,6673-0.
  109. # 57-0: Item id 57 will never be destroyed.
  110. # 57-600: Item id 57 will be destroyed after 600 seconds/10 minutes.
  111. AutoDestroySpecialItemTime = 57-0,5575-0,6673-0
  112.  
  113. # Items dropped by players will have destroy time multiplied by X, default 1.
  114. # 0: Items dropped by players will never be destroyed.
  115. PlayerDroppedItemMultiplier = 1
  116.  
  117. # =================================================================
  118. # RATES
  119. # =================================================================
  120.  
  121. # Rate control, float values.
  122. RateXp = 1000.
  123. RateSp = 1000.
  124. RatePartyXp = 1.
  125. RatePartySp = 1.
  126. RateDropAdena = 1.
  127. RateConsumableCost = 1.
  128. RateDropItems = 1.
  129. RateRaidDropItems = 1.
  130. RateDropSpoil = 1.
  131. RateDropManor = 1
  132.  
  133. # Quest configuration settings.
  134. RateQuestDrop = 1.
  135. RateQuestReward = 1.
  136. RateQuestRewardXP = 1.
  137. RateQuestRewardSP = 1.
  138. RateQuestRewardAdena = 1.
  139.  
  140. RateKarmaExpLost = 1
  141. RateSiegeGuardsPrice = 1
  142.  
  143. # Player Drop Rate control, percent (%) values.
  144. PlayerDropLimit = 0
  145. PlayerRateDrop = 0
  146. PlayerRateDropItem = 0
  147. PlayerRateDropEquip = 0
  148. PlayerRateDropEquipWeapon = 0
  149.  
  150. # Karma Drop Rate control, percent (%) values.
  151. KarmaDropLimit = 10
  152. KarmaRateDrop = 40
  153. KarmaRateDropItem = 50
  154. KarmaRateDropEquip = 40
  155. KarmaRateDropEquipWeapon = 10
  156.  
  157. # Pet rate control (float values except for "PetFoodRate", default 1./1/1.).
  158. PetXpRate = 1.
  159. PetFoodRate = 1
  160. SinEaterXpRate = 1.
  161.  
  162. # Common herbs (default).
  163. RateCommonHerbs = 0.
  164. # Herb of Life (categorie 1).
  165. RateHpHerbs = 0.
  166. # Herb of Mana (categorie 2).
  167. RateMpHerbs = 0.
  168. # Special herbs (categorie 3).
  169. RateSpecialHerbs = 0.
  170.  
  171. # =================================================================
  172. # Allowed features
  173. # =================================================================
  174.  
  175. AllowFreight = True
  176. AllowWarehouse = True
  177.  
  178. # If True, player can try on weapon and armor in shops.
  179. # Each item tried cost WearPrice adena.
  180. AllowWear = True
  181. WearDelay = 5
  182. WearPrice = 10
  183.  
  184. # "Allow" types - Read variable name for info about ;p.
  185. AllowLottery = False
  186. AllowWater = False
  187. AllowCursedWeapons = False
  188. AllowManor = False
  189. AllowBoat = False
  190.  
  191. # Allow characters to receive damage from falling.
  192. EnableFallingDamage = True
  193.  
  194. # ================================================================
  195. # Debug, Dev & Test config
  196. # ================================================================
  197.  
  198. # Don't load spawns.
  199. NoSpawns = False
  200.  
  201. # Debug messages (by default False, easily "flood" your GS logs).
  202. Debug = true
  203. Developer = true
  204. PacketHandlerDebug = true
  205.  
  206. # ================================================================
  207. # Dead Lock Detector (thread detecting deadlocks)
  208. # ================================================================
  209.  
  210. # Activate the feature (by default: False).
  211. DeadLockDetector = true
  212.  
  213. # Check interval in seconds (by default: 20).
  214. DeadLockCheckInterval = 20
  215.  
  216. # Automatic restart if deadlock case is found (by default: False).
  217. RestartOnDeadlock = true
  218.  
  219. # =================================================================
  220. # Logging features
  221. # =================================================================
  222.  
  223. # Logging ChatWindow.
  224. LogChat = true
  225.  
  226. # Logging Item handling NOTE: This can be very space consuming.
  227. LogItems = true
  228.  
  229. # Log GM actions.
  230. GMAudit = true
  231.  
  232. # =================================================================
  233. # Community board configuration
  234. # =================================================================
  235.  
  236. # Activate or no the community board.
  237. EnableCommunityBoard = true
  238.  
  239. # Show this community board section when you open it.
  240. BBSDefault = _bbshome
  241.  
  242. # =================================================================
  243. # Flood Protectors
  244. # =================================================================
  245.  
  246. # The values are shown on ms. They can be setted to 0 to be disabled.
  247. RollDiceTime = 4200
  248. HeroVoiceTime = 10000
  249. SubclassTime = 2000
  250. DropItemTime = 1000
  251. ServerBypassTime = 500
  252. MultisellTime = 100
  253. ManufactureTime = 300
  254. ManorTime = 3000
  255. SendMailTime = 10000
  256. CharacterSelectTime = 3000
  257. GlobalChatTime = 2000
  258. TradeChatTime = 2000
  259. SocialTime = 2000
  260.  
  261. # =================================================================
  262. # Threadpool
  263. # =================================================================
  264.  
  265. # Determines the amount of scheduled thread pools. If set to -1, the server will decide the amount depending on the available processors.
  266. ScheduledThreadPoolCount = -1
  267.  
  268. # Specifies how many threads will be in a single scheduled pool.
  269. ThreadsPerScheduledThreadPool = 4
  270.  
  271. # Determines the amount of instant thread pools. If set to -1, the server will decide the amount depending on the available processors.
  272. InstantThreadPoolCount = -1
  273.  
  274. # Specifies how many threads will be in a single instant pool.
  275. ThreadsPerInstantThreadPool = 2
  276.  
  277. # =================================================================
  278. # Misc
  279. # =================================================================
  280.  
  281. # Basic protection against L2Walker.
  282. L2WalkerProtection = False
  283.  
  284. # Zone setting.
  285. # 0 = Peace All the Time
  286. # 1 = PVP During Siege for siege participants
  287. # 2 = PVP All the Time
  288. ZoneTown = 0
  289.  
  290. # Show "data/html/servnews.htm" when a character logins.
  291. ShowServerNews = True
  292.  
  293. # Disable tutorial on new player game entrance. Default: False.
  294. DisableTutorial = True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement