[11858] | 1 | <LevelInfo |
---|
| 2 | name = "00 Test Multiplayer Level LTS" |
---|
| 3 | description = "Survive as a team." |
---|
| 4 | tags = "test" |
---|
| 5 | screenshot = "lastteamstanding.png" |
---|
| 6 | /> |
---|
| 7 | <?lua |
---|
| 8 | include("stats.oxo") |
---|
| 9 | include("HUDTemplates3.oxo") |
---|
| 10 | include("templates/lodInformation.oxt") |
---|
| 11 | include("lastTeamStandingHUD.oxo") |
---|
| 12 | include("templates/spaceshipAssff.oxt") |
---|
| 13 | include("templates/spaceshipPirate.oxt") |
---|
| 14 | include("templates/pickupRepresentationTemplates.oxt") |
---|
| 15 | ?> |
---|
| 16 | |
---|
| 17 | <Level |
---|
| 18 | name = "00 Team Multiplayer Level LTS" |
---|
| 19 | description = "testmap for gametype last team standing" |
---|
| 20 | gametype = "LastTeamStanding" |
---|
| 21 | > |
---|
| 22 | <templates> |
---|
| 23 | <Template link=lodtemplate_default /> |
---|
| 24 | </templates> |
---|
| 25 | <?lua include("includes/notifications.oxi") ?> |
---|
| 26 | |
---|
| 27 | <Scene |
---|
| 28 | ambientlight = "0.8, 0.8, 0.8" |
---|
| 29 | skybox = "Orxonox/skyBoxBasic" |
---|
| 30 | > |
---|
| 31 | |
---|
| 32 | <?lua |
---|
| 33 | include("includes/pickups.oxi") |
---|
| 34 | ?> |
---|
| 35 | |
---|
| 36 | <WorldAmbientSound source="Nebula_metal.ogg" looping="true" playOnLoad="true" /> |
---|
| 37 | |
---|
| 38 | <Bot /> |
---|
| 39 | |
---|
| 40 | <!-- ------------ middle asteroid -------------- --> |
---|
| 41 | |
---|
| 42 | |
---|
| 43 | <!-- ---------------asteroid dome----------------- --> |
---|
| 44 | <?lua |
---|
| 45 | max = 16 |
---|
| 46 | for i = 0, max, 1 |
---|
| 47 | do |
---|
| 48 | y = math.sin(i/max*6)*750 |
---|
| 49 | z = math.cos(i/max*6)*750 |
---|
| 50 | j = 1 |
---|
| 51 | ?> |
---|
| 52 | |
---|
| 53 | <TeamSpawnPoint team="<?lua print( math.mod(i,4)) ?>" position="<?lua print(y*1.4+z*0.2) ?>,0,<?lua print(z*1.4-y*0.2) ?>" direction="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipassff /> |
---|
| 54 | |
---|
| 55 | |
---|
| 56 | |
---|
| 57 | |
---|
| 58 | <?lua end ?> |
---|
| 59 | |
---|
| 60 | </Scene> |
---|
| 61 | </Level> |
---|
| 62 | |
---|
| 63 | |
---|