Jump to content

Block attack on map


Go to solution Solved by Mali,

Recommended Posts

I did this but after i teleported another map I still can't attack
https://metin2.dev/board/topic/14072-skills-pvp-block-on-specific-maps/

 

Spoiler

//@svn/Source/Client/UserInterface/PythonPlayerEventHandler.cpp
//1.) Search:
void CPythonPlayerEventHandler::OnHit(UINT uSkill, CActorInstance& rkActorVictim, BOOL isSendPacket)
{
//2.) Add bellow:
	static std::string uCurrentMap = CPythonBackground::Instance().GetWarpMapName();
	static std::string uArrayListOfMaps[] = {
		"metin2_map_a1",
		"metin2_map_b1",	/* loaded from atlasinfo.txt */
		"metin2_map_c1"
	}; 		
	
	for (int i=0;i<_countof(uArrayListOfMaps);i++)
	{
		if (rkActorVictim.IsPC() && (!uCurrentMap.compare(uArrayListOfMaps[i])))
		{
			TraceError("CPythonPlayerEventHandler::OnHit on map %s was blocked because players is protected.", uArrayListOfMaps[i].c_str());
			return;
		}
	}

//3.) And add on first line or where you want:
#include "PythonBackground.h"

 


What is the problem?

Edited by nyugione
  • Metin2 Dev 1
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.