Alhambra mod not working

g0datwork2

Chieftain
Joined
Jan 13, 2015
Messages
12
Hey. Im trying to make it so alhambra effects range and seige weapons too. This is what I have and idk why it isnt working. Also I fear this will just change the free promo so how could I make it change to both barrage and drill. thanks

<GameData>
<Buildings>
<Update>
<Set TrainedFreePromotion="PROMOTION_BARRAGE_1"/>
<Where Type="BUILDING_ALHAMBRA"/>

</Buildings>

</Update>
</GameData>
 
Hey. Im trying to make it so alhambra effects range and seige weapons too. This is what I have and idk why it isnt working. Also I fear this will just change the free promo so how could I make it change to both barrage and drill. thanks

<GameData>
<Buildings>
<Update>
<Set TrainedFreePromotion="PROMOTION_BARRAGE_1"/>
<Where Type="BUILDING_ALHAMBRA"/>

</Buildings>

</Update>
</GameData>
Your code would need to be:
Code:
<GameData>
	<Buildings>
		<Update>
			<Set TrainedFreePromotion="PROMOTION_BARRAGE_1"/>
			<Where Type="BUILDING_ALHAMBRA"/>
		</Update>
	</Buildings>
</GameData>
No single building can have more than one specification of a TrainedFreePromotion.
 
Back
Top Bottom