Jump to content

How To Serverside Anticheat Guide


Recommended Posts

  • 2 months later...
  • 1 month later...
Spoiler
On 1/22/2017 at 11:59 PM, Sayen said:

Anti Ghost mode its bugged.

When you are walking and you dying after 3 seconds you will get dc.

Looks like my gif.

 

26gswGbXAZCwh4fjW.gif

 

A solution would be to temporarry store x,y when character dies and added in this function if is changing.

I dont know where is the function when pc dies.This is just an idea

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

  • 2 weeks later...
  • Bronze
On 27.02.2017 at 14:22, Root said:
  Reveal hidden contents

 

A solution would be to temporarry store x,y when character dies and added in this function if is changing.

I dont know where is the function when pc dies.This is just an idea

Replace:

		if (ch->IsPC() && ch->IsDead()) {
			if (ch->GetDesc()) {
				LogManager::instance().HackLog("GHOSTMODE", ch);
				ch->GetDesc()->DelayedDisconnect(3);
			}
		}

with:

		if (ch->IsPC() && ch->IsDead()) {
			if (ch->GetDesc()) {
				LogManager::instance().HackLog("GHOSTMODE", ch);
				ch->Show(ch->GetMapIndex(), ch->GetX(), ch->GetY(), ch->GetZ());
				ch->Stop();
				return;
			}
		}

 

Link to comment
Share on other sites

  • 1 year later...
  • 6 months later...

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.