mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-05-03 19:09:19 +02:00
set min client 780 and close server on startup also fix stages for beta
This commit is contained in:
parent
25ea3c8c92
commit
03b55b4c13
@ -83,9 +83,9 @@ newbieLevelThreshold = 5
|
||||
-- Rates
|
||||
-- NOTE: rateExp is not used if you have enabled stages in data/XML/stages.xml
|
||||
rateExp = 1
|
||||
rateSkill = 1
|
||||
rateLoot = 1
|
||||
rateMagic = 1
|
||||
rateSkill = 25
|
||||
rateLoot = 5
|
||||
rateMagic = 15
|
||||
rateSpawn = 0
|
||||
|
||||
-- Monsters
|
||||
|
@ -13,12 +13,12 @@ expFromPlayersLevelRange = 75
|
||||
banLength = 30 * 24 * 60 * 60
|
||||
whiteSkullTime = 15 * 60
|
||||
redSkullTime = 30 * 24 * 60 * 60
|
||||
killsDayRedSkull = 3
|
||||
killsWeekRedSkull = 5
|
||||
killsMonthRedSkull = 10
|
||||
killsDayBanishment = 6
|
||||
killsWeekBanishment = 10
|
||||
killsMonthBanishment = 20
|
||||
killsDayRedSkull = 999
|
||||
killsWeekRedSkull = 999
|
||||
killsMonthRedSkull = 999
|
||||
killsDayBanishment = 999
|
||||
killsWeekBanishment = 999
|
||||
killsMonthBanishment = 999
|
||||
|
||||
-- Connection Config
|
||||
-- NOTE: maxPlayers set to 0 means no limit
|
||||
@ -83,9 +83,9 @@ newbieLevelThreshold = 5
|
||||
-- Rates
|
||||
-- NOTE: rateExp is not used if you have enabled stages in data/XML/stages.xml
|
||||
rateExp = 1
|
||||
rateSkill = 1
|
||||
rateLoot = 1
|
||||
rateMagic = 1
|
||||
rateSkill = 25
|
||||
rateLoot = 5
|
||||
rateMagic = 15
|
||||
rateSpawn = 0
|
||||
|
||||
-- Monsters
|
||||
@ -103,7 +103,7 @@ defaultPriority = "high"
|
||||
startupDatabaseOptimization = true
|
||||
|
||||
-- Status server information
|
||||
ownerName = ""
|
||||
ownerEmail = ""
|
||||
url = "https://otland.net/"
|
||||
location = "Sweden"
|
||||
ownerName = "Erikas"
|
||||
ownerEmail = "e.kontenis@gmail.com"
|
||||
url = "https://sabrehaven.com"
|
||||
location = "France"
|
||||
|
@ -1,9 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<stages>
|
||||
<config enabled="1"/>
|
||||
<stage minlevel="1" maxlevel="8" multiplier="7"/>
|
||||
<stage minlevel="9" maxlevel="20" multiplier="6"/>
|
||||
<stage minlevel="21" maxlevel="50" multiplier="5"/>
|
||||
<stage minlevel="51" maxlevel="100" multiplier="4"/>
|
||||
<stage minlevel="101" multiplier="5"/>
|
||||
<stage minlevel="1" maxlevel="200" multiplier="100"/>
|
||||
<stage minlevel="201" multiplier="2"/>
|
||||
</stages>
|
@ -70,4 +70,7 @@ function onStartup()
|
||||
addEvent(setBloomingGriffinclaw, 10000)
|
||||
end
|
||||
end
|
||||
|
||||
-- temporary
|
||||
Game.setGameState(GAME_STATE_CLOSED)
|
||||
end
|
||||
|
@ -24,7 +24,7 @@ static constexpr auto STATUS_SERVER_NAME = "Sabrehaven";
|
||||
static constexpr auto STATUS_SERVER_VERSION = "1.0";
|
||||
static constexpr auto STATUS_SERVER_DEVELOPERS = "OTLand community & Sabrehaven Developers Team";
|
||||
|
||||
static constexpr auto CLIENT_VERSION_MIN = 781;
|
||||
static constexpr auto CLIENT_VERSION_MIN = 780;
|
||||
static constexpr auto CLIENT_VERSION_MAX = 781;
|
||||
static constexpr auto CLIENT_VERSION_STR = "7.81";
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user