Jump to content

How can i talk to a NPC via Python?


Recommended Posts

Hey, how can i talk to a specific NPC?
 

I know about

vid = player.GetTargetVID()
net.SendOnClickPacket(vid)

but with this, the NPC has to be marked.

 

The problem is, the vid of this specific NPC always changes if i teleport away.

 

Is there a way, how i can scan the vid of a specific NPC nearby and automatic talk to it, if im in x range?

Edited by OnlyGood
Link to comment
Share on other sites

  • Honorable Member

CPythonCharacterManager has functions like CharacterInstanceBegin and CharacterInstanceEnd so you can iterate over the characters nearby like:

TPixelPosition myPos;
CPythonPlayer::instance().NEW_GetMainActorPosition(&myPos);

CPythonCharacterManager& chrMgr = CPythonCharacterManager::instance();
for (auto it = chrMgr.CharacterInstanceBegin(); it != chrMgr.CharacterInstanceEnd(); ++it)
{
	if (CInstanceBase* ch = *it)
	{
		TPixelPosition otherPos;
		ch->NEW_GetPixelPosition(&otherPos);
		if(GetPixelPositionDistance(myPos, otherPos) <= SOME DISTANCE && some other thing to identify your npc)
		{
			CPythonNetworkStream::Instance().SendOnClickPacket(ch->GetVirtualID());
		}
	}
}

 

Edited by Distraught
  • Love 1

WRnRW3H.gif

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.