S sciemus New Member Joined Sep 14, 2015 Messages 5 Reaction score 0 Oct 3, 2015 #1 Thanks for the help
N newb23 Community Developer Joined Nov 26, 2014 Messages 397 Reaction score 15 Oct 3, 2015 #2 Code: Log(Core.Me.CurrentTarget.NpcId); or for a lot more info about them in case that you need it: Code: GameObject s = GameObjectManager.GetObjectByNPCId(Core.Target.NpcId); { Log(s.EnglishName); foreach (var prop in s.GetType().GetProperties()) { Log("\t" + prop.Name + ": " + prop.GetValue(s)); } }
Code: Log(Core.Me.CurrentTarget.NpcId); or for a lot more info about them in case that you need it: Code: GameObject s = GameObjectManager.GetObjectByNPCId(Core.Target.NpcId); { Log(s.EnglishName); foreach (var prop in s.GetType().GetProperties()) { Log("\t" + prop.Name + ": " + prop.GetValue(s)); } }
mastahg Administrator Staff member Joined Feb 27, 2011 Messages 5,381 Reaction score 388 Oct 3, 2015 #3 https://www.thebuddyforum.com/rebor...-code-snippets-developing-quest-profiles.html