[7903] | 1 | <LevelInfo |
---|
| 2 | name = "Last Team Standing" |
---|
| 3 | description = "Survive as a team." |
---|
[9016] | 4 | tags = "gametype" |
---|
| 5 | screenshot = "lastteamstanding.png" |
---|
[7903] | 6 | /> |
---|
[7556] | 7 | <?lua |
---|
| 8 | include("stats.oxo") |
---|
[7679] | 9 | include("HUDTemplates3.oxo") |
---|
| 10 | include("templates/lodInformation.oxt") |
---|
[7903] | 11 | include("lastTeamStandingHUD.oxo") |
---|
[7679] | 12 | include("templates/spaceshipAssff.oxt") |
---|
| 13 | include("templates/spaceshipPirate.oxt") |
---|
| 14 | include("templates/pickupRepresentationTemplates.oxt") |
---|
[7556] | 15 | ?> |
---|
| 16 | |
---|
| 17 | <Level |
---|
[7903] | 18 | name = "Last Team Standing" |
---|
| 19 | description = "testmap for gametype last team standing" |
---|
[9348] | 20 | gametype = "LastTeamStanding" |
---|
[7556] | 21 | > |
---|
| 22 | <templates> |
---|
| 23 | <Template link=lodtemplate_default /> |
---|
| 24 | </templates> |
---|
[8706] | 25 | <?lua include("includes/notifications.oxi") ?> |
---|
[7556] | 26 | |
---|
| 27 | <Scene |
---|
| 28 | ambientlight = "0.8, 0.8, 0.8" |
---|
[9348] | 29 | skybox = "Orxonox/skyBoxBasic" |
---|
[7556] | 30 | > |
---|
[7605] | 31 | |
---|
| 32 | <?lua |
---|
| 33 | include("includes/pickups.oxi") |
---|
| 34 | ?> |
---|
| 35 | |
---|
[7561] | 36 | <Bot /> |
---|
[7556] | 37 | |
---|
[7561] | 38 | <!-- ------------ middle asteroid -------------- --> |
---|
[7585] | 39 | <StaticEntity position="0,20,0" collisionType=static> |
---|
[7561] | 40 | <attached> |
---|
| 41 | <Model position="0,0,0" scale=140 mesh="asteroid_UV.mesh" shadow=true /> |
---|
[7573] | 42 | <!-- ParticleEmitter position="0,0,0" source="Orxonox/Steam" / --> |
---|
[7561] | 43 | </attached> |
---|
[7585] | 44 | <collisionShapes> |
---|
| 45 | <SphereCollisionShape radius="145" /> |
---|
| 46 | </collisionShapes> |
---|
[7561] | 47 | </StaticEntity> |
---|
| 48 | |
---|
[9348] | 49 | <PickupSpawner pickup=hugeinvisiblepickup position="-160,60,17" triggerDistance="20" respawnTime="5" maxSpawnedItems="10" /><!--EasterEgg--> |
---|
[7605] | 50 | <StaticEntity position="-160,60,28.4"><!--EasterEgg-Indicator--> |
---|
| 51 | <attached> |
---|
| 52 | <Model position="0,0,0" scale=1 mesh="sphere.mesh" /> |
---|
| 53 | </attached> |
---|
| 54 | </StaticEntity> |
---|
| 55 | |
---|
[7561] | 56 | <!-- ---------------asteroid dome----------------- --> |
---|
[7556] | 57 | <?lua |
---|
[7617] | 58 | max = 16 |
---|
| 59 | for i = 0, max, 1 |
---|
[7556] | 60 | do |
---|
[7561] | 61 | y = math.sin(i/max*6)*750 |
---|
| 62 | z = math.cos(i/max*6)*750 |
---|
[7617] | 63 | j = 1 |
---|
[7561] | 64 | ?> |
---|
[7556] | 65 | |
---|
[8179] | 66 | <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 /> |
---|
[7600] | 67 | |
---|
[8179] | 68 | <StaticEntity position="<?lua print(y) ?>,0,<?lua print(z) ?>" scale="<?lua print(j * 2) ?>" collisionType=static > |
---|
[7556] | 69 | <attached> |
---|
[7561] | 70 | <Model position="0,0,0" scale=15 mesh="ast<?lua print( math.mod(i,6) + 1) ?>.mesh"> |
---|
[9348] | 71 | </Model> |
---|
[7556] | 72 | </attached> |
---|
[7585] | 73 | <collisionShapes> |
---|
| 74 | <BoxCollisionShape halfExtents="<?lua print(j * 2) ?>,100,<?lua print(j * 2) ?>" position = "0,0,0" /> |
---|
| 75 | </collisionShapes> |
---|
[7556] | 76 | </StaticEntity> |
---|
| 77 | |
---|
[8179] | 78 | <StaticEntity position="<?lua print(y) ?>,100,<?lua print(z) ?>" scale="<?lua print(j * 2) ?>" collisionType=static > |
---|
[7556] | 79 | <attached> |
---|
[7561] | 80 | <Model position="0,0,0" scale=15 mesh="ast<?lua print( math.mod(i+3,6) + 1) ?>.mesh"> |
---|
[9348] | 81 | </Model> |
---|
[7556] | 82 | </attached> |
---|
[7585] | 83 | <collisionShapes> |
---|
| 84 | <BoxCollisionShape halfExtents="45,100,45" position = "0,0,0" /> |
---|
| 85 | </collisionShapes> |
---|
[7605] | 86 | </StaticEntity> |
---|
[7556] | 87 | |
---|
[8179] | 88 | <StaticEntity position="<?lua print(y) ?>,200,<?lua print(z) ?>" scale="<?lua print(j * 2) ?>" collisionType=static > |
---|
[7556] | 89 | <attached> |
---|
[7561] | 90 | <Model position="0,0,0" scale=15 mesh="ast<?lua print( math.mod(i*5,6) + 1) ?>.mesh"> |
---|
[9348] | 91 | </Model> |
---|
[7556] | 92 | </attached> |
---|
[7585] | 93 | <collisionShapes> |
---|
| 94 | <BoxCollisionShape halfExtents="45,100,45" position = "0,0,0" /> |
---|
| 95 | </collisionShapes> |
---|
[7561] | 96 | </StaticEntity> |
---|
[7556] | 97 | |
---|
[8179] | 98 | <StaticEntity position="<?lua print(y) ?>,-100,<?lua print(z) ?>" scale="<?lua print(j * 2) ?>" collisionType=static > |
---|
[7561] | 99 | <attached> |
---|
[7573] | 100 | <Model position="0,0,0" scale=15 mesh="ast<?lua print( math.mod(i*13+1,6) + 1) ?>.mesh"> |
---|
[9348] | 101 | </Model> |
---|
[7561] | 102 | </attached> |
---|
[7585] | 103 | <collisionShapes> |
---|
| 104 | <BoxCollisionShape halfExtents="45,100,45" position = "0,0,0" /> |
---|
| 105 | </collisionShapes> |
---|
[7561] | 106 | </StaticEntity> |
---|
[7556] | 107 | |
---|
[8179] | 108 | <StaticEntity position="<?lua print(y) ?>,-200,<?lua print(z) ?>" scale="<?lua print(j * 2) ?>" collisionType=static > |
---|
[7561] | 109 | <attached> |
---|
| 110 | <Model position="0,0,0" scale=15 mesh="ast<?lua print( math.mod(i*17,6) + 1) ?>.mesh"> |
---|
[9348] | 111 | </Model> |
---|
[7561] | 112 | </attached> |
---|
[7585] | 113 | <collisionShapes> |
---|
| 114 | <BoxCollisionShape halfExtents="45,100,45" position = "0,0,0" /> |
---|
| 115 | </collisionShapes> |
---|
[7561] | 116 | </StaticEntity> |
---|
| 117 | |
---|
[7596] | 118 | <!-- ---------Top Asteroid----------- --> |
---|
[8179] | 119 | <StaticEntity position="<?lua print(y) ?>,300,<?lua print(z) ?>" scale="<?lua print(j * 2.1) ?>" pitch="90" roll="180" yaw="<?lua print(-90+i*360/max) ?>" collisionType=static > |
---|
[7596] | 120 | <attached> |
---|
| 121 | <Model position="0,0,0" scale=25 mesh="ast6.mesh"> |
---|
[9348] | 122 | </Model> |
---|
[7596] | 123 | </attached> |
---|
| 124 | <collisionShapes> |
---|
[7603] | 125 | <BoxCollisionShape halfExtents="50,140,30" position="0,0,0"/> |
---|
[7596] | 126 | </collisionShapes> |
---|
| 127 | </StaticEntity> |
---|
[7573] | 128 | |
---|
| 129 | |
---|
[7561] | 130 | <?lua end ?> |
---|
| 131 | |
---|
[7556] | 132 | </Scene> |
---|
| 133 | </Level> |
---|
| 134 | |
---|
[7561] | 135 | |
---|