Jump to content

Fix SKILL_MUYEONG - Damage while you Riding


HITRON

Recommended Posts

Hey,

 

I want to share a fix about the SKILL_MUYEONG, Official fixed this before some months ago, but nobody care in such details so we still have the same issue in our servers.

 

 

Spoiler

char_skill.cpp

 

// Search for:


int CHARACTER::ComputeSkill(DWORD dwVnum, LPCHARACTER pkVictim, BYTE bSkillLevel)

{

    [...]

}

 

// Inside: CHARACTER::ComputeSkill - Search for:


    if (bCanUseHorseSkill && pkSk->dwType != SKILL_TYPE_HORSE)

        return BATTLE_NONE;

 

// Replace with:


#ifdef __SKILL_MUYEONG_DAMAGE_WHILE_RIDING__

    if (bCanUseHorseSkill && pkSk->dwType != SKILL_TYPE_HORSE && pkSk->dwVnum != SKILL_MUYEONG)

#else

    if (bCanUseHorseSkill && pkSk->dwType != SKILL_TYPE_HORSE)

#endif

        return BATTLE_NONE;

 

service.h or CommonDefines.h

 

// Define:


#define __SKILL_MUYEONG_DAMAGE_WHILE_RIDING__

 

 

 

The SKILL_MUYEONG is still attacking while you riding but doesn't make any damage.

 

Preview with Fixed SKILL_MUYEONG while you riding:

https://metin2.download/picture/r3F9504x09DVmF8K988YXgTtGTP6KMUj/.gif

Edited by Metin2 Dev
Core X - External 2 Internal
  • Metin2 Dev 9
  • Good 1
  • Love 45
Link to comment
Share on other sites

  • 1 year later...
  • 1 month later...
  • Management
Link to comment
Share on other sites

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.