Hi,
I'm trying to dump out quests offered by a NPC that is being targeted by player. Has anyone been able to extract IDs? As simple check to see if a NPC has any quests seems to always return false.
-SB-
I'm trying to dump out quests offered by a NPC that is being targeted by player. Has anyone been able to extract IDs? As simple check to see if a NPC has any quests seems to always return false.
Code:
Actor me = GameManager.LocalPlayer;
if (me != null) {
Actor target = me.CurrentTarget;
if (target != null) {
Log.Info("Target.IsQuestGiving=" + target.IsQuestGiving);
Log.Info("Target.IsQuestReceiving=" + target.IsQuestReceiving);
...
...
-SB-