Jump to content

Recommended Posts

Hi Devs,

 

Today i'm noticed a bug, the horse skill doesn't damage.

Skill level is not bigget than M1. (I have tried with simple 1)

I'm tried with a Military horse.

Not only i have this bug, we're talking about it in a hungarian forum and others have this bug too with 40k.

I'm only found this on source:

			if( !((GetMountVnum() >= 20209 && GetMountVnum() <= 20212)	||
				GetMountVnum() == 20215 || GetMountVnum() == 20218 || GetMountVnum() == 20225	)	)
					return false;

But it's only disable a few mount.

Skill proto is good i think, because with 34k game, horses skills was damaged.

 

Thanks in advance.

Edited by TheSLZ
Link to comment
Share on other sites

  • Replies 3
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

#Solved..

 

                if(GetMountVnum()) //I have added this if to char_skill.cpp
		{
			if( !((GetMountVnum() >= 20101 && GetMountVnum() <= 20205)))
				return true;
		}
		
		//¸¶żîĆ® Ĺ»°ÍÁß °í±Ţ¸»¸¸ ˝şĹł »çżë°ˇ´É
		if(GetMountVnum()) //And if you want to use these ids just delete this if and change 20205 to 20250 above..
		{
			if( !((GetMountVnum() >= 20209 && GetMountVnum() <= 20212)	||
				GetMountVnum() == 20215 || GetMountVnum() == 20218 || GetMountVnum() == 20225	)	)
					return false;
		}

 

Edited by TheSLZ
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.