Jump to content

Do you have this bug?


Go to solution Solved by Johnny69,

Recommended Posts

  • Premium

Try to do:

 

-Use: Race Ninja -> Skill Archer 

-Do full_set so you can have also horse skills

-Call a mount or horse

-Remove your arrows

-Try to use HORSE_SKILLS

Do the skills works also without arrows? Look in your syserr of the core if yes.

Try to see also if you note also other problems about ninja archer + horse_skills.

 

Link to comment
Share on other sites

  • Solution

I actualy have this "bug" but the damage is 0 without arrows.

Is just one horse skill that use arrows (140) and you can use client check for arrows to fix it.

// PythonPlayerSkill.cpp
// Search:
	if (!pSkillData->IsHorseSkill())
	{
		if (__CheckShortArrow(rkSkillInst, *pSkillData))
			return false;

		if (pSkillData->IsNeedBow())
		{
			if (!__HasEnoughArrow())
				return false;
		}
	}
// Replace with:
	if (!pSkillData->IsHorseSkill() || pSkillData->dwSkillIndex == 140)
	{
		if (__CheckShortArrow(rkSkillInst, *pSkillData))
			return false;

		if (pSkillData->IsNeedBow())
		{
			if (!__HasEnoughArrow())
				return false;
		}
	}

 

 

  • Love 1
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

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.