// player got message from orb
npc.add(ConversationStates.QUESTION_1,
ConversationPhrases.YES_MESSAGES, null,
ConversationStates.ATTENDING,
"You're a natural! Now that you have learned to use that orb, it will teleport you to a place of magical significance. So don't use it unless you will be able to find your way back!",
new MultipleActions(new IncreaseXPAction(50), new SetQuestAction(QUEST_SLOT, "done")));
// player didn't get message, try again
npc.add(ConversationStates.QUESTION_1, ConversationPhrases.NO_MESSAGES,
null, ConversationStates.QUESTION_1,
"Well, you would need to stand next to it. Move closer, do you get a message now?", null);