aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn/Commands.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-06-03 09:16:44 -0400
committerMichael <[email protected]>2017-06-03 09:16:44 -0400
commitcc55af0c8b4d14053bfb46ec14c3e1887d375f7d (patch)
tree37231db5ce31a1e18b49ccb4d027f64393830820 /ShiftOS_TheReturn/Commands.cs
parent719f2e4170e0a42ca372ff142e5b9613177db1be (diff)
downloadshiftos_thereturn-cc55af0c8b4d14053bfb46ec14c3e1887d375f7d.tar.gz
shiftos_thereturn-cc55af0c8b4d14053bfb46ec14c3e1887d375f7d.tar.bz2
shiftos_thereturn-cc55af0c8b4d14053bfb46ec14c3e1887d375f7d.zip
story objectives system
Diffstat (limited to 'ShiftOS_TheReturn/Commands.cs')
-rw-r--r--ShiftOS_TheReturn/Commands.cs15
1 files changed, 12 insertions, 3 deletions
diff --git a/ShiftOS_TheReturn/Commands.cs b/ShiftOS_TheReturn/Commands.cs
index e379a50..72bccb1 100644
--- a/ShiftOS_TheReturn/Commands.cs
+++ b/ShiftOS_TheReturn/Commands.cs
@@ -533,11 +533,20 @@ namespace ShiftOS.Engine
Codepoints: {SaveSystem.CurrentSave.Codepoints}
Upgrades: {SaveSystem.CurrentSave.CountUpgrades()} installed,
- {Shiftorium.GetAvailable().Length} available";
+ {Shiftorium.GetAvailable().Length} available
+
+";
- if (Shiftorium.UpgradeInstalled("mud_control_centre"))
- status += Environment.NewLine + $"Reputation: {SaveSystem.CurrentSave.RawReputation} ({SaveSystem.CurrentSave.Reputation})";
Console.WriteLine(status);
+
+ if(Story.CurrentObjective != null)
+ {
+ Console.WriteLine("CURRENT OBJECTIVE: " + Story.CurrentObjective.Name);
+ Console.WriteLine("-------------------------------");
+ Console.WriteLine();
+ Console.WriteLine(Story.CurrentObjective.Description);
+ }
+
return true;
}
}