Jump to content

[20€ PP]Mob Dont't Atack


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
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!

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.