
Better?
Code: Select all
<eventList name="OVERRIDE_INF_START_CREW">
<event>
<text>Select a new crew member from the list below.</text>
<choice hidden="true">
<text>Human</text>
<event>
<crewMember amount="1" class="human"/>
</event>
</choice>
<choice hidden="true">
<text>Zoltan</text>
<event>
<crewMember amount="1" class="energy"/>
</event>
</choice>
<choice hidden="true">
<text>Engi</text>
<event>
<crewMember amount="1" class="engi"/>
</event>
</choice>
<choice hidden="true">
<text>Mantis</text>
<event>
<crewMember amount="1" class="mantis"/>
</event>
</choice>
<choice hidden="true">
<text>Rock</text>
<event>
<crewMember amount="1" class="rock"/>
</event>
</choice>
<choice hidden="true">
<text>Slug</text>
<event>
<crewMember amount="1" class="slug"/>
</event>
</choice>
<choice hidden="true">
<text>Lanius</text>
<event>
<crewMember amount="1" class="anaerobic"/>
</event>
</choice>
</event>
</eventList>
RAD-82 wrote:I'm currently on a break from my own modding, so I'm looking at something else. Don't expect it anytime soon, as I seem to have a lot to go through and I don't seem to look at it very often. I'm only posting this because I did some OVERRIDE_ tests today and learned that it doesn't work everywhere. It seems it only works on the tags that vanilla uses it for. A single event in an eventList is a workaround for it not working directly on events.![]()
R4V3-0N wrote:Better?