Jump to content
  • 0

Asura Reduce -> Problem


Question

Posted

Hello guys,
I have problem with Asura Strike reduce DMG on 50%.

I change:
 

// db/skill_damage_db.txt
MO_EXTREMITYFIST,BL_PC,0,0,0,-66

but in the import/import-tmpl is there too.

In the src/config/core.hpp
isnt
 

/// Uncomment to enable skills damage adjustments
/// By enabling this, db/skill_damage.txt and the skill_damage mapflag will adjust the
/// damage rate of specified skills.
//#define ADJUST_SKILL_DAMAGE


I need to know where to change so that the asura is 50% to the bosses.
THX ?

 

2 answers to this question

Recommended Posts

  • 0
Posted

Structure of Database:
// SkillName,Caster,Map,Damage against Players{,Damage against Mobs{,Damage against Bosses{,Damage against Other}}}

Map:
//         1    - Normal (the maps that aren't classified as these maps below)
//         2    - PVP
//         4    - GVG
//         8    - Battlegrounds
//         16   - 'skill_damage' mapflag
// Restricted zones - they're configured by 'restricted <number>' mapflag
//         32   - Zone 1
//         64   - Zone 2
//         128  - Zone 3
//         256  - Zone 4
//         512  - Zone 5
//         1024 - Zone 6
//         2048 - Zone 7

you db: 

MO_EXTREMITYFIST,BL_PC,0,0,0,-66

Corrected:
 

 MO_EXTREMITYFIST,BL_PC,1,-5,-10,-50,-15


MO_EXTREMITYFIST = skill
BL_PC/BL_MOB = TARGET
1 = normal maps
-5 = player damage
-10 = mobs damage
-50 = mvp and boss damage
- 15 = others..


if it helped you, leave me a Like!

  • 0
Posted

The problem was in the settings:

 

MO_EXTREMITYFIST,BL_PC,0,0,0,-66


Problem first number ,0
1 = normal maps

Right solution

 

MO_EXTREMITYFIST,BL_PC,1,0,0,-66


Problem solved.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...