jayrick213 Posted November 23, 2013 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 25 Reputation: 0 Joined: 01/10/12 Last Seen: August 15, 2024 Share Posted November 23, 2013 Hello how to disable /breakguild during woe.. or how to disable the command? thanks in advance.. Quote Link to comment Share on other sites More sharing options...
1 Digos Posted November 23, 2013 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 88 Reputation: 23 Joined: 01/30/12 Last Seen: February 19 Share Posted November 23, 2013 (edited) Edit the file src/map/guild.c In the below function int guild_break(struct map_session_data *sd,char *name) After nullpo_ret(sd); Add // Cannot break guild during Guild Wars! if(agit_flag || agit2_flag) { clif_displaymessage(sd->fd,"Guilds cannot be broken during Guild Wars!"); return 0; } Save the file and recompile your src (also restart your server). Add it in this function too int guild_broken(int guild_id,int flag) Below if(flag!=0 || g==NULL) return 0; Add // Cannot break guild during Guild Wars! if(agit_flag || agit2_flag) { clif_displaymessage(sd->fd,"Guilds cannot be broken during Guild Wars!"); return 0; } It should work now Edited November 23, 2013 by Emistry 1 Quote Link to comment Share on other sites More sharing options...
jayrick213 Posted November 23, 2013 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 25 Reputation: 0 Joined: 01/10/12 Last Seen: August 15, 2024 Author Share Posted November 23, 2013 nothing happend? how to disable /breakguild command? Quote Link to comment Share on other sites More sharing options...
jayrick213 Posted November 23, 2013 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 25 Reputation: 0 Joined: 01/10/12 Last Seen: August 15, 2024 Author Share Posted November 23, 2013 its working now thanks sir.. Quote Link to comment Share on other sites More sharing options...
Question
jayrick213
Hello how to disable /breakguild during woe.. or how to disable the command? thanks in advance..
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.