public static void ResponceList(string message)
        {
            try
            {
                if (message.Contains("change time display "))
                {
                    string xy       = message.Replace("change time display ", "");
                    string xystring = xy.Replace("x: ", "").Replace(" y: ", ","); //x: " + x + " y: " + y
                    int    x        = int.Parse(xystring.Substring(0, xystring.IndexOf(",")));
                    int    y        = int.Parse(xystring.Substring(xystring.IndexOf(',') + 1, (xystring.LastIndexOf(xystring.Last())) - (xystring.IndexOf(',') + 1)));
                    displaysystem.change_time_display_location(x, y);
                }

                if (message.Contains("time "))
                {
                    char[] timestr = message.Remove(0, 5).ToArray();
                    int[]  time    = new int[12];
                    for (int i = 0; i < 12; i++)
                    {
                        time[i] = int.Parse(timestr[i] + "");
                    }
                    DeloreanManagement.setPresentTime(time[0], time[1], time[2], time[3], time[4], time[5], time[6], time[7]);
                    Function.Call(Hash.SET_CLOCK_TIME, ((time[8] * 10) + time[9]), ((time[10] * 10) + time[11]), 0);
                }

                if (message.Contains("anim:"))
                {
                    string anim = message.Replace("anim:", "");
                    TTTF.root   = anim.Substring(0, anim.IndexOf(','));
                    TTTF.effect = anim.Substring(anim.IndexOf(',') + 1, (anim.LastIndexOf(anim.Last())) - (anim.IndexOf(',') + 1));
                }
            }
            catch
            {
            }
        }