Advertisement
Guest User

Untitled

a guest
Jan 29th, 2019
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.32 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 = 7
  6. pzLocked = 60 * 1000
  7. removeChargesFromRunes = true
  8. removeChargesFromPotions = true
  9. removeWeaponAmmunition = true
  10. removeWeaponCharges = true
  11. timeToDecreaseFrags = 24 * 60 * 60 * 1000
  12. whiteSkullTime = 15 * 60 * 1000
  13. stairJumpExhaustion = 2 * 1000
  14. experienceByKillingPlayers = false
  15. expFromPlayersLevelRange = 75
  16. dayKillsToRedSkull = 3
  17. weekKillsToRedSkull = 5
  18. monthKillsToRedSkull = 10
  19. redSkullDuration = 30
  20. blackSkullDuration = 45
  21. orangeSkullDuration = 7
  22.  
  23. -- Connection Config
  24. -- NOTE: maxPlayers set to 0 means no limit
  25. ip = "127.0.0.1"
  26. bindOnlyGlobalAddress = false
  27. loginProtocolPort = 7171
  28. gameProtocolPort = 7172
  29. statusProtocolPort = 7171
  30. maxPlayers = 0
  31. motd = "Welcome to The OTXServer Global!"
  32. onePlayerOnlinePerAccount = true
  33. allowClones = false
  34. serverName = "OTXServer-Global"
  35. statusTimeout = 5 * 1000
  36. replaceKickOnLogin = true
  37. maxPacketsPerSecond = 25
  38.  
  39. -- Version Manual
  40. clientVersionMin = 1100
  41. clientVersionMax = 1157
  42. clientVersionStr = "11.57"
  43.  
  44. -- Depot Limit
  45. freeDepotLimit = 2000
  46. premiumDepotLimit = 10000
  47. depotBoxes = 17
  48.  
  49. -- GameStore
  50. gamestoreByModules = true
  51.  
  52. -- Casting System
  53. enableLiveCasting = true
  54. liveCastPort = 7173
  55.  
  56. -- Expert Pvp Config
  57. expertPvp = false
  58.  
  59. -- Deaths
  60. -- NOTE: Leave deathLosePercent as -1 if you want to use the default
  61. -- death penalty formula. For the old formula, set it to 10. For
  62. -- no skill/experience loss, set it to 0.
  63. deathLosePercent = -1
  64.  
  65. -- Houses
  66. -- NOTE: set housePriceEachSQM to -1 to disable the ingame buy house functionality
  67. housePriceEachSQM = 1000
  68. houseRentPeriod = "daily"
  69.  
  70. -- Item Usage
  71. timeBetweenActions = 200
  72. timeBetweenExActions = 1000
  73.  
  74. -- Map
  75. -- NOTE: set mapName WITHOUT .otbm at the end
  76. mapName = "realmap"
  77. mapAuthor = "Cipsoft"
  78.  
  79. -- Market
  80. marketOfferDuration = 30 * 24 * 60 * 60
  81. premiumToCreateMarketOffer = true
  82. checkExpiredMarketOffersEachMinutes = 60
  83. maxMarketOffersAtATimePerPlayer = 100
  84.  
  85. -- MySQL
  86. mysqlHost = "127.0.0.1"
  87. mysqlUser = "root"
  88. mysqlPass = ""
  89. mysqlDatabase = "global"
  90. mysqlPort = 3306
  91. mysqlSock = ""
  92. passwordType = "sha1"
  93.  
  94. -- Misc.
  95. allowChangeOutfit = true
  96. freePremium = true
  97. kickIdlePlayerAfterMinutes = 15
  98. idleWarningTime = 10 * 60 * 1000
  99. idleKickTime = 15 * 60 * 1000
  100. maxMessageBuffer = 4
  101. emoteSpells = false
  102. classicEquipmentSlots = false
  103. allowWalkthrough = true
  104. coinPacketSize = 1
  105. coinImagesURL = "http://localhost/images/store/"
  106. classicAttackSpeed = false
  107.  
  108. -- Rates
  109. -- NOTE: rateExp is not used if you have enabled stages in data/XML/stages.xml
  110. rateExp = 1
  111. rateSkill = 50
  112. rateLoot = 3
  113. rateMagic = 25
  114. rateSpawn = 1
  115.  
  116. -- Monster rates
  117. rateMonsterHealth = 1.0
  118. rateMonsterAttack = 1.0
  119. rateMonsterDefense = 1.0
  120.  
  121. -- Monsters
  122. deSpawnRange = 2
  123. deSpawnRadius = 50
  124.  
  125. -- Stamina
  126. staminaSystem = true
  127.  
  128. -- Scripts
  129. warnUnsafeScripts = true
  130. convertUnsafeScripts = true
  131.  
  132. -- Startup
  133. -- NOTE: defaultPriority only works on Windows and sets process
  134. -- priority, valid values are: "normal", "above-normal", "high"
  135. defaultPriority = "high"
  136. startupDatabaseOptimization = true
  137.  
  138. -- Status server information
  139. ownerName = "Malucooo"
  140. ownerEmail = "e_nunes@live.com"
  141. url = "http://www.facebook.com/erick.nunes.75"
  142. location = "Brazil"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement