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
|
-- Rates
|
||||||
-- NOTE: rateExp is not used if you have enabled stages in data/XML/stages.xml
|
-- NOTE: rateExp is not used if you have enabled stages in data/XML/stages.xml
|
||||||
rateExp = 1
|
rateExp = 1
|
||||||
rateSkill = 1
|
rateSkill = 25
|
||||||
rateLoot = 1
|
rateLoot = 5
|
||||||
rateMagic = 1
|
rateMagic = 15
|
||||||
rateSpawn = 0
|
rateSpawn = 0
|
||||||
|
|
||||||
-- Monsters
|
-- Monsters
|
||||||
|
@ -13,12 +13,12 @@ expFromPlayersLevelRange = 75
|
|||||||
banLength = 30 * 24 * 60 * 60
|
banLength = 30 * 24 * 60 * 60
|
||||||
whiteSkullTime = 15 * 60
|
whiteSkullTime = 15 * 60
|
||||||
redSkullTime = 30 * 24 * 60 * 60
|
redSkullTime = 30 * 24 * 60 * 60
|
||||||
killsDayRedSkull = 3
|
killsDayRedSkull = 999
|
||||||
killsWeekRedSkull = 5
|
killsWeekRedSkull = 999
|
||||||
killsMonthRedSkull = 10
|
killsMonthRedSkull = 999
|
||||||
killsDayBanishment = 6
|
killsDayBanishment = 999
|
||||||
killsWeekBanishment = 10
|
killsWeekBanishment = 999
|
||||||
killsMonthBanishment = 20
|
killsMonthBanishment = 999
|
||||||
|
|
||||||
-- Connection Config
|
-- Connection Config
|
||||||
-- NOTE: maxPlayers set to 0 means no limit
|
-- NOTE: maxPlayers set to 0 means no limit
|
||||||
@ -83,9 +83,9 @@ newbieLevelThreshold = 5
|
|||||||
-- Rates
|
-- Rates
|
||||||
-- NOTE: rateExp is not used if you have enabled stages in data/XML/stages.xml
|
-- NOTE: rateExp is not used if you have enabled stages in data/XML/stages.xml
|
||||||
rateExp = 1
|
rateExp = 1
|
||||||
rateSkill = 1
|
rateSkill = 25
|
||||||
rateLoot = 1
|
rateLoot = 5
|
||||||
rateMagic = 1
|
rateMagic = 15
|
||||||
rateSpawn = 0
|
rateSpawn = 0
|
||||||
|
|
||||||
-- Monsters
|
-- Monsters
|
||||||
@ -103,7 +103,7 @@ defaultPriority = "high"
|
|||||||
startupDatabaseOptimization = true
|
startupDatabaseOptimization = true
|
||||||
|
|
||||||
-- Status server information
|
-- Status server information
|
||||||
ownerName = ""
|
ownerName = "Erikas"
|
||||||
ownerEmail = ""
|
ownerEmail = "e.kontenis@gmail.com"
|
||||||
url = "https://otland.net/"
|
url = "https://sabrehaven.com"
|
||||||
location = "Sweden"
|
location = "France"
|
||||||
|
@ -1,9 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<stages>
|
<stages>
|
||||||
<config enabled="1"/>
|
<config enabled="1"/>
|
||||||
<stage minlevel="1" maxlevel="8" multiplier="7"/>
|
<stage minlevel="1" maxlevel="200" multiplier="100"/>
|
||||||
<stage minlevel="9" maxlevel="20" multiplier="6"/>
|
<stage minlevel="201" multiplier="2"/>
|
||||||
<stage minlevel="21" maxlevel="50" multiplier="5"/>
|
|
||||||
<stage minlevel="51" maxlevel="100" multiplier="4"/>
|
|
||||||
<stage minlevel="101" multiplier="5"/>
|
|
||||||
</stages>
|
</stages>
|
@ -70,4 +70,7 @@ function onStartup()
|
|||||||
addEvent(setBloomingGriffinclaw, 10000)
|
addEvent(setBloomingGriffinclaw, 10000)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- temporary
|
||||||
|
Game.setGameState(GAME_STATE_CLOSED)
|
||||||
end
|
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_VERSION = "1.0";
|
||||||
static constexpr auto STATUS_SERVER_DEVELOPERS = "OTLand community & Sabrehaven Developers Team";
|
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_MAX = 781;
|
||||||
static constexpr auto CLIENT_VERSION_STR = "7.81";
|
static constexpr auto CLIENT_VERSION_STR = "7.81";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user