Increase Mobs HP

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
Chiripa
Posts: 10
Joined: Sun May 25, 2008 6:24 pm

Increase Mobs HP

Post by Chiripa »

If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number: 3829
L2JDP Revision Number: 6912

Hi,

I made my test server and has been running for a while now.
The only thing i need to do now and i dont know how is increase the mobs hp, not all but almost all.
I see the players killing in aden's cementery mobs lv 52+ with a top D weapon in 3/4 hits (for spellsinger for example).
Mobs lv 71+ are ok with their hp but i see that mobs below these levels are just too weak (Don't know if I should change their defense stats or increse their health, i think the hp increase is the best solution).

My question is. Is there a way to increase the hp of all 60- or 70- mobs and below withouth having to do it manually mob per mob on the db?
Like to increase their health x2 or x3.

Thank you very much
User avatar
JIV
L2j Veteran
L2j Veteran
Posts: 1882
Joined: Sun Jan 06, 2008 8:17 pm
Location: Slovakia
Contact:

Re: Increase Mobs HP

Post by JIV »

in db - table npc, column hp.
Chiripa
Posts: 10
Joined: Sun May 25, 2008 6:24 pm

Re: Increase Mobs HP

Post by Chiripa »

Can I make like a sql file that tells the db to increase from x line to z line the column value of hp to the double?
User avatar
Charus
L2j Veteran
L2j Veteran
Posts: 410
Joined: Thu Feb 16, 2006 1:24 pm

Re: Increase Mobs HP

Post by Charus »

UPDATE `npc` SET `hp` = 'hp * 2' WHERE `type` = 'L2Monster';

I think this will give duble hp to mobs.
Chiripa
Posts: 10
Joined: Sun May 25, 2008 6:24 pm

Re: Increase Mobs HP

Post by Chiripa »

Yes, but i need only lv 60 and below mobs to increase the hp, Is there a way that i tell the sql just to update these ones?
User avatar
janiii
L2j Veteran
L2j Veteran
Posts: 4269
Joined: Wed May 28, 2008 3:15 pm
Location: Slovakia

Re: Increase Mobs HP

Post by janiii »

Code: Select all

UPDATE `npc` SET `hp` = `hp` * 2 WHERE `type` = 'L2Monster' AND `level` <= 60;
DO NOT EVEN TRY TO MESS WITH ME!
forum flOOder dancing dEVILoper
I don't give private support - PM will be ignored!
Chiripa
Posts: 10
Joined: Sun May 25, 2008 6:24 pm

Re: Increase Mobs HP

Post by Chiripa »

Thank you very much! It worked perfectly ;)
Post Reply