diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index e1a3988082d..1b4d7579c37 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -309,7 +309,7 @@ public static readonly CVarDef /// How many times per second artifacts when the round is over. /// If set to 0, they won't activate (on a timer) when the round ends. /// - public static readonly CVarDef ArtifactRoundEndTimer = CVarDef.Create("game.artifact_round_end_timer", 0.5f, CVar.NOTIFY | CVar.REPLICATED); + public static readonly CVarDef ArtifactRoundEndTimer = CVarDef.Create("game.artifact_round_end_timer", 0f, CVar.NOTIFY | CVar.REPLICATED); /// /// The time in seconds that the server should wait before restarting the round. @@ -1143,7 +1143,7 @@ public static readonly CVarDef /// See vote.enabled, but specific to preset votes /// public static readonly CVarDef VotePresetEnabled = - CVarDef.Create("vote.preset_enabled", true, CVar.SERVERONLY); + CVarDef.Create("vote.preset_enabled", false, CVar.SERVERONLY); /// /// See vote.enabled, but specific to map votes @@ -1230,7 +1230,7 @@ public static readonly CVarDef /// Whether the arrivals shuttle is enabled. /// public static readonly CVarDef ArrivalsShuttles = - CVarDef.Create("shuttle.arrivals", true, CVar.SERVERONLY); + CVarDef.Create("shuttle.arrivals", false, CVar.SERVERONLY); /// /// The map to use for the arrivals station. @@ -1270,7 +1270,7 @@ public static readonly CVarDef /// How long the emergency shuttle remains docked with the station, in seconds. /// public static readonly CVarDef EmergencyShuttleDockTime = - CVarDef.Create("shuttle.emergency_dock_time", 180f, CVar.SERVERONLY); + CVarDef.Create("shuttle.emergency_dock_time", 240f, CVar.SERVERONLY); /// /// How long after the console is authorized for the shuttle to early launch. @@ -1282,7 +1282,7 @@ public static readonly CVarDef /// The minimum time for the emergency shuttle to arrive at centcomm. /// public static readonly CVarDef EmergencyShuttleMinTransitTime = - CVarDef.Create("shuttle.emergency_transit_time_min", 60f, CVar.SERVERONLY); + CVarDef.Create("shuttle.emergency_transit_time_min", 90f, CVar.SERVERONLY); /// /// The maximum time for the emergency shuttle to arrive at centcomm. @@ -1307,14 +1307,14 @@ public static readonly CVarDef /// Time in minutes after round start to auto-call the shuttle. Set to zero to disable. /// public static readonly CVarDef EmergencyShuttleAutoCallTime = - CVarDef.Create("shuttle.auto_call_time", 90, CVar.SERVERONLY); + CVarDef.Create("shuttle.auto_call_time", 120, CVar.SERVERONLY); /// /// Time in minutes after the round was extended (by recalling the shuttle) to call /// the shuttle again. /// public static readonly CVarDef EmergencyShuttleAutoCallExtensionTime = - CVarDef.Create("shuttle.auto_call_extension_time", 45, CVar.SERVERONLY); + CVarDef.Create("shuttle.auto_call_extension_time", 30, CVar.SERVERONLY); /* * Crew Manifests @@ -1356,7 +1356,7 @@ public static readonly CVarDef /// Disabled: Cloning has full biomass cost and reclaimer can reclaim corpses with souls. (Playtested and balanced for MRP+). /// public static readonly CVarDef BiomassEasyMode = - CVarDef.Create("biomass.easy_mode", true, CVar.SERVERONLY); + CVarDef.Create("biomass.easy_mode", false, CVar.SERVERONLY); /* * Anomaly @@ -1457,13 +1457,13 @@ public static readonly CVarDef /// Allows flavor text (character descriptions) /// public static readonly CVarDef FlavorText = - CVarDef.Create("ic.flavor_text", false, CVar.SERVER | CVar.REPLICATED); + CVarDef.Create("ic.flavor_text", true, CVar.SERVER | CVar.REPLICATED); /// /// Adds a period at the end of a sentence if the sentence ends in a letter. /// public static readonly CVarDef ChatPunctuation = - CVarDef.Create("ic.punctuation", false, CVar.SERVER); + CVarDef.Create("ic.punctuation", true, CVar.SERVER); /// /// Enables automatically forcing IC name rules. Uppercases the first letter of the first and last words of the name @@ -1553,7 +1553,7 @@ public static readonly CVarDef /// Time that players have to wait before rules can be accepted. /// public static readonly CVarDef RulesWaitTime = - CVarDef.Create("rules.time", 45f, CVar.SERVER | CVar.REPLICATED); + CVarDef.Create("rules.time", 60f, CVar.SERVER | CVar.REPLICATED); /// /// Don't show rules to localhost/loopback interface. @@ -1615,7 +1615,7 @@ public static readonly CVarDef /// The time you must spend reading the rules, before the "Request" button is enabled /// public static readonly CVarDef GhostRoleTime = - CVarDef.Create("ghost.role_time", 3f, CVar.REPLICATED); + CVarDef.Create("ghost.role_time", 8f, CVar.REPLICATED); /* * Fire alarm diff --git a/Resources/ConfigPresets/DeltaV/apoapsis.toml b/Resources/ConfigPresets/DeltaV/apoapsis.toml new file mode 100644 index 00000000000..e69de29bb2d diff --git a/Resources/ConfigPresets/DeltaV/deltav.toml b/Resources/ConfigPresets/DeltaV/deltav.toml new file mode 100644 index 00000000000..e9bb195e6f3 --- /dev/null +++ b/Resources/ConfigPresets/DeltaV/deltav.toml @@ -0,0 +1,36 @@ +[game] +desc = "Featuring loads of unique content and psionics." +lobbyenabled = true + +[infolinks] +discord = "https://discord.gg/deltav" +github = "https://github.com/DeltaV-Station/Delta-v" +website = "https://www.delta-v.org/" +wiki = "https://wiki.delta-v.org/view/Main_Page" +patreon = "https://www.patreon.com/Delta_v" +bug_report = "https://github.com/DeltaV-Station/Delta-v/issues/new/choose +forum = "https://forum.delta-v.org/" + +[net] +max_connections = 1024 + +[vote] +restart_required_ratio = 0.7 + +[netres] +limit = 10.0 +tickrate = 30 + +[admin] +see_own_notes = true +deadmin_on_join = true + +[events] +ramping_average_end_time = 180.0 +ramping_average_chaos = 4.5 + +[atmos] +monstermos_rip_tiles = false + +[server] +id = "deltav" \ No newline at end of file diff --git a/Resources/ConfigPresets/DeltaV/periapsis.toml b/Resources/ConfigPresets/DeltaV/periapsis.toml new file mode 100644 index 00000000000..f5a29872847 --- /dev/null +++ b/Resources/ConfigPresets/DeltaV/periapsis.toml @@ -0,0 +1,19 @@ +[game] +hostname = "[EN][MRP] Delta-v (Ψ) | Periapsis" +soft_max_players = 100 +max_players = 120 + +[server] +rules_file = "Rules.txt" +rules_header = "ui-rules-header" + +[whitelist] +enabled = true +reason = "whitelist-not-whitelisted" +min_players = 30 + +[ooc] +enable_during_round = true + +[hub] +tags = "lang:en-US,region:am_n_e,rp:med" \ No newline at end of file