How To Increase a Skill Damage

GM Clerk

New member
Messages
37
Points
0
Age
40
Location
United Arab Emirates
Github
no github now
Emulator
If i wanna Increase LandMine Trap Skill damage 

where to ? 

and what i should do in my CentOS to apply the change ?

 
GiywEBm.jpg


i want to increase this " Landmine Trip from 7690 to 15380 ??

i tryed the map_zone_data but the skill still the same

 
To change a skill you either have to modify it in skill_db.txt (db/re/skill_db.txt), but if you want to change his dmg, i think you need to modify skill.c (src/map/skill.c). But be careful with it and only apply change that you're sure won't fuck up your entire server. Also, you need to recompile everytime you change skill.c 

 
Try the mapflag adjust_skill_damage. Put it in your map_zone_db.conf on the areas you want it active.

Or you can adjust your source like @@Crousti suggested.

Code:
prontera    mapflag    adjust_skill_damage    HT_LANDMINE 200
 
if i want to increase the skill damage in all maps " not only in Prontera " what i should do ? 

i tryed modify the Battle.c  but the same problem 

thanks for all reply's <3 

 
Go in your map_zone_db.conf and put the mapflag under the mapflag part in whatever area you want it. e.g.

Code:
{
    /* PvP zone is applied to all maps with a pvp mapflag */
    name: "PvP" /* changing this name requires MAP_ZONE_PVP_NAME to also be changed in src/map/map.h file */
 
    disabled_skills: {
        BS_GREED: "PLAYER"
        CG_HERMODE: "PLAYER"
    }
 
    disabled_items: {
        Greed_Scroll: true
    }
 
    mapflags: (
        "nocashshop",
        "adjust_skill_damage    HT_LANDMINE 200",
    )
 
},
 
Back
Top