Beltzer on 24/9/2014 at 18:01
I have a problem with dromed, as usual. It is some warnings in the monolog. I have not noticed it before. I tried to replace all schema files. I also tried reload schemas with the original dark.gam file. The only difference when i replaced the schemas was that two of the Warnings disappeared. Here they are:
Code:
WARNING: More than eight enums for a schema tag: ZombiePart.
WARNING: More than eight enums for a schema tag: Servant.
WARNING: More than eight enums for a schema tag: Guard.
Anyone have any ideas?
ZylonBane on 24/9/2014 at 18:26
Well... how many enums are on those schema tags?
Okay, so I'm assuming you've already done all this, but for the benefit of our home viewers, this is what I did. I searched the Thief schema files for the string "ZombiePart". This yielded occurrences in three files, including one in FEET.SCH:
Quote:
env_tag (Event Collision) (Fungus True) (Material MetGrate MetLadder Rope Stone Tile Vegetation Wood WoodLadder) (Material2 MetGrate MetLadder Rope Stone Tile Vegetation Wood WoodLadder
ZombiePart)
Note how "ZombiePart" is the
ninth string in the Material2 tag list. I guess that's one too many.
LarryG on 24/9/2014 at 19:00
Add a continuation line.
Beltzer on 24/9/2014 at 19:46
Thank you both. Now i know what to look for. Not that i know how to do a continuation line.
LarryG on 24/9/2014 at 20:46
Take a look at some of the OM schemas. Here's an example from FEET.SCH as I modified it for more creatures:
Quote:
schema foot_water_a
archetype FOOT_AI
volume -1000
ftwat_1 ftwat_2 ftwat_3 ftwat_4
env_tag (Event Footstep) (MediaLevel Foot) (CreatureType Ape Apparition Burrick Frog Guard GuardNoKO Haunt Servant) (Material Liquid)
env_tag (Event Footstep) (MediaLevel Foot) (CreatureType TreeBeast RockBeast Zombie Keeper) (Material Liquid)
Just add a row for the extra creatures, no more than 8 per line.
Beltzer on 25/9/2014 at 06:06
Thank you LarryG