Smarter Member Joined Jan 15, 2010 Messages 763 Reaction score 9 Jan 10, 2011 #1 Is it possible to see what type of Profession Trainer a NPC is?
CodenameG New Member Joined Jan 15, 2010 Messages 38,364 Reaction score 231 Jan 10, 2011 #2 Smarter said: Is it possible to see what type of Profession Trainer a NPC is? Click to expand... no, im pretty sure you cant. unless you do the leg work before hand an make notes on that stuff.
Smarter said: Is it possible to see what type of Profession Trainer a NPC is? Click to expand... no, im pretty sure you cant. unless you do the leg work before hand an make notes on that stuff.
fpsware Community Developer Joined Jan 15, 2010 Messages 5,287 Reaction score 133 Jan 12, 2011 #3 I actually doing this via a crude method. Check the SubName of the NPC. if (u.SubName != "" && u.SubName.Contains("Trainer")) listBox1.Items.Add(u.Name + " " + u.SubName);
I actually doing this via a crude method. Check the SubName of the NPC. if (u.SubName != "" && u.SubName.Contains("Trainer")) listBox1.Items.Add(u.Name + " " + u.SubName);