| View previous topic :: View next topic |
| Author |
Message |
portal
Joined: 08 Aug 2002 Posts: 102
|
Posted: Mon Nov 09, 2009 4:21 pm Post subject: Gearcrafting skill |
|
|
im trying to make my craft bot get skill info, but get this issue.
Decal.Adapter.Wrappers.CharFilterSkillType' does not contain a definition for 'Gearcraft'
Do you know when this skill will be added in so we can show skill levels for it? through adapter |
|
| Back to top |
|
 |
yaroz_mt
Joined: 22 Apr 2002 Posts: 25 Location: Morningthaw
|
Posted: Mon Feb 01, 2010 11:42 pm Post subject: |
|
|
| I've been wondering the same thing. I am trying to update my stat info plugin. |
|
| Back to top |
|
 |
Saloben
Joined: 06 Apr 2010 Posts: 9
|
Posted: Fri Apr 30, 2010 5:34 pm Post subject: |
|
|
| Other than memlocs has anything been done to decal since ToD was released? I am wondering if there really is a decal dev team anymore that could even work on a new release. |
|
| Back to top |
|
 |
Digero

Joined: 15 May 2003 Posts: 426
|
Posted: Sat May 01, 2010 1:31 am Post subject: |
|
|
If you can figure out the ID of the gearcraft skill, you might be able to just hardcode the ID. It will only work if CharStats tracks all skills, and not just ones that it knows about.
For example, say the ID of the gearcraft skill is 255:
| Code: | | const CharFilterSkillType GearcraftSkillType = (CharFilterSkillType)255; |
Then use that constant to access skill info:
| Code: | | int skillLevel = Core.CharacterFilter.EffectiveSkill[GearcraftSkillType]; |
As far as figuring out what the ID is.. you'll probably have to resort to trial and error. Chances are that its ID is just above the highest ID currently defined in CharFilterSkillType. _________________ http://decal.acasylum.com/ |
|
| Back to top |
|
 |
|