Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/media/levels/princessaeryn.oxw @ 5315

Last change on this file since 5315 was 5315, checked in by dafrick, 15 years ago

Updated the questsystem levelfile and the example quest file due to some changes in the questsystem branch, or more precisely: One parameter of the QuestListener was changed form questStatus to mode.

File size: 12.6 KB
Line 
1<?lua
2  include("levels/hudtemplates.oxw")
3?>
4
5<?lua
6  include("levels/spaceshiptemplates.oxw")
7?>
8
9<?lua
10        dofile("../../media/levels/CuboidSpaceStation2.3.lua")
11?>
12
13<NotificationQueue
14  name  = "notification"
15  position = "0.55, 0.05"
16  font = "VeraMono"
17  textSize = 0.020
18  length = 3
19  width = 50
20  />
21
22<Level
23 name         = "The Tale of Princess Aeryn"
24 description  = "The Tale of Princess Aeryn"
25>
26    <Scene
27        ambientlight = "0.8, 0.8, 0.8"
28        skybox       = "Orxonox/Starbox"
29    >
30 
31        <!-- Quest: -->
32        <GlobalQuest id="b80c2c60-e62c-4637-80f8-5aa18dc93b34">
33            <QuestDescription title="The Tale of Princess Aeryn" description="Princess Aeryn has been kidnapped by evil Mr. M and you were just a little too late to save her.\nYou have to find and save her from her captors." failMessage="You cannot fail, how did you?" completeMessage="You did it John. You're a hero. Princess Aeryn however will still not marry you." />
34            <subquests>
35                <GlobalQuest id="43766602-7e2f-4d24-976a-3f9de1474d5b">
36                    <QuestDescription title="Find Aeryn's S.H.O.E.S." description="Oh, the kidnappers must have been in a hurry because they overlooked princess Aeryns S.H.O.E.S. (Super Heavily Organized Escape Ship) hidden in the asteroid field over there.\nFind it and look there for clues to Princess Aeryns whereabouts." completeMessage="You did it, Looking through her stuff you find an odd looking device - Could this be the receiver of Princess Aeryns locator beacon? - But it must be broken, the screen remains blank." />
37                    <complete-effects>
38                        <AddQuest questId="50845552-c8af-4091-947c-76bd850b224e" />
39                    </complete-effects>
40                </GlobalQuest>
41                <GlobalQuest id="50845552-c8af-4091-947c-76bd850b224e">
42                    <QuestDescription title="Repair the receiver." description="There is a space station called 'Serenity Station' near here. An engineer called Nathan Stark who shoud be able to help you lives there." completeMessage="'Yeah Nathan lives here, he'll shurely help you.'\nAnd he does, apparenty the device was just low on batteries so you're now able to locate your beloved Princess Aeryn." />
43                    <hints>
44                        <QuestHint id="b9b10841-b045-4797-b1d3-cfce760e1de6">
45                            <QuestDescription title="The Katratzi Station" description="'We ain't buying!'\n'What do you want?'\n'No there lives no Nathan here.'\n'Fuck off.''" />
46                        </QuestHint>
47                        <QuestHint id="1ee785f8-b71d-4b51-b080-42cec5be8e3c">
48                            <QuestDescription title="The Pegasus Station" description="'Hello friend.'\n'How can we help you?'\n'A Mr. Stark you say? Sorry no man with such a name lives here.'" />
49                        </QuestHint>
50                    </hints>
51                    <complete-effects>
52                        <AddQuest questId="97628524-b243-492c-b7b6-498f325b21d4" />
53                    </complete-effects>
54                </GlobalQuest>
55                <GlobalQuest id="97628524-b243-492c-b7b6-498f325b21d4">
56                    <QuestDescription title="Follow the dots" description="Just follow the dots, they'll lead you right to her." completeMessage="You found Princess Aeryn. Her captors give up at the shere sight ou you." />
57                    <complete-effects>
58                        <CompleteQuest questId="b80c2c60-e62c-4637-80f8-5aa18dc93b34" />
59                    </complete-effects>
60                </GlobalQuest>
61            </subquests>
62        </GlobalQuest>
63   
64        <!-- Create spaceship spawner: -->
65        <ParticleSpawner position="0,0,100" source="Orxonox/BigExplosion1part3" lifetime=2.0 loop=0 autostart=0>
66          <events>
67            <spawn>
68              <EventTrigger delay=1>
69                <events>
70                  <trigger>
71                    <SpawnPoint position="0,0,100" spawnclass=SpaceShip pawndesign=spaceshipassff />
72                  </trigger>
73                </events>
74              </EventTrigger>
75            </spawn>
76          </events>
77          <attached>
78            <QuestEffectBeacon position="0,0,0" times=1>
79                <effects>
80                    <AddQuest questId="b80c2c60-e62c-4637-80f8-5aa18dc93b34" />
81                    <AddQuest questId="43766602-7e2f-4d24-976a-3f9de1474d5b" />
82                </effects>
83                <events>
84                    <execute>
85                        <EventListener event=questbeacon1 />
86                    </execute>
87                </events>
88                <attached>
89                    <DistanceTrigger name=questbeacon1 position="0,0,0" distance=10 target="ControllableEntity" />
90                </attached>
91            </QuestEffectBeacon>
92          </attached>
93        </ParticleSpawner>
94
95        <!-- Create world -->
96
97            <!-- Kidnapper flying away -->
98            <MovableEntity position="200,0,0" velocity="-140,0,-140" yaw=45>
99                <attached>
100                    <Model position="0,0,0" scale=4 yaw=180 pitch=-90 roll=-90 mesh="pirate.mesh" />
101                    <ParticleSpawner position="0,0,10" source="Orxonox/fire3" lifetime=2.0 loop=0 autostart=1 />
102                </attached>
103            </MovableEntity>
104
105            <!-- Asteroid field -->
106            <PositionableEntity position="-500,0,-3000">
107                <attached>
108                    <?lua
109                        for i = 1, 200
110                        do ?>
111                        <MovableEntity position="<?lua print(math.random() * 2000 - 1000)?>, <?lua print(math.random() * 2000 - 1000) ?>, <?lua print(math.random() * 2000 - 1000) ?>" rotationaxis="<?lua print(math.random()) ?>, <?lua print(math.random()) ?>, <?lua print(math.random()) ?>" rotationrate="<?lua print(math.abs(math.random() * 30 -10)) ?>">
112                            <attached>
113                                <Model scale="<?lua print(math.random() * 50) ?>" mesh="ast<?lua print( math.mod(i,6) + 1) ?>.mesh" shadow=false />
114                            </attached>
115                        </MovableEntity>
116                    <?lua
117                        end
118                    ?>
119                    <!-- S.H.O.E.S -->
120                    <PositionableEntity position="-300,0,0">
121                        <attached>
122                            <Model position="0,0,0" scale=4 yaw=180 pitch=-90 roll=-90 mesh="assff.mesh" />
123                            <QuestEffectBeacon position="0,0,0" times=-1>
124                                <effects>
125                                    <CompleteQuest questId="43766602-7e2f-4d24-976a-3f9de1474d5b" />
126                                </effects>
127                                <events>
128                                    <execute>
129                                        <EventListener event=questbeacon2 />
130                                    </execute>
131                                </events>
132                                <attached>
133                                    <DistanceTrigger name=questbeacon2 position="0,0,0" distance=50 target="ControllableEntity" />
134                                </attached>
135                            </QuestEffectBeacon>
136                        </attached>
137                    </PositionableEntity>
138                </attached>
139            </PositionableEntity>
140     
141     
142     
143            <!-- Spacestations -->
144     
145            <!-- Serenity Station -->
146            <PositionableEntity scale=1 position="0,0,5000" yaw=30>
147                <attached>
148                    <?lua
149                        createSpaceStation(200)
150                    ?>
151                    <QuestEffectBeacon position="0,450,200" times=1>
152                        <effects>
153                            <CompleteQuest questId="50845552-c8af-4091-947c-76bd850b224e" />
154                        </effects>
155                        <events>
156                            <execute>
157                                <EventListener event=questbeacon3 />
158                            </execute>
159                        </events>
160                        <attached>
161                            <Billboard position="0,0,0" colour="1.0,1.0,0" material="Examples/Flare" />
162                            <DistanceTrigger name=questbeacon3 position="0,0,0" distance=100 target="ControllableEntity" />
163                        </attached>
164                    </QuestEffectBeacon>
165                </attached>
166            </PositionableEntity>
167
168            <!-- Katratzi Station -->
169            <PositionableEntity scale=1 position="0,5000,300" yaw=60>
170                <attached>
171                    <?lua
172                        createSpaceStation(51644)
173                    ?>
174                    <QuestEffectBeacon position="0,450,0" times=1>
175                        <effects>
176                            <AddQuestHint hintId="b9b10841-b045-4797-b1d3-cfce760e1de6" />
177                        </effects>
178                        <events>
179                            <execute>
180                                <EventListener event=questbeacon4 />
181                            </execute>
182                        </events>
183                        <attached>
184                            <Billboard position="0,0,0" colour="1.0,1.0,0" material="Examples/Flare" />
185                            <DistanceTrigger name=questbeacon4 position="0,0,0" distance=100 target="ControllableEntity" />
186                        </attached>
187                    </QuestEffectBeacon>
188                </attached>
189            </PositionableEntity>
190
191            <!-- Pegasus Station -->
192            <PositionableEntity scale=1 position="-5000,100,1000" roll=30>
193                <attached>
194                    <?lua
195                        createSpaceStation(658774)
196                    ?>
197                    <QuestEffectBeacon position="0,450,0" times=1>
198                        <effects>
199                            <AddQuestHint hintId="1ee785f8-b71d-4b51-b080-42cec5be8e3c" />
200                        </effects>
201                        <events>
202                            <execute>
203                                <EventListener event=questbeacon5 />
204                            </execute>
205                        </events>
206                        <attached>
207                            <Billboard position="0,0,0" colour="1.0,1.0,0" material="Examples/Flare" />
208                            <DistanceTrigger name=questbeacon5 position="0,0,0" distance=100 target="ControllableEntity" />
209                        </attached>
210                    </QuestEffectBeacon>
211                </attached>
212            </PositionableEntity>
213             
214            <!-- Trail -->
215            <EventDispatcher>
216                <targets>
217                    <EventTarget name=trail />
218                </targets>
219                <events>
220                    <visibility>
221                        <QuestListener questId="50845552-c8af-4091-947c-76bd850b224e" mode="complete" />
222                    </visibility>
223                    <activity>
224                        <QuestListener questId="50845552-c8af-4091-947c-76bd850b224e" mode="complete" />
225                    </activity>
226                </events>
227            </EventDispatcher>
228       
229            <?lua
230                for i = 1, 25
231                do
232            ?>
233                <Billboard position="<?lua print(i*5000/25) ?>,<?lua print(450+i*(5000-450)/25) ?>,5000" colour="1.0,0,0" material="Examples/Flare" name=trail visible=false/>
234            <?lua
235                end
236            ?>
237       
238            <!-- Hideout -->
239            <PositionableEntity position="5000,5000,5000" >
240                <attached>
241                    <Model scale="100" mesh="ast2.mesh" shadow=false />
242                </attached>
243            </PositionableEntity>
244
245            <PositionableEntity position="5400,5400,5000" visible=false name=trail >
246                <attached>
247                    <Model position="0,0,0" scale=4 yaw=180 pitch=-90 roll=-90 mesh="pirate.mesh" />
248                    <QuestEffectBeacon position="0,0,0" times=1 active=false name=trail >
249                        <effects>
250                            <CompleteQuest questId="97628524-b243-492c-b7b6-498f325b21d4" />
251                        </effects>
252                        <events>
253                            <execute>
254                                <EventListener event=questbeacon6 />
255                            </execute>
256                        </events>
257                        <attached>
258                            <DistanceTrigger name=questbeacon6 position="0,0,0" distance=100 target="ControllableEntity" />
259                        </attached>
260                    </QuestEffectBeacon>
261                </attached>
262            </PositionableEntity>
263
264    </Scene>
265</Level>
266
Note: See TracBrowser for help on using the repository browser.