SpellWeaving -> Error
SpellWeaving -> Error
Wher i try to cast my spellweaving spells, core print in console "attribute cfg not found for spellweaving"
what problem could be? :\
what problem could be? :\
Re: SpellWeaving -> Error
Hmm, its most likely because there is no element for spellweaving in your attributes.cfg file.
I would just try add it and link it to the skillID and then be sure you got the right UOFeature enabled.
Also you should perhaps add an entry in uoskills.cfg. Let me know if this works...
I would just try add it and link it to the skillID and then be sure you got the right UOFeature enabled.
Also you should perhaps add an entry in uoskills.cfg. Let me know if this works...
Re: SpellWeaving -> Error
i'm already insert this...
attributes.cfg
Attribute SpellWeaving
{
Number 58
Name SpellWeaving
SkillId 54
Unhides 1
Delay 10
IntAdv 100 40 //100 5d8+18
default_points 0
Title Spellweaver
}
uoskills.cfg
Skill 54
{
Attribute SpellWeaving
}
servspecopt.cfg
# 0x1a8 = ML + popup menus
UOFeatureEnable=0x1a8
attributes.inc
const ATTRIBUTEID_SPELLWEAVING := "spellweaving";
(this in GetAttributeIdBySkillId)
SKILLID_SPELLWEAVING: return ATTRIBUTEID_SPELLWEAVING;
attributes.cfg
Attribute SpellWeaving
{
Number 58
Name SpellWeaving
SkillId 54
Unhides 1
Delay 10
IntAdv 100 40 //100 5d8+18
default_points 0
Title Spellweaver
}
uoskills.cfg
Skill 54
{
Attribute SpellWeaving
}
servspecopt.cfg
# 0x1a8 = ML + popup menus
UOFeatureEnable=0x1a8
attributes.inc
const ATTRIBUTEID_SPELLWEAVING := "spellweaving";
(this in GetAttributeIdBySkillId)
SKILLID_SPELLWEAVING: return ATTRIBUTEID_SPELLWEAVING;
Re: SpellWeaving -> Error
Did you also set
inside the uoclient.cfg? Maybe this causes the error.
Code: Select all
MaxSkillID 54
Re: SpellWeaving -> Error
Pierce wrote:Did you also setinside the uoclient.cfg? Maybe this causes the error.Code: Select all
MaxSkillID 54
no, i've already set up it to 54..
Re: SpellWeaving -> Error
Which Pol version are you using?
I started building a spellweaving package yesterday and until now i didn't get any errors yet.
I am running Pol098-2009-04-02 RC2 wine and baguette. Last three words just kidding
I started building a spellweaving package yesterday and until now i didn't get any errors yet.
I am running Pol098-2009-04-02 RC2 wine and baguette. Last three words just kidding
Re: SpellWeaving -> Error
Lastest POL 098 bla bla version 
Re: SpellWeaving -> Error
I think its casesensitive so your problem is your const declaration.blkwr wrote: Attribute SpellWeaving
...
const ATTRIBUTEID_SPELLWEAVING := "spellweaving";
Re: SpellWeaving -> Error
Mine looks this way:
Perhaps its the missing type definition or the capital W in your definition. Everything else you posted is pretty much the same in my configs.
Code: Select all
Attribute Spellweaving
{
AttributeType Skill
SkillId 54
DefaultCap 1000
}
Re: SpellWeaving -> Error
Code: Select all
Attribute SpellWeaving
...
const ATTRIBUTEID_SPELLWEAVING := "spellweaving";so, for the attribute SpellWeaving, the const must be "SpellWeaving", and no "spellweaving.
Re: SpellWeaving -> Error
Sadahar wrote:Atributte must be exactly the same as the const defined.Code: Select all
Attribute SpellWeaving ... const ATTRIBUTEID_SPELLWEAVING := "spellweaving";
so, for the attribute SpellWeaving, the const must be "SpellWeaving", and no "spellweaving.
i tried as u said, but it was the same thing..
Re: SpellWeaving -> Error
i did it again but i've only error uff 