does this code work ?
Posted: Tue Nov 13, 2012 8:34 pm
I'm making a mod but I don't know if this code will work:
this code should add a quest in the rock homeworld, you will fight a rock cruiser and you should get scrap, 3 missiles and a crew member called captain stinger
I'm asking this because I'm just taking code from here and there and I modify some part
this code should add a quest in the rock homeworld, you will fight a rock cruiser and you should get scrap, 3 missiles and a crew member called captain stinger
I'm asking this because I'm just taking code from here and there and I modify some part

<event name="QUEST_INTRUDERS" unique="true">
<text>A Strongly Damage Rock Ship hails you: "Please, Help us! A Strong rock ship betrayed us and took our captain as a hostage! We will reward you if you for your help."</text>
<choice hidden="true">
<text>Help them, we can't let this captain die!</text>
<event>
<text>"oh! Thank god, here is the coordinates, Good luck" They jump away before you can say anything.</text>
<quest event="QUEST_INTRUDERS"/>
</event>
</choice>
<choice hidden="true">
<text>A strong rock ship? we can't risk our live!</text>
<event>
<text>We fully understand, if you found someone strong, tell them to meet us here.</text>
</event>
</choice>
</event>
<event name="QUEST_INTRUDERS">
<text>as soon as you enter the given coodinates, you see the rock ship you are looking for fighting a weaponless rock cruiser, are you sure you want to fight it?</text>
<choice hidden="true">
<text>we can't turn back, come at me, bro!</text>
<event>
<text>the ship let the cruiser go aways and attack</text>
<ship load="ROCK_UNLOCK2" hostile="true"/>
<destroyed>
<text>The Rock ship's hull breaks apart. You deliver the Captain and he offer to join the federation</text>
<autoReward level="HIGH">scrap_only</autoReward>
<item_modify>
<item type="missile" min="-3" max="-3"/>
</item_modify>
<crewMember amount="1" class="rock">Captain Stinger</crewMember>
<choice hidden="true">
<text>Continue...</text>
</choice>
</destroyed>
</event>
</choice>
<choice hidden="true">
<text>We can't do that, we need to go away!</text>
<event>
<text>you look at the weaponless ship, they destroy it in no time and they jump aways, you failed</text>
</event>
</choice>
</event>
</choice>
</event>