So I keep failing at what I tohught owuld be an easy mod

Arch Duke

Chieftain
Joined
Sep 28, 2010
Messages
9
I'm trying to trigger a map reveal to hit under the condition of Satalite tech being researched for that civ.

anyone have any clues to point me in the right direction?
 
Not sure you query belongs in this part of the forum, since no LUA or DLL coding is required to achieve this. Adding the following XML to your mod should do the trick though. :)
Code:
<Gameinfo>
	<Technologies>
		<Update>
			<Where Type="TECH_SATELLITES"/>
			<Set MapVisible="true"/>
		</Update>
	</Technologies>
</Gameinfo>
 
Back
Top Bottom