Heraldic Shield question

Users who are viewing this thread

Slytacular

Sergeant Knight
I am having trouble creating my first heraldic item and adding it to my PW module. I ran the module builder and I received this error:

ERROR: identifier 'tableau_mesh_clan_shield' not found; entry: 'clan_shield: ti_
on_init_item'

What does ti_on_init_item mean?
 
"ti_on_init_item" and other identifiers starting with ti_ are for the various triggers associated with objects that are called by the game engine: there is a list in header_triggers.py. Copying from another PW heraldic item, you probably used the trigger generating function called init_heraldic_item(), defined near the top of module_items.py: you passed it the identifier "tableau_mesh_clan_shield" without actually adding that entry to module_tableau_materials.py (and probably didn't add the necessary meshes to module_meshes.py or include them in a .brf file).
 
Back
Top Bottom