on my server pja/hyperion its difference then pi
i want to make a npc teleport to multiple places and i want it to say more
rlly dont know how to do it
this is runescape guide example
Code:
case 2:
			if(c.stageT >= 10) {
				sendOption(c,
				"Yes, what else am I suppose to do here?",
				"", 
				"Nah, I stick around here doing nothing...");
				c.nextChat = 0;
				c.playerDialogue = 1;
			} else {
				sendNpcChat(c,
				"Hello there and welcome to HylianPk!",
				"This server is mainly PKing and PvM",
				"Explore The Server Around",
				"Just dont get urself into trouble",
			 	c.talkingNpc, "RuneScape Guide");
				c.nextChat = 3;
				c.getPA().tutorialIslandInterface(c, 0);
			}
			break;