Jump to content
  • 0

I changed the clan member limit to 2, but when I use the @glvl command and evolve the clan's skills, this error appears, how to solve it?


Tdi123

Question

3 answers to this question

Recommended Posts

  • 0

  • Group:  Forum Moderator
  • Topic Count:  47
  • Topics Per Day:  0.01
  • Content Count:  937
  • Reputation:   124
  • Joined:  05/23/12
  • Last Seen:  

It's cause of the skill which increase the guild member size. If this passive skill get level up it increase the guild member size and it want to goes over the limit of 2. U need to change the skill (Guild Extension). The clan system is based on the older guild system. Have u changed the src?

On mmo.h

#define MAX_GUILD

 

Rynbef~

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  93
  • Topics Per Day:  0.03
  • Content Count:  195
  • Reputation:   3
  • Joined:  12/12/17
  • Last Seen:  

On 12/19/2024 at 1:44 PM, Rynbef said:

It's cause of the skill which increase the guild member size. If this passive skill get level up it increase the guild member size and it want to goes over the limit of 2. U need to change the skill (Guild Extension). The clan system is based on the older guild system. Have u changed the src?

On mmo.h

#define MAX_GUILD

 

Rynbef~

image.thumb.png.59ce7c5f0e520fa2b04d6355826ca5e7.png

Yes, I changed, I've tried other solutions, but I still haven't been able to solve the problem.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  93
  • Topics Per Day:  0.03
  • Content Count:  195
  • Reputation:   3
  • Joined:  12/12/17
  • Last Seen:  

On 12/18/2024 at 4:20 PM, Tdi123 said:

image.png.7e9694f14d77f898c55850a4087176cd.png

Resolved:

//// CHAR / int_guild.cpp

mmo.hpp
#define MAX_GUILD 25    ///Increased max guild members +6 per 1 extension levels [Lupus]

int_guild.cpp

// Set the max number of members, Guild Extention skill - currently adds 6 to max per skill lv.
    g->max_member = MAX_GUILD;
    if(g->max_member > MAX_GUILD)

    // Initialize guild property
    g->max_member=25;
    g->average_lv=master->lv;
    g->connect_member=1;

Link to comment
Share on other sites

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.   Paste as plain text instead

  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.

×
×
  • Create New...