Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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