Q> How to reduce damage of all the skills of gunslinger?

mybitch

New member
Messages
291
Points
0
Location
Prontera
I'm using a very old yet stable hercules SVN that doesn't have the latest update. What I just want to do is to reduce the damage of all gunslinger skills to 50%

Is it possible? If yes, where can I change it? Do I just need to change it in skill_db.txt? or?

TIA!

 
Maybe...

battle.c

find

if(!flag.rh && wd.damage) wd.damage=0; if(!flag.lh && wd.damage2) wd.damage2=0;

add below.

Code:
if(skill_id && dstsd->class_&MAPID_BASEMASK) == MAPID_GUNSLINGER) {	wd.damage = wd.damage/2;	wd.damage2 = wd.damage2/2;}
 
Last edited by a moderator:
i it's much easier to use the map zone for this

 
i it's much easier to use the map zone for this
Note what he said: I'm using a very old yet stable hercules SVN that doesn't have the latest update.

maybe he doesn't have map_zone_db.conf

I'm using a very old yet stable hercules SVN that doesn't have the latest update. What I just want to do is to reduce the damage of all gunslinger skills to 50%

Is it possible? If yes, where can I change it? Do I just need to change it in skill_db.txt? or?

TIA!
try to use map_zone_db.conf if it is available on your db/re or db/pre-re

 
i it's much easier to use the map zone for this
Note what he said: I'm using a very old yet stable hercules SVN that doesn't have the latest update.

maybe he doesn't have map_zone_db.conf

>I'm using a very old yet stable hercules SVN that doesn't have the latest update. What I just want to do is to reduce the damage of all gunslinger skills to 50%

Is it possible? If yes, where can I change it? Do I just need to change it in skill_db.txt? or?

TIA!
try to use map_zone_db.conf if it is available on your db/re or db/pre-re
I will try. I'll update you. Thanks! Gracias!

 
Back
Top