Building

Catalonia

Warlord
Joined
Jan 4, 2012
Messages
118
How can delete a building? Is this correct?

<Buildings>
<Delete Type="BUILD_PALACE" />
</Buildings>
 
That's fine, the name is "BUILDING_PALACE", however. :p
 
OK, very thanks!

EDIT: Sorry, but it does not work...
 
Check CIV5Buildings.xml for the building/wonder names.

This is the appropriate code to delete buildings assets:

Code:
<GameData>
 <Buildings>
  <Delete Type="BUILDING_PALACE"/>
  <Delete Type="BUILDING_STONEHENGE"/>
 </Buildings>
</GameData>
 
Top Bottom