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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

×
×
  • Create New...

Important Information

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