No sir lewis, that would be more complicated since he wants to use the same case for multiple teleports.
Code:
public void teleport()
{
interfaceEffect = 1;
sendFrame126("Option 1", 2494);
sendFrame126("Option 2", 2495);
sendFrame126("Option 3", 2496);
sendFrame126("Option 4", 2497);
sendFrame126("Option 5", 2498);
sendQuestSomething(8143);
sendFrame164(2492);
flushOutStream();
}
For the first teleports you want.
The when you want more you change the interfaceeffect number
so you click the text, you get the case and do like
Code:
public void teleport2()
{
interfaceEffect = 2;
sendFrame126("Option 1", 2494);
sendFrame126("Option 2", 2495);
sendFrame126("Option 3", 2496);
sendFrame126("Option 4", 2497);
sendFrame126("Option 5", 2498);
sendQuestSomething(8143);
sendFrame164(2492);
flushOutStream();
}
And in the cases to teleport you do
Code:
if (c.interfaceEffect == 1) {
do the tele shit here
}