help please!!!

chris3418

Chieftain
Joined
Oct 8, 2010
Messages
3
:nuke:The future era in the neoteric world mod is supposed to be optional. Can anyone PLEASE tell me how to exclude the future era? :mad: Is there any possible way to disable or delete the SDI? Also, can you increase the strength of the ICBM? Someone PLEASE help! :nuke:
 
Moderator Action: Moved to the main forum.
Because this question doesn't have anything to do with Python or C++.

:nuke:The future era in the neoteric world mod is supposed to be optional. Can anyone PLEASE tell me how to exclude the future era?

Why not ask in the neoretic world thread ;)?
The author is still present, and if he said it's optional, then he knows a very easy way to disable it.

:mad: Is there any possible way to disable or delete the SDI?

In Neoretic World\Assets\XML\GameInfo\ProjectsInfos.xml, set iCost for SDI to -1.

Also, can you increase the strength of the ICBM? Someone PLEASE help! :nuke:

Neoretic World\Assets\XML\GlobalDefines.xml (if the file doesn't exist, then copy it from BtS), change these values to something higher:

PHP:
	<Define>
		<DefineName>NUKE_UNIT_DAMAGE_BASE</DefineName>
		<iDefineIntVal>30</iDefineIntVal>
	</Define>
	<Define>
		<DefineName>NUKE_UNIT_DAMAGE_RAND_1</DefineName>
		<iDefineIntVal>50</iDefineIntVal>
	</Define>
	<Define>
		<DefineName>NUKE_UNIT_DAMAGE_RAND_2</DefineName>
		<iDefineIntVal>50</iDefineIntVal>
	</Define>
	<Define>
		<DefineName>NUKE_NON_COMBAT_DEATH_THRESHOLD</DefineName>
		<iDefineIntVal>60</iDefineIntVal>
	</Define>
	<Define>
		<DefineName>NUKE_BUILDING_DESTRUCTION_PROB</DefineName>
		<iDefineIntVal>40</iDefineIntVal>
	</Define>
	<Define>
		<DefineName>NUKE_POPULATION_DEATH_BASE</DefineName>
		<iDefineIntVal>30</iDefineIntVal>
	</Define>
	<Define>
		<DefineName>NUKE_POPULATION_DEATH_RAND_1</DefineName>
		<iDefineIntVal>20</iDefineIntVal>
	</Define>
	<Define>
		<DefineName>NUKE_POPULATION_DEATH_RAND_2</DefineName>
		<iDefineIntVal>20</iDefineIntVal>
	</Define>
 
Back
Top Bottom