Page 1 of 1

Re: [Modding Help] Oh my god.

Posted: Wed Oct 03, 2012 2:35 pm
by Darkfrost
Might not be any help, but make sure you're saving them as ANSI encoded?

Re: [Modding Help] Oh my god.

Posted: Wed Oct 03, 2012 3:31 pm
by Kieve
[quote="PvtVain"]

Code: Select all

<event name="VNEP_ASTEROID_MINING">
	<text>Ready to jump again, you spot a asteroid inside the asteroid field, full of rare metals. They could be traded in for scrap if mined.</text>
		<choice hidden="true">
			<text>Try and mine the asteroid with fear of stray asteroid pieces.</text>
			<event load="VNEP_ASTEROID_MINING_RESULTS"/>
			<event/>
		</choice>
		<choice hidden="true">
			<text>Forget it and quickly prepare to jump to avoid any damage.</text>
			<event/>
		</choice>
</event>
If you've got an <event load> in a choice, the <event/> dummy is unnecessary. Guess you got it sorted already so it's not breaking anymore, but I thought I'd point this out anyway.