[7648] | 1 | <LevelInfo |
---|
| 2 | name = "Team Deathmatch" |
---|
| 3 | description = "Fight against each other in teams." |
---|
[9016] | 4 | tags = "gametype" |
---|
| 5 | screenshot = "teamdeathmatch.png" |
---|
[7648] | 6 | /> |
---|
| 7 | |
---|
[5534] | 8 | <?lua |
---|
[7679] | 9 | include("HUDTemplates3.oxo") |
---|
[5654] | 10 | include("stats.oxo") |
---|
[7679] | 11 | include("templates/spaceshipAssff.oxt") |
---|
| 12 | include("templates/spaceshipH2.oxt") |
---|
| 13 | include("templates/spaceshipPirate.oxt") |
---|
| 14 | include("templates/lodInformation.oxt") |
---|
[5534] | 15 | ?> |
---|
| 16 | |
---|
| 17 | <Level |
---|
[9016] | 18 | gametype = "TeamDeathmatch" |
---|
[5534] | 19 | > |
---|
[7163] | 20 | <templates> |
---|
| 21 | <Template link=lodtemplate_default /> |
---|
| 22 | </templates> |
---|
[8706] | 23 | <?lua include("includes/notifications.oxi") ?> |
---|
[7163] | 24 | |
---|
[5534] | 25 | <Scene |
---|
| 26 | ambientlight = "0.7, 0.6, 0.6" |
---|
[9348] | 27 | skybox = "Orxonox/skyBoxBasic" |
---|
[5534] | 28 | > |
---|
| 29 | <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" /> |
---|
| 30 | |
---|
| 31 | <TeamSpawnPoint team=0 position="0, 0,0" direction="1,0,0" spawnclass=SpaceShip pawndesign=spaceshipassff /> |
---|
| 32 | <TeamSpawnPoint team=0 position="0, 50,0" direction="1,0,0" spawnclass=SpaceShip pawndesign=spaceshipassff /> |
---|
| 33 | <TeamSpawnPoint team=0 position="0,100,0" direction="1,0,0" spawnclass=SpaceShip pawndesign=spaceshipassff /> |
---|
| 34 | <TeamSpawnPoint team=0 position="0,150,0" direction="1,0,0" spawnclass=SpaceShip pawndesign=spaceshipassff /> |
---|
| 35 | |
---|
| 36 | <TeamSpawnPoint team=1 position="2000, 0,0" direction="-1,0,0" spawnclass=SpaceShip pawndesign=spaceshippirate /> |
---|
| 37 | <TeamSpawnPoint team=1 position="2000, 50,0" direction="-1,0,0" spawnclass=SpaceShip pawndesign=spaceshippirate /> |
---|
| 38 | <TeamSpawnPoint team=1 position="2000,100,0" direction="-1,0,0" spawnclass=SpaceShip pawndesign=spaceshippirate /> |
---|
| 39 | <TeamSpawnPoint team=1 position="2000,150,0" direction="-1,0,0" spawnclass=SpaceShip pawndesign=spaceshippirate /> |
---|
| 40 | |
---|
| 41 | <TeamSpawnPoint team=2 position="1000, 0,1500" direction="0,0,-1" spawnclass=SpaceShip pawndesign=spaceshipHtwo /> |
---|
| 42 | <TeamSpawnPoint team=2 position="1000, 50,1500" direction="0,0,-1" spawnclass=SpaceShip pawndesign=spaceshipHtwo /> |
---|
| 43 | <TeamSpawnPoint team=2 position="1000,100,1500" direction="0,0,-1" spawnclass=SpaceShip pawndesign=spaceshipHtwo /> |
---|
| 44 | <TeamSpawnPoint team=2 position="1000,150,1500" direction="0,0,-1" spawnclass=SpaceShip pawndesign=spaceshipHtwo /> |
---|
| 45 | |
---|
| 46 | |
---|
[7163] | 47 | <?lua |
---|
| 48 | for i = 1, 70, 1 do |
---|
| 49 | ?> |
---|
| 50 | <MovableEntity position="<?lua print(math.random() * 6000 - 3000)?>, <?lua print(math.random() * 6000 - 3000) ?>, <?lua print(math.random() * 1000 + 3000) ?>" rotationaxis="<?lua print(math.random()) ?>, <?lua print(math.random()) ?>, <?lua print(math.random()) ?>" rotationrate="<?lua print(math.random() * 30 + 5) ?>"> |
---|
| 51 | <attached> |
---|
| 52 | <Model scale="<?lua print(math.random() * 50 + 20) ?>" mesh="ast<?lua print( math.mod(i,6) + 1) ?>.mesh" shadow=false /> |
---|
| 53 | </attached> |
---|
| 54 | </MovableEntity> |
---|
| 55 | <MovableEntity position="<?lua print(math.random() * 6000 - 3000)?>, <?lua print(math.random() * 6000 - 3000) ?>, <?lua print(math.random() * -1000 - 3000) ?>" rotationaxis="<?lua print(math.random()) ?>, <?lua print(math.random()) ?>, <?lua print(math.random()) ?>" rotationrate="<?lua print(math.random() * 30 + 5) ?>"> |
---|
| 56 | <attached> |
---|
| 57 | <Model scale="<?lua print(math.random() * 50 + 20) ?>" mesh="ast<?lua print( math.mod(i,6) + 1) ?>.mesh" shadow=false /> |
---|
| 58 | </attached> |
---|
| 59 | </MovableEntity> |
---|
[5534] | 60 | |
---|
[7163] | 61 | <MovableEntity position="<?lua print(math.random() * 6000 - 3000)?>, <?lua print(math.random() * 1000 + 3000) ?>, <?lua print(math.random() * 6000 - 3000) ?>" rotationaxis="<?lua print(math.random()) ?>, <?lua print(math.random()) ?>, <?lua print(math.random()) ?>" rotationrate="<?lua print(math.random() * 30 + 5) ?>"> |
---|
| 62 | <attached> |
---|
| 63 | <Model scale="<?lua print(math.random() * 50 + 20) ?>" mesh="ast<?lua print( math.mod(i,6) + 1) ?>.mesh" shadow=false /> |
---|
| 64 | </attached> |
---|
| 65 | </MovableEntity> |
---|
| 66 | <MovableEntity position="<?lua print(math.random() * 6000 - 3000)?>, <?lua print(math.random() * -1000 - 3000) ?>, <?lua print(math.random() * 6000 - 3000) ?>" rotationaxis="<?lua print(math.random()) ?>, <?lua print(math.random()) ?>, <?lua print(math.random()) ?>" rotationrate="<?lua print(math.random() * 30 + 5) ?>"> |
---|
| 67 | <attached> |
---|
| 68 | <Model scale="<?lua print(math.random() * 50 + 20) ?>" mesh="ast<?lua print( math.mod(i,6) + 1) ?>.mesh" shadow=false /> |
---|
| 69 | </attached> |
---|
| 70 | </MovableEntity> |
---|
[5534] | 71 | |
---|
[7163] | 72 | <MovableEntity position="<?lua print(math.random() * 1000 + 3000)?>, <?lua print(math.random() * 6000 - 3000) ?>, <?lua print(math.random() * 6000 - 3000) ?>" rotationaxis="<?lua print(math.random()) ?>, <?lua print(math.random()) ?>, <?lua print(math.random()) ?>" rotationrate="<?lua print(math.random() * 30 + 5) ?>"> |
---|
| 73 | <attached> |
---|
| 74 | <Model scale="<?lua print(math.random() * 50 + 20) ?>" mesh="ast<?lua print( math.mod(i,6) + 1) ?>.mesh" shadow=false /> |
---|
| 75 | </attached> |
---|
| 76 | </MovableEntity> |
---|
| 77 | <MovableEntity position="<?lua print(math.random() * -1000 - 3000)?>, <?lua print(math.random() * 6000 - 3000) ?>, <?lua print(math.random() * 6000 - 3000) ?>" rotationaxis="<?lua print(math.random()) ?>, <?lua print(math.random()) ?>, <?lua print(math.random()) ?>" rotationrate="<?lua print(math.random() * 30 + 5) ?>"> |
---|
| 78 | <attached> |
---|
| 79 | <Model scale="<?lua print(math.random() * 50 + 20) ?>" mesh="ast<?lua print( math.mod(i,6) + 1) ?>.mesh" shadow=false /> |
---|
| 80 | </attached> |
---|
| 81 | </MovableEntity> |
---|
| 82 | <?lua end ?> |
---|
[5534] | 83 | |
---|
| 84 | </Scene> |
---|
| 85 | </Level> |
---|