case 10015: //GuildDirector
{
if (LinkBack == 0)
{
// Text("Greetings! I am the guild director in charge of administrating and manamimg guilds. What business do you have With me?"));
Text("Greetings! I am the guild director in charge of administrating and manamimg guilds. What business do you have With me?", CSocket);
Link("Creat a guild", 1, CSocket);
Link("Pass my leadership", 2, CSocket);
Link("Assign Deputy Guild Leader", 3, CSocket);
Link("Remove sb. from office", 4, CSocket);
Link("Ally With guild", 5, CSocket);
Link("More", 6, CSocket);
Link("Un-ally with guild", 7, CSocket);
Link("Hostile to a guild", 8, CSocket);
Link("Reconcile with guild", 9, CSocket);
Link("Disband my guild", 10, CSocket);
End(CSocket);
}
break;
You missed out break;
Only reason I figured this out was looking at the other npc chat and comparing them to each other then realised that break; seemed to be missing so I added it and the error went after f6 hope this has helped