Python - Metin2 Open a dialog with npc by VID

03/24/2020 01:13 fijiboomer#1
Hello, I would like to start the conversation with NPC whose is next to my by the VID

Currently I have this:
Code:
import player, event, net
vid = player.GetTargetVID()
net.SendOnClickPacket(vid)
event.SelectAnswer(1,0)
event.SelectAnswer(1,0)
But to use this script I have to right-click the npc. How to call its functions via VID?

Thank you for all help!
03/25/2020 18:44 Hector97PL#2
import player, event, net
vid = 8806 <== NPC VID
net.SendOnClickPacket(vid)
event.SelectAnswer(1,0)
event.SelectAnswer(1,0)
03/29/2020 23:14 False#3
#moved