Register for your free account! | Forgot your password?

You last visited: Today at 22:31

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[CoEmu] Guild War

Discussion on [CoEmu] Guild War within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jul 2007
Posts: 73
Received Thanks: 1
Talking [CoEmu] Guild War

i need to know how to make guild war work in CoEmu v2 i hope some can let me know how
0105653642 is offline  
Old 07/01/2009, 12:10   #2

 
Kiyono's Avatar
 
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 925
Code the guilds first.
Kiyono is offline  
Old 07/01/2009, 12:39   #3
 
elite*gold: 0
Join Date: Jul 2007
Posts: 73
Received Thanks: 1
Quote:
Originally Posted by Kiyono View Post
Code the guilds first.
i don't know how to code it i just need the begin for the road and i will walk on it i hope u can guide me
0105653642 is offline  
Old 07/01/2009, 12:49   #4

 
Kiyono's Avatar
 
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 925
Then take the easy way and C&P LOTF's guild system =/
Kiyono is offline  
Old 07/01/2009, 16:20   #5
 
elite*gold: 0
Join Date: Jul 2007
Posts: 73
Received Thanks: 1
Quote:
Originally Posted by Kiyono View Post
Then take the easy way and C&P LOTF's guild system =/
can i use search to find that or what
0105653642 is offline  
Old 07/01/2009, 16:47   #6
 
~*NewDuuDe*~'s Avatar
 
elite*gold: 111
Join Date: Feb 2008
Posts: 2,161
Received Thanks: 646
Quote:
Originally Posted by 0105653642 View Post
can i use search to find that or what
Obviously you'll need to download a LOTF source.
~*NewDuuDe*~ is offline  
Old 07/01/2009, 17:46   #7
 
elite*gold: 0
Join Date: Jul 2007
Posts: 73
Received Thanks: 1
Quote:
Originally Posted by BERGHUIS1 View Post
Obviously you'll need to download a LOTF source.
when i download it can i take guild director code and develop it to work with CoEmu
0105653642 is offline  
Old 07/01/2009, 18:44   #8
 
elite*gold: 0
Join Date: Jun 2009
Posts: 140
Received Thanks: 12
Quote:
Originally Posted by 0105653642 View Post
when i download it can i take guild director code and develop it to work with CoEmu
No. Maybe as a refrence to code guilds in CoEmu
JustChillin is offline  
Old 07/01/2009, 18:54   #9
 
elite*gold: 0
Join Date: Jul 2007
Posts: 73
Received Thanks: 1
Quote:
Originally Posted by JustChillin View Post
No. Maybe as a refrence to code guilds in CoEmu
ok i will try it thanx all for ur helping
0105653642 is offline  
Old 07/01/2009, 21:08   #10
 
elite*gold: 0
Join Date: Jul 2007
Posts: 73
Received Thanks: 1
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);
0105653642 is offline  
Old 07/02/2009, 03:37   #11
 
WHITELIONX's Avatar
 
elite*gold: 0
Join Date: Apr 2006
Posts: 534
Received Thanks: 66
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
WHITELIONX is offline  
Old 07/02/2009, 04:13   #12
 
elite*gold: 0
Join Date: Jun 2009
Posts: 140
Received Thanks: 12
Quote:
Originally Posted by 0105653642 View Post
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]
Gotta put the break; in there. I made the same mistake and thought i did somethign wrong with my Npc xD
JustChillin is offline  
Old 07/02/2009, 22:47   #13
 
elite*gold: 0
Join Date: Jul 2007
Posts: 73
Received Thanks: 1
guyz that is not the full code i don't know how to make the place to put guild name and i still don't know how to make merge with GuildName+GuildLeader i'm still working on it who thinke he can help pls pm me
0105653642 is offline  
Reply


Similar Threads Similar Threads
Guild deletion code error coemu...
03/03/2010 - CO2 Private Server - 0 Replies
this codes written perfectly but i keep getting an error message... public static void DeleteGuild(int ID) { if (Nano.Guilds.ContainsKey(ID)) { Struct.GuildInfo GuToDel = Nano.Guilds; foreach (int ChId in GuToDel.GMems) { try {



All times are GMT +1. The time now is 22:34.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.