Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update default cvars #144

Merged
merged 3 commits into from
Oct 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions Content.Shared/CCVar/CCVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ public static readonly CVarDef<bool>
/// 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.
/// </summary>
public static readonly CVarDef<float> ArtifactRoundEndTimer = CVarDef.Create("game.artifact_round_end_timer", 0.5f, CVar.NOTIFY | CVar.REPLICATED);
public static readonly CVarDef<float> ArtifactRoundEndTimer = CVarDef.Create("game.artifact_round_end_timer", 0f, CVar.NOTIFY | CVar.REPLICATED);

/// <summary>
/// The time in seconds that the server should wait before restarting the round.
Expand Down Expand Up @@ -1143,7 +1143,7 @@ public static readonly CVarDef<bool>
/// See vote.enabled, but specific to preset votes
/// </summary>
public static readonly CVarDef<bool> VotePresetEnabled =
CVarDef.Create("vote.preset_enabled", true, CVar.SERVERONLY);
CVarDef.Create("vote.preset_enabled", false, CVar.SERVERONLY);

/// <summary>
/// See vote.enabled, but specific to map votes
Expand Down Expand Up @@ -1230,7 +1230,7 @@ public static readonly CVarDef<int>
/// Whether the arrivals shuttle is enabled.
/// </summary>
public static readonly CVarDef<bool> ArrivalsShuttles =
CVarDef.Create("shuttle.arrivals", true, CVar.SERVERONLY);
CVarDef.Create("shuttle.arrivals", false, CVar.SERVERONLY);

/// <summary>
/// The map to use for the arrivals station.
Expand Down Expand Up @@ -1270,7 +1270,7 @@ public static readonly CVarDef<int>
/// How long the emergency shuttle remains docked with the station, in seconds.
/// </summary>
public static readonly CVarDef<float> EmergencyShuttleDockTime =
CVarDef.Create("shuttle.emergency_dock_time", 180f, CVar.SERVERONLY);
CVarDef.Create("shuttle.emergency_dock_time", 240f, CVar.SERVERONLY);

/// <summary>
/// How long after the console is authorized for the shuttle to early launch.
Expand All @@ -1282,7 +1282,7 @@ public static readonly CVarDef<int>
/// The minimum time for the emergency shuttle to arrive at centcomm.
/// </summary>
public static readonly CVarDef<float> EmergencyShuttleMinTransitTime =
CVarDef.Create("shuttle.emergency_transit_time_min", 60f, CVar.SERVERONLY);
CVarDef.Create("shuttle.emergency_transit_time_min", 90f, CVar.SERVERONLY);

/// <summary>
/// The maximum time for the emergency shuttle to arrive at centcomm.
Expand All @@ -1307,14 +1307,14 @@ public static readonly CVarDef<int>
/// Time in minutes after round start to auto-call the shuttle. Set to zero to disable.
/// </summary>
public static readonly CVarDef<int> EmergencyShuttleAutoCallTime =
CVarDef.Create("shuttle.auto_call_time", 90, CVar.SERVERONLY);
CVarDef.Create("shuttle.auto_call_time", 120, CVar.SERVERONLY);

/// <summary>
/// Time in minutes after the round was extended (by recalling the shuttle) to call
/// the shuttle again.
/// </summary>
public static readonly CVarDef<int> EmergencyShuttleAutoCallExtensionTime =
CVarDef.Create("shuttle.auto_call_extension_time", 45, CVar.SERVERONLY);
CVarDef.Create("shuttle.auto_call_extension_time", 30, CVar.SERVERONLY);

/*
* Crew Manifests
Expand Down Expand Up @@ -1356,7 +1356,7 @@ public static readonly CVarDef<int>
/// Disabled: Cloning has full biomass cost and reclaimer can reclaim corpses with souls. (Playtested and balanced for MRP+).
/// </summary>
public static readonly CVarDef<bool> BiomassEasyMode =
CVarDef.Create("biomass.easy_mode", true, CVar.SERVERONLY);
CVarDef.Create("biomass.easy_mode", false, CVar.SERVERONLY);

/*
* Anomaly
Expand Down Expand Up @@ -1457,13 +1457,13 @@ public static readonly CVarDef<int>
/// Allows flavor text (character descriptions)
/// </summary>
public static readonly CVarDef<bool> FlavorText =
CVarDef.Create("ic.flavor_text", false, CVar.SERVER | CVar.REPLICATED);
CVarDef.Create("ic.flavor_text", true, CVar.SERVER | CVar.REPLICATED);

/// <summary>
/// Adds a period at the end of a sentence if the sentence ends in a letter.
/// </summary>
public static readonly CVarDef<bool> ChatPunctuation =
CVarDef.Create("ic.punctuation", false, CVar.SERVER);
CVarDef.Create("ic.punctuation", true, CVar.SERVER);

/// <summary>
/// Enables automatically forcing IC name rules. Uppercases the first letter of the first and last words of the name
Expand Down Expand Up @@ -1553,7 +1553,7 @@ public static readonly CVarDef<string>
/// Time that players have to wait before rules can be accepted.
/// </summary>
public static readonly CVarDef<float> RulesWaitTime =
CVarDef.Create("rules.time", 45f, CVar.SERVER | CVar.REPLICATED);
CVarDef.Create("rules.time", 60f, CVar.SERVER | CVar.REPLICATED);

/// <summary>
/// Don't show rules to localhost/loopback interface.
Expand Down Expand Up @@ -1615,7 +1615,7 @@ public static readonly CVarDef<string>
/// The time you must spend reading the rules, before the "Request" button is enabled
/// </summary>
public static readonly CVarDef<float> GhostRoleTime =
CVarDef.Create("ghost.role_time", 3f, CVar.REPLICATED);
CVarDef.Create("ghost.role_time", 8f, CVar.REPLICATED);

/*
* Fire alarm
Expand Down
Empty file.
36 changes: 36 additions & 0 deletions Resources/ConfigPresets/DeltaV/deltav.toml
Original file line number Diff line number Diff line change
@@ -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"
19 changes: 19 additions & 0 deletions Resources/ConfigPresets/DeltaV/periapsis.toml
Original file line number Diff line number Diff line change
@@ -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"
Loading