[GS] Help with trait

Peep the Toad

Chieftain
Joined
Feb 6, 2019
Messages
22
I have been searching around the forums and seen some good help, but I just can't seem to make my trait work, I think it should be an easy fix, and any help would be appreciated.
 

Attachments

Included the whole project, if any wouldnt mind having a look, Cornwall_trais is what is included in my mod, Cornwall_Trais_only_boat is not included,but most clearly represents my current issue
 

Attachments

As a general rule xml is not case-sensitive for column-names, but you've used ModifierID instead of ModifierId so that would be the very first thing I would alter.

Also, use RequirementId instead of Requirementid.

I can't see within the code of the Cornwall_Traits_only_boat.xml where there are any syntax errors or missing requirement etc elements. Beyond the Case-sensitive possibility, what if anything pops up in database log ?
 
doh! here's your problem:
Code:
<Row ModifierId="TRAIT_KN_FISHING_BOAT_FOOD_MODIFIER"  Name="Value" Value="1"/>
Name needs to be "Amount" on that line

I also confirmed that case-sensitivity is not a problem but it is also a bad habit to get into because it leads you to thinking that such things as row is equal to Row, which is not true.
 
Back
Top Bottom