Nero Posted February 22, 2012 Posted February 22, 2012 disable break guild during woe please help me Quote
Brian Posted February 22, 2012 Posted February 22, 2012 In /src/map/clif.c search for clif_parse_GuildBreak (line 12043). Change that whole function to this: /// Request to delete own guild (CZ_REQ_DISORGANIZE_GUILD). /// 015d <key>.40B /// key: /// now guild name; might have been (intended) email, since the /// field name and size is same as the one in CH_DELETE_CHAR. void clif_parse_GuildBreak(int fd, struct map_session_data *sd) { if( map[sd->bl.m].flag.guildlock ) { //Guild locked. clif_displaymessage(fd, msg_txt(228)); return; } if (agit_flag || agit2_flag) { clif_displaymessage(fd, "You can't break guild during WoE."); return; } guild_break(sd,(char*)RFIFOP(fd,2)); } Quote
Question
Nero
disable break guild during woe please help me
2 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.