public static void DebugThisFrame()
 {
     if (Main.configSettings.Debug_Mode)
     {
         Helpers.DrawText(new GTA.Math.Vector2(0.015f, 0.01f), "Clock: " + CurrentDate.ToString());
         Helpers.DrawText(new GTA.Math.Vector2(0.015f, 0.03f), "Mode : " + clockMode.ToString());
         if (clockMode == ClockMode.Virtual)
         {
             Helpers.DrawText(new GTA.Math.Vector2(0.015f, 0.05f), "Timerate : " + timerate.ToString());
         }
     }
 }