Advertisement
admauriaot

CONFIG.LUA

Mar 20th, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 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 = 6
  7. killsToBlackSkull = 9
  8. pzLocked = 60 * 1000
  9. removeChargesFromRunes = false
  10. timeToDecreaseFrags = 24 * 60 * 60 * 1000
  11. whiteSkullTime = 15 * 60 * 1000
  12. stairJumpExhaustion = 2 * 1000
  13. experienceByKillingPlayers = false
  14. expFromPlayersLevelRange = 75
  15.  
  16. -- Connection Config
  17. -- NOTE: maxPlayers set to 0 means no limit
  18. ip = "158.69.131.116"
  19. bindOnlyGlobalAddress = false
  20. loginProtocolPort = 7171
  21. gameProtocolPort = 7172
  22. statusProtocolPort = 7171
  23. maxPlayers = 0
  24. motd = "Welcome to HYPEROT!"
  25. onePlayerOnlinePerAccount = true
  26. allowClones = false
  27. serverName = "HYPEROT"
  28. statusTimeout = 5 * 1000
  29. replaceKickOnLogin = true
  30. maxPacketsPerSecond = 25
  31.  
  32. -- Version Manual
  33. clientVersionMin = 1096
  34. clientVersionMax = 1097
  35. clientVersionStr = "10.97"
  36.  
  37. -- Casting System
  38. enableLiveCasting = true
  39. liveCastPort = 7173
  40.  
  41. -- Deaths
  42. -- NOTE: Leave deathLosePercent as -1 if you want to use the default
  43. -- death penalty formula. For the old formula, set it to 10. For
  44. -- no skill/experience loss, set it to 0.
  45. deathLosePercent = -1
  46.  
  47. -- Houses
  48. -- NOTE: set housePriceEachSQM to -1 to disable the ingame buy house functionality
  49. housePriceEachSQM = 1000
  50. houseRentPeriod = "weekly"
  51.  
  52. -- Item Usage
  53. timeBetweenActions = 200
  54. timeBetweenExActions = 1000
  55.  
  56. -- Map
  57. -- NOTE: set mapName WITHOUT .otbm at the end
  58. mapName = "global"
  59. mapAuthor = "Komic"
  60.  
  61. -- Market
  62. marketOfferDuration = 30 * 24 * 60 * 60
  63. premiumToCreateMarketOffer = true
  64. checkExpiredMarketOffersEachMinutes = 60
  65. maxMarketOffersAtATimePerPlayer = 100
  66.  
  67. -- MySQL
  68. mysqlHost = "127.0.0.1"
  69. mysqlUser = "root"
  70. mysqlPass = "33294130br"
  71. mysqlDatabase = "global1097"
  72. mysqlPort = 3306
  73. mysqlSock = ""
  74. passwordType = "sha1"
  75.  
  76. -- Misc.
  77. allowChangeOutfit = true
  78. freePremium = false
  79. kickIdlePlayerAfterMinutes = 15
  80. maxMessageBuffer = 4
  81. emoteSpells = true
  82. classicEquipmentSlots = false
  83. allowWalkthrough = true
  84. coinPacketSize = 25
  85. coinImagesURL = "http://some.url/images/store/"
  86.  
  87. -- Rates
  88. -- NOTE: rateExp is not used if you have enabled stages in data/XML/stages.xml
  89. rateExp = 5
  90. rateSkill = 10
  91. rateLoot = 4
  92. rateMagic = 3
  93. rateSpawn = 1
  94.  
  95. -- Monsters
  96. deSpawnRange = 2
  97. deSpawnRadius = 50
  98.  
  99. -- Stamina
  100. staminaSystem = true
  101.  
  102. -- Scripts
  103. warnUnsafeScripts = true
  104. convertUnsafeScripts = true
  105.  
  106. -- Startup
  107. -- NOTE: defaultPriority only works on Windows and sets process
  108. -- priority, valid values are: "normal", "above-normal", "high"
  109. defaultPriority = "high"
  110. startupDatabaseOptimization = true
  111.  
  112. -- Status server information
  113. ownerName = "Zeux"
  114. ownerEmail = ""
  115. url = ""
  116. location = "Curitiba - Paraná - Brazil"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement