Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 9.91 KB | None | 0 0
  1.  
  2.     accountManager = false
  3.     namelockManager = true
  4.     newPlayerChooseVoc = true
  5.     newPlayerSpawnPosX = 998
  6.     newPlayerSpawnPosY = 1957
  7.     newPlayerSpawnPosZ = 7
  8.     newPlayerTownId = 1
  9.     newPlayerLevel = 9
  10.     newPlayerMagicLevel = 2
  11.     generateAccountNumber = false
  12.  
  13.     comboTime = 100
  14.      comboMembers = 2
  15.         comboFriends = 3
  16.         comboFriendsClearTime = 5 * 60 * 1000
  17.         comboFriendsClearInterval = 1 * 60 * 1000
  18.         comboShowAnimation = 1
  19.  
  20.  
  21.     paralyzeSlow = 10
  22.     paralyzeMinTime = 200 -- if unparalyze time under (miliseconds) count it as too fast
  23.     paralyzeChecks = 3 -- after how many too fast unparalyzes punish player (slow)  
  24.  
  25.     -- Anti MC
  26.     -- At data/creaturescripts/scripts/Antimagebomb.lua --You can configure it!
  27.     antimulticlient = false --Do you want allow the player to check max players on one ip?
  28.  
  29.  
  30.     -- Unjustified kills
  31.     -- NOTE: *Banishment and *BlackSkull variables are >summed up<
  32.     -- (dailyFragsToRedSkull + dailyFragsToBanishment) with their
  33.     -- *RedSkull equivalents.
  34.     -- Auto banishing works only if useBlackSkull set to negative.
  35.     -- advancedFragList is not advised if you use huge frags
  36.     -- requirements.
  37.     redSkullLength = 1 * 12 * 60 * 60
  38.     blackSkullLength = 6 * 24 * 60 * 60
  39.     dailyFragsToRedSkull = 8
  40.     weeklyFragsToRedSkull = 40
  41.     monthlyFragsToRedSkull = 140
  42.     dailyFragsToBlackSkull = 16
  43.     weeklyFragsToBlackSkull = 80
  44.     monthlyFragsToBlackSkull = 280
  45.     dailyFragsToBanishment = 20
  46.     weeklyFragsToBanishment = 140
  47.     monthlyFragsToBanishment = 500
  48.     blackSkulledDeathHealth = 40
  49.     blackSkulledDeathMana = 0
  50.     useBlackSkull = true
  51.     useFragHandler = true
  52.     advancedFragList = false
  53.  
  54.     -- Banishments
  55.     -- violationNameReportActionType 1 = just a report, 2 = name lock, 3 = player banishment
  56.     -- killsBanLength works only if useBlackSkull option is disabled.
  57.     notationsToBan = 3
  58.     warningsToFinalBan = 4
  59.     warningsToDeletion = 5
  60.     banLength = 7 * 24 * 60 * 60
  61.     killsBanLength = 7 * 24 * 60 * 60
  62.     finalBanLength = 30 * 24 * 60 * 60
  63.     ipBanishmentLength = 1 * 24 * 60 * 60
  64.     broadcastBanishments = true
  65.     maxViolationCommentSize = 200
  66.     violationNameReportActionType = 2
  67.     autoBanishUnknownBytes = false
  68.  
  69.     -- Battle
  70.     -- NOTE: showHealingDamageForMonsters inheritates from showHealingDamage.
  71.     -- loginProtectionPeriod is the famous Tibia anti-magebomb system.
  72.     -- deathLostPercent set to nil enables manual mode.
  73.     worldType = "pvp-enforced"
  74.     protectionLevel = 100
  75.     pvpTileIgnoreLevelAndVocationProtection = true
  76.     pzLocked = 30 * 1000
  77.     huntingDuration = 60 * 1000
  78.     criticalHitChance = 14
  79.     criticalHitMultiplier = 1
  80.     displayCriticalHitNotify = true
  81.     removeWeaponAmmunition = false
  82.     removeWeaponCharges = false
  83.     removeRuneCharges = false
  84.     whiteSkullTime = 5 * 60 * 1000
  85.     noDamageToSameLookfeet = false
  86.     showHealingDamage = true
  87.     showHealingDamageForMonsters = false
  88.     fieldOwnershipDuration = 3 * 1000
  89.     stopAttackingAtExit = false
  90.     oldConditionAccuracy = false
  91.     loginProtectionPeriod = 5 * 1000
  92.     deathLostPercent = 10
  93.     stairhopDelay = 2 * 100
  94.     pushCreatureDelay = 2 * 100
  95.     deathContainerId = 1987
  96.     gainExperienceColor = 57
  97.     addManaSpentInPvPZone = true
  98.     squareColor = 0
  99.     allowFightback = true
  100.  
  101.     -- Connection config
  102.     worldId = 0
  103.     ip = "77.103.167.144"
  104.     bindOnlyConfiguredIpAddress = false
  105.     loginPort = 7171
  106.     gamePort = 7172
  107.     adminPort = 7171
  108.     statusPort = 7171
  109.     loginTries = 10
  110.     retryTimeout = 5 * 1000
  111.     loginTimeout = 60 * 1000
  112.     maxPlayers = 1000
  113.     motd = "Welcome to the Forgotten Server 8.60!"
  114.     displayOnOrOffAtCharlist = false
  115.     onePlayerOnlinePerAccount = true
  116.     allowClones = false
  117.     serverName = "Forgotten 8.60"
  118.     loginMessage = "Welcome to the Forgotten Server 8.60!"
  119.     statusTimeout = 5 * 60 * 1000
  120.     replaceKickOnLogin = true
  121.     forceSlowConnectionsToDisconnect = false
  122.     loginOnlyWithLoginServer = false
  123.     premiumPlayerSkipWaitList = false
  124.  
  125.     -- Database
  126.     -- NOTE: sqlFile is used only by sqlite database, and sqlKeepAlive by mysql database.
  127.     -- To disable sqlKeepAlive such as mysqlReadTimeout use 0 value.
  128.     sqlType = "mysql"
  129.     sqlHost = "localhost"
  130.     sqlPort = 3306
  131.     sqlUser = "otserv"
  132.     sqlPass = "oops"
  133.     sqlDatabase = "otserv"
  134.     sqlFile = ""
  135.     sqlKeepAlive = 0
  136.     mysqlReadTimeout = 10
  137.     mysqlWriteTimeout = 10
  138.     encryptionType = "plain"
  139.  
  140.     -- Deathlist
  141.     deathListEnabled = true
  142.     deathListRequiredTime = 1 * 60 * 1000
  143.     deathAssistCount = 19
  144.     maxDeathRecords = 5
  145.  
  146.     -- Guilds
  147.     ingameGuildManagement = true
  148.     levelToFormGuild = 8
  149.     premiumDaysToFormGuild = 0
  150.     guildNameMinLength = 4
  151.     guildNameMaxLength = 20
  152.  
  153.     -- Highscores
  154.     highscoreDisplayPlayers = 15
  155.     updateHighscoresAfterMinutes = 60
  156.  
  157.     -- Houses
  158.     buyableAndSellableHouses = true
  159.     houseNeedPremium = true
  160.     bedsRequirePremium = true
  161.     levelToBuyHouse = 500
  162.     housesPerAccount = 0
  163.     houseRentAsPrice = false
  164.     housePriceAsRent = true
  165.     housePriceEachSquare = 2000
  166.     houseRentPeriod = "daily"
  167.     houseCleanOld = 0
  168.     guildHalls = false
  169.  
  170.     -- Item usage
  171.     timeBetweenActions = 200
  172.     timeBetweenExActions = 1000
  173.     hotkeyAimbotEnabled = true
  174.  
  175.     -- Map
  176.     -- NOTE: storeTrash costs more memory, but will perform alot faster cleaning.
  177.     mapName = "forgotten"
  178.     mapAuthor = "Komic"
  179.     randomizeTiles = true
  180.     storeTrash = true
  181.     cleanProtectedZones = true
  182.     mailboxDisabledTowns = "-1"
  183.  
  184.     -- Process
  185.     -- NOTE: defaultPriority works only on Windows and niceLevel on *nix
  186.     -- coresUsed are seperated by comma cores ids used by server process,
  187.     -- default is -1, so it stays untouched (automaticaly assigned by OS).
  188.     defaultPriority = "high"
  189.     niceLevel = 5
  190.     coresUsed = "-1"
  191.  
  192.     -- Startup
  193.     optimizeDatabaseAtStartup = true
  194.     removePremiumOnInit = true
  195.     confirmOutdatedVersion = false
  196.  
  197.     -- Spells
  198.     formulaLevel = 5.0
  199.     formulaMagic = 1.0
  200.     bufferMutedOnSpellFailure = false
  201.     spellNameInsteadOfWords = false
  202.     emoteSpells = true
  203.  
  204.     -- Outfits
  205.     allowChangeOutfit = true
  206.     allowChangeColors = true
  207.     allowChangeAddons = true
  208.     disableOutfitsForPrivilegedPlayers = false
  209.     addonsOnlyPremium = true
  210.  
  211.     -- Miscellaneous
  212.     -- NOTE: promptExceptionTracerErrorBox works only with precompiled support feature,
  213.     -- called "exception tracer" (__EXCEPTION_TRACER__ flag).
  214.     dataDirectory = "data/"
  215.     bankSystem = true
  216.     displaySkillLevelOnAdvance = false
  217.     promptExceptionTracerErrorBox = true
  218.     separateViplistPerCharacter = false
  219.     maximumDoorLevel = 500
  220.     maxMessageBuffer = 6
  221.  
  222.     -- Saving-related
  223.     -- useHouseDataStorage usage may be found at README.
  224.     saveGlobalStorage = true
  225.     useHouseDataStorage = false
  226.     storePlayerDirection = false
  227.  
  228.     -- Loot
  229.     -- monsterLootMessage 0 to disable, 1 - only party, 2 - only player, 3 - party or player (like Tibia's)
  230.     checkCorpseOwner = true
  231.     monsterLootMessage = 3
  232.     monsterLootMessageType = 19
  233.  
  234.     -- Ghost mode
  235.     ghostModeInvisibleEffect = false
  236.     ghostModeSpellEffects = true
  237.  
  238.     -- Limits
  239.     idleWarningTime = 14 * 60 * 10000
  240.     idleKickTime = 15 * 60 * 10000
  241.     expireReportsAfterReads = 1
  242.     playerQueryDeepness = 2
  243.     maxItemsPerPZTile = 12
  244.     maxItemsPerHouseTile = 12
  245.  
  246.     -- Premium-related
  247.     freePremium = true
  248.     premiumForPromotion = true
  249.  
  250.     -- Blessings
  251.     -- NOTE: blessingReduction* regards items/containers loss.
  252.     -- eachBlessReduction is how much each bless reduces the experience/magic/skills loss.
  253.     blessingOnlyPremium = true
  254.     blessingReductionBase = 30
  255.     blessingReductionDecreament = 5
  256.     eachBlessReduction = 8
  257.  
  258.     -- Rates
  259.     -- NOTE: experienceStages configuration is located in data/XML/stages.xml.
  260.     -- rateExperienceFromPlayers 0 to disable.
  261.     experienceStages = true
  262.     rateExperience = 5.0
  263.     rateExperienceFromPlayers = 2
  264.     rateSkill = 100.0
  265.     rateMagic = 60.0
  266.     rateLoot = 12.0
  267.     rateSpawn = 1
  268.  
  269.     -- Monster rates
  270.     rateMonsterHealth = 1.0
  271.     rateMonsterMana = 1.0
  272.     rateMonsterAttack = 1.0
  273.     rateMonsterDefense = 1.0
  274.  
  275.     -- Experience from players
  276.     -- NOTE: min~Threshold* set to 0 will disable the minimum threshold:
  277.     -- player will gain experience from every lower leveled player.
  278.     -- max~Threshold* set to 0 will disable the maximum threshold:
  279.     -- player will gain experience from every higher leveled player.
  280.     minLevelThresholdForKilledPlayer = 0
  281.     maxLevelThresholdForKilledPlayer = 0
  282.  
  283.     -- Stamina
  284.     -- NOTE: Stamina is stored in miliseconds, so seconds are multiplied by 1000.
  285.     -- rateStaminaHits multiplies every hit done a creature, which are later
  286.     -- multiplied by player attack speed.
  287.     -- rateStaminaGain is divider of every logged out second, eg:
  288.     -- 60000 / 3 = 20000 milliseconds, what gives 20 stamina seconds for 1 minute being logged off.
  289.     -- rateStaminaThresholdGain is divider for the premium stamina.
  290.     -- staminaRatingLimit* is in minutes.
  291.     rateStaminaLoss = 1
  292.     rateStaminaGain = 0
  293.     rateStaminaThresholdGain = 12
  294.     staminaRatingLimitTop = 41 * 60
  295.     staminaRatingLimitBottom = 14 * 60
  296.     rateStaminaAboveNormal = 1.5
  297.     rateStaminaUnderNormal = 0.5
  298.     staminaThresholdOnlyPremium = true
  299.  
  300.     -- Party
  301.     -- NOTE: experienceShareLevelDifference is float number.
  302.     -- experienceShareLevelDifference is highestLevel * value
  303.     experienceShareRadiusX = 60
  304.     experienceShareRadiusY = 60
  305.     experienceShareRadiusZ = 3
  306.     experienceShareLevelDifference = 1 / 6
  307.     extraPartyExperienceLimit = 60
  308.     extraPartyExperiencePercent = 15
  309.     experienceShareActivity = 2 * 60 * 1000
  310.  
  311.     -- Global save
  312.     -- NOTE: globalSaveHour means like 03:00, not that it will save every 3 hours,
  313.     -- if you want such a system please check out data/globalevents/globalevents.xml.
  314.     globalSaveEnabled = false
  315.     globalSaveHour = 8
  316.     shutdownAtGlobalSave = true
  317.     cleanMapAtGlobalSave = false
  318.  
  319.     -- Spawns
  320.     deSpawnRange = 2
  321.     deSpawnRadius = 50
  322.  
  323.     -- Summons
  324.     maxPlayerSummons = 4
  325.     teleportAllSummons = true
  326.     teleportPlayerSummons = true
  327.  
  328.     -- Status
  329.     ownerName = ""
  330.     ownerEmail = "@otland.net"
  331.     url = "http://otland.net/"
  332.     location = "Europe"
  333.     displayGamemastersWithOnlineCommand = false
  334.  
  335.     -- Logs
  336.     -- NOTE: This kind of logging does not work in GUI version.
  337.     -- For such, please compile the software with __GUI_LOGS__ flag.
  338.     adminLogsEnabled = false
  339.     displayPlayersLogging = true
  340.     prefixChannelLogs = ""
  341.     runFile = ""
  342.     outLogName = ""
  343.     errorLogName = ""
  344.     truncateLogsOnStartup = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement