How to use crafting workbenches?
I wonder how i can use skills from crafting workbenches.
If i try to list them i do not get any skills at all:
How can i find out the skills and how can i activate them?
I wonder how i can use skills from crafting workbenches.
If i try to list them i do not get any skills at all:
Code:
public void DumpSkills(DoodadObject dood)
{
if (dood == null) return;
if (dist(dood) > 2) return;
List<Skill> skills = dood.getUseSkills();
foreach (var skill in skills)
Log(skill.name + " => " + skill.id);
}
How can i find out the skills and how can i activate them?
Last edited: