FallenOne Posted December 3, 2011 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 15 Reputation: 0 Joined: 11/23/11 Last Seen: February 29, 2012 Share Posted December 3, 2011 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? Quote Link to comment Share on other sites More sharing options...
0 JakeRed Posted December 3, 2011 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 19 Reputation: 16 Joined: 11/14/11 Last Seen: September 20, 2024 Share Posted December 3, 2011 (edited) 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 December 3, 2011 by JakeRed Quote Link to comment Share on other sites More sharing options...
0 FallenOne Posted December 5, 2011 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 15 Reputation: 0 Joined: 11/23/11 Last Seen: February 29, 2012 Author Share Posted December 5, 2011 Thanks! for replying. By the way, how come INT is the only one that has the apostrophes? Is that a typo? Quote Link to comment Share on other sites More sharing options...
Question
FallenOne
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.