Changeset 10767 for code/branches/campaignHS15
- Timestamp:
- Nov 5, 2015, 9:48:41 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/campaignHS15/data/levels/Campaign1.oxw
r10766 r10767 43 43 allies = 3 44 44 45 --[[ Coordinates . NOTE: Indexing starts at 1 in lua! Don´t forget to adapt the for loops, too! ]]--45 --[[ Coordinates in (y,z,x). NOTE: Indexing starts at 1 in lua! Don´t forget to adapt the for loops, too! ]]-- 46 46 cCenter = {0, 0, 0} 47 cSpawn = {0, -50, 0} 48 cUnit = {3000, -2000, 0} 49 cA = {5000, -3000, 0} 50 cB = {-5000, -3000, 0} 51 cC = {0, -2300, 0} 52 dStation = {0, 1, 0} 53 cNewShip = {4100, -2100, 0} 54 cFPSGround = {0, -2300, 1200} 55 dFPSGround = {0, 0, -1} 56 cFPS = {0, -2300, 1201} 57 cField1 = {2500, 400, 0} 58 cField2 = {-2500, 400, 0} 59 cPlanet1 = {15000, 8000, -2000} 60 cPlanet2 = {-1000, -20000, 4000} 61 rAllies = {3000, -2000} --[[ To be addressed directly, hence r ]]-- 47 cSpawn = {-50, 0, 0} 48 cUnit = {-2000, 0, 3000} 49 cA = {-3000, 0, 5000} 50 cB = {-3000, 0, -5000} 51 cC = {-2300, 0, 0} 52 dStation = {1, 0, 0} 53 cNewShip = {-2100, 0, 4100} 54 cFPSGround = {-2300, 800, 0} 55 cFPS = {-2300, 1000, 0} 56 cField1 = {400, 0, 2500} 57 cField2 = {400, 0, -2500} 58 cPlanet1 = {8000, -2000, 15000} 59 cPlanet2 = {-20000, 4000, -1000} 60 rAllies = {3000, -2000} --[[ To be addressed directly, hence r. Do not permute! ]]-- 62 61 63 62 --[[ Function to print Coordinates. Quotes not included! ]]-- … … 586 585 <EventListener event="dockC" /> 587 586 </execute> 587 <undocking> 588 <EventListener event="undockC" /> 589 </undocking> 588 590 </events> 589 591 <attached> … … 618 620 </SpaceShip> 619 621 620 <!-- FPS Player as destination of dock C -->621 <FpsPlayer team=0 template = "fps" radarname = " First Person Player" position = "<?lua printC(cFPS) ?>">622 <!-- FPS Player as destination of dock C --> 623 <FpsPlayer team=0 template = "fps" radarname = "Cannon Suit" position = "<?lua printC(cFPS) ?>" lookat="<?lua printC(cCenter) ?>"> 622 624 <attached> 623 625 <DockingTarget name="fpsMode" /> 624 626 <DistanceTriggerBeacon name="fpsPlayer" /> 625 627 </attached> 628 <collisionShapes> 629 <BoxCollisionShape position="0,0,0" halfExtents="1,1,1"/> 630 </collisionShapes> 626 631 </FpsPlayer> 627 632 628 <StaticEntity position="<?lua printC(cFPSGround) ?>" direction="<?lua printC(dFPSGround) ?>" collisionType=static mass=100000 friction=0.01 > 633 <!-- Floor for FPS Player --> 634 <StaticEntity position="<?lua printC(cFPSGround) ?>" collisionType=static mass=100000 friction=0.01 > 629 635 <attached> 630 <Model position="0,0,0" mesh="crate.mesh" scale3D="80,80,5" /> 636 <Model position="0,0,0" mesh="crate.mesh" scale3D="80,5,80" /> 637 <Billboard position="320,50,320" material="Flares/ringflare2" colour="0.2,0.4,0.8" /> 638 <DistanceTrigger position="320,50,320" distance="50" target="Pawn" beaconMode="identify" targetname="fpsPlayer" name="undockC"/> 639 <ForceField active=false position="0,0,0" mode="homogen" diameter="600" forcedirection = "0,-500,0" /> 640 <!-- TODO: Invisible boundaries to prevent falling off platform --> 631 641 </attached> 632 642 <collisionShapes> 633 <BoxCollisionShape position="0,0,0" halfExtents=" 80,80,5" />643 <BoxCollisionShape position="0,0,0" halfExtents="400,25,400" /> 634 644 </collisionShapes> 635 645 </StaticEntity> … … 714 724 y = rAllies[2] + math.sin(2*math.pi/allies*(i+1))*100 715 725 ?> 716 <SpaceShip visible=false active=false name="allies<?lua print(k)?>" radarname="Ally" position="<?lua print( x)?>,<?lua print(y)?>,<?lua print(math.pow(-1,i)*100)?>" lookat="0,0,0" team=0>726 <SpaceShip visible=false active=false name="allies<?lua print(k)?>" radarname="Ally" position="<?lua print(y)?>,<?lua print(math.pow(-1,i)*100) ?>,<?lua print(x)?>" lookat="0,0,0" team=0> 717 727 <templates> 718 728 <Template link="spaceshipassff" /> … … 747 757 y = math.sin(math.pi/(enemies + 3)*(i+1))*1500 748 758 ?> 749 <SpaceShip visible=false active=false name="attackers<?lua print(k)?>" radarname="Attacker" position="<?lua print( x)?>,<?lua print(y)?>,<?lua print(math.pow(-1,i)*250)?>" lookat="0,0,0" team=1>759 <SpaceShip visible=false active=false name="attackers<?lua print(k)?>" radarname="Attacker" position="<?lua print(y)?>,<?lua print(math.pow(-1,i)*250) ?>,<?lua print(x)?>" lookat="0,0,0" team=1> 750 760 <templates> 751 761 <Template link="spaceshippirate" /> … … 797 807 y = -math.sin(math.pi*(i+1)/8)*700-3000 798 808 ?> 799 <Billboard position="<?lua print( x) ?>,<?lua print(y) ?>,0" amplitude=1 material="Flares/lensflare" colour="1,1,0.05"/>809 <Billboard position="<?lua print(y) ?>,0,<?lua print(x) ?>" amplitude=1 material="Flares/lensflare" colour="1,1,0.05"/> 800 810 <?lua end ?> 801 811 … … 811 821 y = -math.sin(math.pi*(max+2-i)/8)*700-3000 812 822 ?> 813 <Billboard position="<?lua print( x) ?>,<?lua print(y) ?>,0" amplitude=1 material="Flares/lensflare" colour="1,1,0.05"/>823 <Billboard position="<?lua print(y) ?>,0,<?lua print(x) ?>" amplitude=1 material="Flares/lensflare" colour="1,1,0.05"/> 814 824 <?lua end ?> 815 825
Note: See TracChangeset
for help on using the changeset viewer.