Jump to content
  • 0
Sign in to follow this  
Gforce

Monster rate

Question

Hello,

 

can someone tell me how to increase the monsters rate in all maps?  I would like to increase the rate of monsters x2

 

 

thanks

Share this post


Link to post
Share on other sites

5 answers to this question

Recommended Posts

  • 0

I think it doesn't since mobs that are summoned by an amount of only 1 don't get affected by this conf value:

 

src/map/npc.c, line 3517

	if (mobspawn.num > 1 && battle_config.mob_count_rate != 100) {		if ((mobspawn.num = mobspawn.num * battle_config.mob_count_rate / 100) < 1)			mobspawn.num = 1;	}

Share this post


Link to post
Share on other sites
  • 0

 

I think it doesn't since mobs that are summoned by an amount of only 1 don't get affected by this conf value:

 

src/map/npc.c, line 3517

	if (mobspawn.num > 1 && battle_config.mob_count_rate != 100) {		if ((mobspawn.num = mobspawn.num * battle_config.mob_count_rate / 100) < 1)			mobspawn.num = 1;	}

Thanks for finding the source. I tried and it really doesnt count the MVP. This trick is neat when want to change MOB RATE. Thanks!

Share this post


Link to post
Share on other sites
  • 0

 

 

I think it doesn't since mobs that are summoned by an amount of only 1 don't get affected by this conf value:

 

src/map/npc.c, line 3517

	if (mobspawn.num > 1 && battle_config.mob_count_rate != 100) {		if ((mobspawn.num = mobspawn.num * battle_config.mob_count_rate / 100) < 1)			mobspawn.num = 1;	}

Thanks for finding the source. I tried and it really doesnt count the MVP. This trick is neat when want to change MOB RATE. Thanks!

 

Strange enough, it happens for monsters that spawn on an amount of just ONE. It doesn't mind if it's a MvP (usually spawned in an unique amount), or mobs that spawn in a fixed cell (which have their dedicated monster spawn just for them, 1 single mobspawn). As it is now, it would count the MvP if you made 2 of them appear on the same map, by the same monster spawn top-level command.

 

Would like to know if this could be considered as an ancient bug, but have no means of knowing that.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

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