Printing the Level in 2 modes:

Sen66 [2016-07-22 02:27:55]
Printing the Level in 2 modes:

Time, every xxxx secconds
Levelup, Only on levelup (and on start)
Filename
PokemonGo/RocketAPI/Console/Settings.cs
diff --git a/PokemonGo/RocketAPI/Console/Settings.cs b/PokemonGo/RocketAPI/Console/Settings.cs
index b27fbb9..c2b7bce 100644
--- a/PokemonGo/RocketAPI/Console/Settings.cs
+++ b/PokemonGo/RocketAPI/Console/Settings.cs
@@ -1,4 +1,4 @@
-#region
+#region

 using System.Configuration;
 using System.Globalization;
@@ -32,6 +32,10 @@ namespace PokemonGo.RocketAPI.Console

         // LEAVE EVERYTHING ALONE

+        public string LevelOutput => GetSetting() != string.Empty ? GetSetting() : "time";
+
+        public int LevelTimeInterval => GetSetting() != string.Empty ? System.Convert.ToInt16(GetSetting()) : 600;
+

         public string GoogleRefreshToken
         {
You may download the files in Public Git.