Make Option Dialogue Open a Second Option Dialogue?
Hi, I am using a deltascape source and I am wondering how I can make an option dialogue open a second option dialogue by clicking one of the options.
Also, currently, I have 3 options in the option dialogue. I need to have 4 options so that the last option can be named 'More...' and when someone clicks on that, it would send them to the second option dialogue.
This is my current code:
Code:
c.teleEffect = 16;
c.sendQuest("Training?", 2470);
c.sendQuest("Rock Crabs", 2471);
c.sendQuest("Dagannoth", 2472);
c.sendQuest("Crandor", 2473);
c.sendFrame164(2469);
break;
case 51013: // training teleport
c.teleEffect = 16;
c.sendQuest("Training?", 2470);
c.sendQuest("Rock Crabs", 2471);
c.sendQuest("Dagannoth", 2472);
c.sendQuest("Crandor", 2473);
c.sendFrame164(2469);
break;
What I would like is something like:
Code:
c.teleEffect = 16;
c.sendQuest("Training?", 2470);
c.sendQuest("Rock Crabs", 2471);
c.sendQuest("Dagannoth", 2472);
c.sendQuest("Crandor", 2473);
c.sendQuest("More...", 2474);
c.sendFrame164(2469);
break;
case 51013: // training teleport
c.teleEffect = 16;
c.sendQuest("Training?", 2470);
c.sendQuest("Rock Crabs", 2471);
c.sendQuest("Dagannoth", 2472);
c.sendQuest("Crandor", 2473);
c.sendQuest("More...", 2474);
c.sendFrame164(2469);
break;
Once someone clicks on the "More..." option, it would open a second option dialogue.
Please help!
(P.S. I wrote a help thread about this a while ago, but it was too confusing for people to understand :D)
Shadow.