Jump to content

Recommended Posts

Hello,

I'm not sure if you know the bug.

Man spawns a Metin stone and has a team hit the Metin Stone.
When your teammate is standing very close to the Metin Stone, the mobs lose focus and do not attack other players.

Ie you can stay dead for 1-2 minutes and destroy the Metin in peace without the monsters attacking you.

 

Can i fix this with C++?

20€ PayPal for this Fix

Bug Video

https://youtu.be/KrA9JTSa34E

Link to comment
https://metin2.dev/topic/20495-20%E2%82%AC-ppmob-dontt-atack/
Share on other sites

  • Replies 7
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Ok i checked the source and i was recalling pretty much everything but a dumb thing insted of 
 

if (fDist < fMinDist || pkVictim->IsDead())
	{
		pkVictim = pAttacker;
		fMinDist = fDist;
	}

Use this

 

if (fDist < fMinDist && !pAttacker->IsDead())
	{
		pkVictim = pAttacker;
		fMinDist = fDist;
	}

Tested and working. If you are willing to donate something i'll appreciate it, anyhow have a nice day!

Don't use any images from : imgur, turkmmop, freakgamers, inforge, hizliresim... Or your content will be deleted without notice...
Use : https://metin2.download/media/add/

Please use https://metin2.download/ when uploading files smaller than 100MB, otherwise the approval will take longer due to manual upload.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • 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.