-
Notifications
You must be signed in to change notification settings - Fork 1
Characters
Chad Jakoby edited this page Sep 22, 2019
·
2 revisions
// Backstory:
Backstory backstory = client.Character.GetBackstory("characterName");
// Core Information:
Core coreInfo = client.Character.GetCoreInformation("characterName");
// Crafting Disciplines:
CraftingInfo craftingInfo = client.Character.GetCraftingInformation("characterName");
// Equipment:
Equipment equipment = client.Character.GetEquipment("characterName");
// Hero Points:
ICollection<string> heroPoints = client.Character.GetHeroPoints("characterName");
// Inventory:
Inventory inventory = client.Character.GetInventory("characterName");
// Skills:
ICollection<Skill> pveSkills = client.Character.GetSkills("characterName", SkillType.PvE);
ICollection<Skill> pvpSkills = client.Character.GetSkills("characterName", SkillType.PvP);
ICollection<Skill> wvwSkills = client.Character.GetSkills("characterName", SkillType.WvW);