Ok so please don`t criticise me for this but I just used my brain a bit and a bit of copy and paste from what was already in the source this is based from the TC conductress but it does actually work and gives you an option of what city to spawn to from TG. And to be quite honest I wish TQ would have actually done something like this! This is for CoEmuv2 source
}
case 600075: //TGBoxer
{
if (LinkBack == 0)
{
Text("Hello! Would you like to leave tg? And if so where would you like to spawn to", CSocket);
Link("TwinCity,", 1, CSocket);
Link("Ape City", 2, CSocket);
Link("Bird Island", 3, CSocket);
Link("Desert City", 4, CSocket);
Link("Phoenix Castle", 5, CSocket);
Link("No Thank you I want to stay.", 255, CSocket);
End(CSocket);
}
else if (LinkBack == 1) //Twin City
{
Teleport(1002, 429, 381, 0, CSocket);
}
else if (LinkBack == 2) //Ape City
{
Teleport(1020, 566, 562, 0, CSocket);
}
else if (LinkBack == 3)//Bird Island
{
Teleport(1015, 718, 577, 0, CSocket);
}
else if (LinkBack == 4)//Desert City
{
Teleport(1000, 495, 649, 0, CSocket);
}
else if (LinkBack == 5)//Phoenix Castle
{
Teleport(1011, 193, 266, 0, CSocket);
}
break;