What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[Development] Trainer Type?

Smarter

Member
Joined
Jan 15, 2010
Messages
763
Reaction score
9
Is it possible to see what type of Profession Trainer a NPC is?
 
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);
 
Back
Top