Add a config option to unlock all story CGs

This commit is contained in:
Melledy
2025-12-15 07:12:49 -08:00
parent f439b25f2a
commit ee5d759a98
5 changed files with 65 additions and 4 deletions
+6 -4
View File
@@ -109,6 +109,8 @@ public class Config {
public boolean skipIntro = false;
// Unlocks all instances (Monolith, Bounty Trials, etc) for players to enter without needing to do the previous levels.
public boolean unlockInstances = true;
// Unlocks all story CGs to use in the showcase
public boolean unlockAllStoryCGs = false;
// How long to wait (in seconds) after the last http request from a session before removing it from the server.
public int sessionTimeout = 300;
// The offset hour for when daily quests are refreshed in UTC. Example: "dailyResetHour = 4" means dailies will be refreshed at UTC+4 12:00 AM every day.
@@ -149,10 +151,10 @@ public class Config {
this.sender = "Server";
this.content = "Welcome to Nebula! Please take these items as a starter gift.";
this.attachments = List.of(
new ItemParam(86009, 1),
new ItemParam(86002, 1),
new ItemParam(1, 1_000_000),
new ItemParam(2, 30_000));
new ItemParam(86009, 1),
new ItemParam(86002, 1),
new ItemParam(1, 1_000_000),
new ItemParam(2, 30_000));
}
}