Jump to content

Recommended Posts

  • Forum Moderator
On 2/18/2020 at 8:46 AM, tester12 said:

#fixed myself

Rules

§2 Topics

 

(2.5) Questions & Answers specific rules

  • Don't modify your thread (or reply to it) to mark it solved, and not explain the solution to the issue.
  • Please use our tag system and vote good/bad answers so everyone can clearly see what matters!

 

Please provide your solution or otherwise you will receive an infraction point.

Thank you.

 

 

Best regards
Raylee

  • Love 1
Link to comment
Share on other sites

  • 2 weeks later...

In PythonPlayerInput.cpp void CPythonPlayer::__OnClickActor(CInstanceBase& rkInstMain, DWORD dwPickedActorID, bool isAuto) you must replace

	if (rkInstVictim.IsNPC())
	{
		__SendClickActorPacket(rkInstVictim);
	}

with

 

	if (rkInstVictim.IsNPC())
	{
#ifdef ENABLE_HIDE_SHOPS
		if (rkInstVictim.GetRace() == 30000 && CPythonSystem::Instance().IsHideShops())
			return;
#endif
		__SendClickActorPacket(rkInstVictim);
	}

 

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.