Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation2011/data/levels/presentationHS11.oxw @ 9009

Last change on this file since 9009 was 9009, checked in by jo, 12 years ago

Quick fix for the rocket. Taking care of this issue later.

File size: 2.2 KB
Line 
1<LevelInfo
2 name = "Presentation HS 2011"
3 description = "Oxonox Proudly Presents New Features From HS 2011"
4 tags = "presentation"
5/>
6
7<?lua
8  include("stats.oxo")
9  include("HUDTemplates3.oxo")
10  include("templates/lodInformation.oxt")
11?>
12
13<?lua
14  include("templates/spaceshipAssff.oxt")
15  include("templates/spaceshipPirate.oxt")
16?>
17
18<Level
19 gametype = "TeamGametype"
20>
21  <templates>
22    <Template link=lodtemplate_default />
23  </templates>
24  <?lua include("includes/notifications.oxi") ?>
25
26  <Scene
27    ambientlight = "0.8, 0.8, 0.8"
28    skybox       = "Orxonox/skyBoxMoreNebula"
29  >
30
31    <Light type=directional position="0,0,0" direction="0.253, 0.593, -0.765" diffuse="1.0, 0.9, 0.9, 1.0" specular="1.0, 0.9, 0.9, 1.0"/>
32    <TeamSpawnPoint team=0 position="800,700,600" direction="-1,0,0" spawnclass=SpaceShip pawndesign=spaceshipassff/>
33
34    <Script code="formationcontroller formationflight true" onLoad="true">
35    </Script> <!-- activate formation behaviour-->
36
37    <Script code="artificialcontroller setbotlevel 0.1" onLoad="true">
38    </Script> <!-- make bots "friendly", doesn't work yet :-( -->
39
40    <SpaceShip position="1000,-500,2000" lookat="-1300,-600,900" name="attacker" visible="true">
41        <!--events>
42            <visibility>
43                <EventListener event="ondock" />
44            </visibility>
45        </events-->
46        <templates>
47            <Template link=spaceshipassff /> <!--spaceshipTransporter spaceshippirate-->
48        </templates>
49        <controller>
50            <AIController team=0>
51                <!--events>
52                    <activity>
53                        <EventListener event="attack" />
54                     </activity>
55                </events-->
56            </AIController>
57        </controller>
58    </SpaceShip>
59
60
61
62
63<!-- ACTUAL LEVEL -->
64
65<!-- Generate asteroid field and asteroid belt -->
66<!-- asteroidBelt(centerX, centerY, centerZ, yaw, pitch, segments, minSize, maxSize, radius0, radius1, count, fog) -->
67    <?lua
68        dofile("includes/asteroidField.lua")
69        asteroidBelt(20000, 0, 13000, -48, -34, 70, 100, 200, 22000, 20000, 500, 1)
70
71    ?>
72
73
74
75
76<!--            asteroidBelt(0, 0, 0, 0, 0, 70, 100, 200, 22000, 20000, 500, 1) -->
77  </Scene>
78</Level>
79
Note: See TracBrowser for help on using the repository browser.