i need to know how to make guild war work in CoEmu v2 i hope some can let me know how
case 10003: //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?", 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);
Gotta put the break; in there. I made the same mistake and thought i did somethign wrong with my Npc xDQuote:
this is code for GuildDirector i made it it's not complete i try it but when i try finish it like that wont work and make dc when i click on GuildDirector i hope some one can help me to finish it this is the error i get
Error 1 Control cannot fall through from one case label ('case 10003:') to another
HTML Code:case 10003: //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?", 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); } [COLOR="Red"]break;[/COLOR]