• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

L2J How to change mobs damage all at once ?

Status
Not open for further replies.
Initiate Mage
Joined
Sep 18, 2006
Messages
4
Reaction score
0
Hello all!

Is it possible to reduce monsters damage all at once (possible some config option?) ???

Increase mobs HP ??

Thank you!
 
Newbie Spellweaver
Joined
Nov 19, 2006
Messages
95
Reaction score
0
yes in altsettings there will be osmething like "ALT MONSTER DMG" i think, then a multiplier that is at 1.0 you can raise and lower it and see how it goes.
 
Initiate Mage
Joined
Sep 18, 2006
Messages
4
Reaction score
0
I didnt found enething in current l2j configuration files. Ive found something like in old .propeties files

# Damage Multipliers for NPCs (mobs).
AltPDamageNpc = 0.1
AltMDamageNpc = 0.1

but looks like it doesnt work...
anyone know why? possible it doesnt supported any more :sad_1:
 
Junior Spellweaver
Joined
Jan 14, 2006
Messages
191
Reaction score
0
Use SQL command like:

Code:
UPDATE npc SET hp*2 WHERE type=L2Npc;

However, this command won't work if you just copy/paste. This is only an example because currently I haven't possibility to view the exact database. But I think you will get the point with this.
 
Initiate Mage
Joined
Sep 18, 2006
Messages
4
Reaction score
0
thx for idea! works fine

UPDATE npc SET hp=hp*2 WHERE type='L2Monster'
 
Status
Not open for further replies.