forked from 2009Scape/Server
Updated server config to desired settings
This commit is contained in:
parent
9295c91a7d
commit
010cd58460
1 changed files with 17 additions and 17 deletions
|
|
@ -11,18 +11,18 @@ secret_key = "2009scape_development"
|
|||
write_logs = true
|
||||
msip = "127.0.0.1"
|
||||
#preload the map (Increases memory usage by 2GB but makes game ticks smoother)
|
||||
preload_map = false
|
||||
preload_map = true
|
||||
#--------Note: If both of the below are false, no database is required to run the server.--------------
|
||||
#true = login requires password to be correct, passwords are hashed before stored. false = login does not care about the correctness of a password.
|
||||
use_auth = false #NOTE: THIS MUST BE SET TO TRUE IN PRODUCTION!
|
||||
use_auth = true #NOTE: THIS MUST BE SET TO TRUE IN PRODUCTION!
|
||||
#true - account data (credits, playtime, etc) is persisted, false - account data is purely temporary
|
||||
#NOTE: this does not affect actual save data, like stats, inventory, etc.
|
||||
persist_accounts = false #NOTE: THIS MUST BE SET TO TRUE IN PRODUCTION!
|
||||
persist_accounts = true #NOTE: THIS MUST BE SET TO TRUE IN PRODUCTION!
|
||||
noauth_default_admin = true #NOTE: If we are not using auth, this determines whether or not players are admins by default.
|
||||
#------------------------------------------------------------------------------------------------------
|
||||
#The limit on how many different accounts a player can log into per day.
|
||||
daily_accounts_per_ip = 3
|
||||
watchdog_enabled = true
|
||||
daily_accounts_per_ip = 30
|
||||
watchdog_enabled = false
|
||||
connectivity_check_url = "https://google.com,https://2009scape.org"
|
||||
connectivity_timeout = 500
|
||||
|
||||
|
|
@ -44,21 +44,21 @@ grafana_log_ttl_days = 7
|
|||
|
||||
|
||||
[world]
|
||||
name = "2009Scape"
|
||||
name = "SnowScape"
|
||||
#name used for announcements of bots selling items on the GE
|
||||
name_ge = "2009Scape"
|
||||
debug = true
|
||||
dev = true
|
||||
name_ge = "SnowScape"
|
||||
debug = false
|
||||
dev = false
|
||||
start_gui = false
|
||||
daily_restart = false
|
||||
daily_restart = true
|
||||
#world number
|
||||
world_id = "1"
|
||||
country_id = "0"
|
||||
members = true
|
||||
#activity as displayed on the world list
|
||||
activity = "2009Scape Classic."
|
||||
activity = "SnowScape"
|
||||
pvp = false
|
||||
default_xp_rate = 5.0
|
||||
default_xp_rate = 1.0
|
||||
allow_slayer_reroll = false
|
||||
#enables a default clan for players to join automatically. Should be an account with the same name as @name, with a clan set up already.
|
||||
enable_default_clan = true
|
||||
|
|
@ -81,14 +81,14 @@ enable_doubling_money_scammers = true
|
|||
wild_pvp_enabled = true
|
||||
jad_practice_enabled = true
|
||||
#minimum HA value for announcements of bots selling on ge
|
||||
ge_announcement_limit = 500
|
||||
enable_castle_wars = false
|
||||
ge_announcement_limit = 500000
|
||||
enable_castle_wars = true
|
||||
personalized_shops = true
|
||||
bots_influence_ge_price = true
|
||||
bots_influence_ge_price = false
|
||||
#verbose cutscene logging (for cutscenes in the new system)
|
||||
verbose_cutscene = false
|
||||
#show the rules the first time a player logs in
|
||||
show_rules = true
|
||||
show_rules = false
|
||||
#the number of revenants active at a time
|
||||
revenant_population = 30
|
||||
#enable auto-buy/auto-sell on the GE.
|
||||
|
|
@ -100,7 +100,7 @@ better_dfs = true
|
|||
#new player announcement
|
||||
new_player_announcement = true
|
||||
#enables holiday random events (no effect on normal random events)
|
||||
holiday_event_randoms = true
|
||||
holiday_event_randoms = false
|
||||
#force holiday randoms (can only force one at a time)
|
||||
force_halloween_randoms = false
|
||||
force_christmas_randoms = false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue