Jump to content
  • 0
Kuya Jeo

Problem with Guild Leader Tax

Question

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);

post-5354-0-96687200-1450146697_thumb.png

Edited by Zhao Chow

Share this post


Link to post
Share on other sites

2 answers to this question

Recommended Posts

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.