I noticed this kind of error, whenever i put 50% tax in Guild Leader im getting errors and cannot put tax in guild leader but in other guild position there is no error popping up in my putty
EDIT : even guild Position Title
/*==================================================== * Notification of member has changed his guild title *---------------------------------------------------*/int guild_position_changed(int guild_id,int idx,struct guild_position *p){ struct guild *g=guild->search(guild_id); int i; nullpo_ret(p); Assert_ret(idx > 0 && idx < MAX_GUILD); if(g==NULL) return 0; memcpy(&g->position[idx],p,sizeof(struct guild_position)); clif->guild_positionchanged(g,idx); // Update char name in client [LuzZza] for(i=0;i<g->max_member;i++) if(g->member[i].position == idx && g->member[i].sd != NULL) clif->charnameupdate(g->member[i].sd); return 0;}
getting error in this line Assert_ret(idx > 0 && idx < MAX_GUILD);
I noticed this kind of error, whenever i put 50% tax in Guild Leader im getting errors and cannot put tax in guild leader but in other guild position there is no error popping up in my putty
EDIT : even guild Position Title
getting error in this line Assert_ret(idx > 0 && idx < MAX_GUILD);
Edited by Zhao Chow
Share this post
Link to post
Share on other sites