Hi,
Does the included example scene work correctly?
Are there any errors or warnings in the Console window? (You may need to untick the Quest Machine GameObject's Debug checkbox to hide those log messages for now.)
Make sure you've assigned the GreetingQuestGiverUnityInputPreset asset to your player's UnityInput component.
Open the QuestGiverInteractableTarget script in your code editor, and put a breakpoint on the first line of code in the Interact method, which in your case should start with "var characterNetworkInfo..." since you're using PUN. Then you can step through the method to see if it's getting to the last line, which calls StartDialogueWithPlayer().
Make sure your local player's GameObject is tagged Player. This is how StartDialogueWithPlayer() knows which GameObject is interacting with the quest giver.
If it gets to that line but doesn't activate the player's Greet Quest Giver ability, then as a test try changing that last line to:
Code: Select all
GetComponent<QuestGiver>().StartDialogue(character);