Advertisement
Fifflaren

Untitled

Dec 9th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. -- Combat settings
  2. -- NOTE: valid values for worldType are: "pvp", "no-pvp" and "pvp-enforced"
  3. worldType = "pvp"
  4. hotkeyAimbotEnabled = true
  5. protectionLevel = 1
  6. killsToRedSkull = 3
  7. killsToBlackSkull = 6
  8. pzLocked = 60000
  9. removeChargesFromRunes = false
  10. timeToDecreaseFrags = 24 * 60 * 60 * 1000
  11. whiteSkullTime = 15 * 60 * 1000
  12. stairJumpExhaustion = 2000
  13. experienceByKillingPlayers = false
  14. expFromPlayersLevelRange = 75
  15.  
  16. -- Connection Config
  17. -- NOTE: maxPlayers set to 0 means no limit
  18. ip = "127.0.0.1"
  19. bindOnlyGlobalAddress = false
  20. loginProtocolPort = 7171
  21. gameProtocolPort = 7172
  22. statusProtocolPort = 7171
  23. maxPlayers = 0
  24. motd = "Welcome to EVOSTAR!"
  25. onePlayerOnlinePerAccount = false
  26. allowClones = true
  27. serverName = "Evostar"
  28. statusTimeout = 5000
  29. replaceKickOnLogin = true
  30. maxPacketsPerSecond = 25
  31.  
  32. -- Deaths
  33. -- NOTE: Leave deathLosePercent as -1 if you want to use the default
  34. -- death penalty formula. For the old formula, set it to 10. For
  35. -- no skill/experience loss, set it to 0.
  36. deathLosePercent = -1
  37.  
  38. -- Houses
  39. -- NOTE: set housePriceEachSQM to -1 to disable the ingame buy house functionality
  40. housePriceEachSQM = 1000
  41. houseRentPeriod = "never"
  42.  
  43. -- Item Usage
  44. timeBetweenActions = 200
  45. timeBetweenExActions = 1000
  46.  
  47. -- Map
  48. -- NOTE: set mapName WITHOUT .otbm at the end
  49. mapName = "forgotten"
  50. mapAuthor = "Komic"
  51.  
  52. -- Market
  53. marketOfferDuration = 30 * 24 * 60 * 60
  54. premiumToCreateMarketOffer = true
  55. checkExpiredMarketOffersEachMinutes = 60
  56. maxMarketOffersAtATimePerPlayer = 100
  57.  
  58. -- MySQL
  59. mysqlHost = "127.0.0.1"
  60. mysqlUser = "Evostar"
  61. mysqlPass = ""
  62. mysqlDatabase = "evostar"
  63. mysqlPort = 3306
  64. mysqlSock = ""
  65.  
  66. -- Misc.
  67. allowChangeOutfit = true
  68. freePremium = false
  69. kickIdlePlayerAfterMinutes = 15
  70. maxMessageBuffer = 4
  71. emoteSpells = false
  72. classicEquipmentSlots = false
  73.  
  74. -- Rates
  75. -- NOTE: rateExp is not used if you have enabled stages in data/XML/stages.xml
  76. rateExp = 5
  77. rateSkill = 3
  78. rateLoot = 2
  79. rateMagic = 3
  80. rateSpawn = 1
  81.  
  82. -- Monsters
  83. deSpawnRange = 2
  84. deSpawnRadius = 50
  85.  
  86. -- Stamina
  87. staminaSystem = true
  88.  
  89. -- Scripts
  90. warnUnsafeScripts = true
  91. convertUnsafeScripts = true
  92.  
  93. -- Startup
  94. -- NOTE: defaultPriority only works on Windows and sets process
  95. -- priority, valid values are: "normal", "above-normal", "high"
  96. defaultPriority = "high"
  97. startupDatabaseOptimization = false
  98.  
  99. -- Status server information
  100. ownerName = ""
  101. ownerEmail = ""
  102. url = "https://otland.net/"
  103. location = "Sweden"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement