Hello guys. This is my first post here. I want to ask why is it that the Undead (in Insane Mode) builds too many necropolis. This sometimes happens after they survive an attack in their base. Also, the Undead doesn't build banshees and only necromancers. But when I looked at the AI undead in ROC, there is that instruction
I extracted this undead AI and used it in the map through triggers. I changed the 7 to 6 in the if statement. The result was the undead trained banshees earlier than expected. I think the Undead AI in Frozen throne is boring because they don't train (or give importance to) spell casters (except the Obsidian Statue) not like humans. Even Orcs train at least 1 shaman and 1 witchdoctor per wave.
So now, how do I extract the Undead AI in Frozen Throne ?
Code:
if farms < 7 then
return
endif
if banshees then
call SetBuildUnit( 3, NECRO )
call SetBuildUnit( 2, BANSHEE )
I extracted this undead AI and used it in the map through triggers. I changed the 7 to 6 in the if statement. The result was the undead trained banshees earlier than expected. I think the Undead AI in Frozen throne is boring because they don't train (or give importance to) spell casters (except the Obsidian Statue) not like humans. Even Orcs train at least 1 shaman and 1 witchdoctor per wave.
So now, how do I extract the Undead AI in Frozen Throne ?