Jump to content
  • 0

How to Boost Mob Stats/Attack/Defense Globally?


FallenOne

Question


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  15
  • Reputation:   0
  • Joined:  11/23/11
  • Last Seen:  

Hi! How do I boost the stats of the mobs globally to increase their attack/defense?

For example,

Bomb Poring: Str 1, Agi 28, Vit 28, Int 0, Dex 33, Luk 50

Boosted Mob Stats from 1x to 2x

Bomb Poring: Str 2, Agi 56, Vit 56, Int 0, Dex 66, Luk 100

Is there another way to increase their attack/defense besides increasing HP or manually editing their stats in mob_db.txt?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  19
  • Reputation:   16
  • Joined:  11/14/11
  • Last Seen:  

Well if you better use the mob_db from your Mysql tables you'll be able to do that easily just by running a simple query.

For example if you want to increase Str,Agi,Vit,Int,Dex and Luk by 2x you would simply need to run the following query into your database and it will increase the mob stats.

UPDATE mob_db SET mob_db.STR = mob_db.STR * 2,mob_db.AGI = mob_db.AGI * 2,mob_db.VIT = mob_db.VIT * 2,mob_db.INT = mob_db.`INT` * 2,mob_db.DEX = mob_db.DEX * 2,mob_db.LUK = mob_db.LUK * 2

Using .txt files is very limited, since is very static, and is hard to manage the data efficiently.

But if you still want to stay using mob_db.txt you'll have to change manually each stat in each mob.

Regards,

Edited by JakeRed
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  15
  • Reputation:   0
  • Joined:  11/23/11
  • Last Seen:  

Thanks! for replying.

By the way, how come INT is the only one that has the apostrophes? Is that a typo?

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...