Jump to content

Fix Horse Skills


Hisoka

Recommended Posts

i dont know if this is posted

horse skills no damage (only for M1 no G and P)

open game /src/ char_skill.cpp

 

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

replaced by

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

like that

ce10cdd2052d9b3d31f764a46c2144ff.png

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
Share on other sites

  • Replies 2
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

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.