public void NextConversation(string ID)
        {
            entryTrans = myConversation.GetNext(ID);
            Dialogues  = entryTrans.conversationPages;

            StartConversation();
        }
        public void StartDialogue(TextAsset json, GameObject Triggerer, string name)
        {
            CrabFriend        = Triggerer;
            CrabNameText.text = name;


            myConversation = new ConversationParser().Parse(json.text);

            entryTrans = myConversation.EnterConversation();
            StartConversation();

            SwitchPanelStuff(true);
        }