Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 29, 2010, 8:41:19 PM (14 years ago)
Author:
dafrick
Message:

Tested and cleaned all levels (except for the ones that someone is working on at the moment).
Two levels had old Pickups in them, they have been updated to work properly now.
All levels except one are working. The one that isn't is the presentationHS09b level, which crashes due to LOD.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation3/data/levels/waypoints.oxw

    r5781 r7007  
    8585    </SpaceShip>
    8686
    87 <?lua
    88 for i = 1, 5, 1
    89 do ?>
    90     <SpaceShip position="1500,<?lua print(-2000 + 50*i) ?>,200" lookat="0,0,0" name=polonaise<?lua print(i+1) ?> >
    91       <templates>
    92         <Template link=spaceshipassff />
    93       </templates>
    94       <controller>
    95         <WaypointPatrolController alertnessradius=1000 team=12>
    96           <waypoints>
    97             <Attacher target=polonaise<?lua print(i) ?> deletewithparent=false />
    98           </waypoints>
    99         </WaypointPatrolController>
    100       </controller>
    101     </SpaceShip>
    102 <?lua
    103 end
    104 ?>
    105 
     87    <?lua
     88      for i = 1, 5, 1 do
     89    ?>
     90      <SpaceShip position="1500,<?lua print(-2000 + 50*i) ?>,200" lookat="0,0,0" name=polonaise<?lua print(i+1) ?> >
     91        <templates>
     92          <Template link=spaceshipassff />
     93        </templates>
     94        <controller>
     95          <WaypointPatrolController alertnessradius=1000 team=12>
     96            <waypoints>
     97              <Attacher target=polonaise<?lua print(i) ?> deletewithparent=false />
     98            </waypoints>
     99          </WaypointPatrolController>
     100        </controller>
     101      </SpaceShip>
     102    <?lua end ?>
    106103
    107104    <SpaceShip position="-1500,-2000,200" lookat="0,0,0" name=attack1>
     
    118115    </SpaceShip>
    119116
    120 <?lua
    121 for i = 1, 5, 1
    122 do ?>
    123     <SpaceShip position="-1500,<?lua print(-2000 + 50*i) ?>,200" lookat="0,0,0" name=attack<?lua print(i+1) ?> >
    124       <templates>
    125         <Template link=spaceshipassff />
    126       </templates>
    127       <controller>
    128         <WaypointPatrolController alertnessradius=1000 team=13>
    129           <waypoints>
    130             <Attacher target=attack<?lua print(i) ?> deletewithparent=false />
    131           </waypoints>
    132         </WaypointPatrolController>
    133       </controller>
    134     </SpaceShip>
    135 <?lua
    136 end
    137 ?>
     117    <?lua
     118      for i = 1, 5, 1 do
     119    ?>
     120      <SpaceShip position="-1500,<?lua print(-2000 + 50*i) ?>,200" lookat="0,0,0" name=attack<?lua print(i+1) ?> >
     121        <templates>
     122          <Template link=spaceshipassff />
     123        </templates>
     124        <controller>
     125          <WaypointPatrolController alertnessradius=1000 team=13>
     126            <waypoints>
     127              <Attacher target=attack<?lua print(i) ?> deletewithparent=false />
     128            </waypoints>
     129          </WaypointPatrolController>
     130        </controller>
     131      </SpaceShip>
     132    <?lua end ?>
    138133
    139134<!--
    140 <?lua
    141 for i = 1, 50, 1
    142 do ?>
    143     <SpaceShip position="<?lua print(math.random() * 1000 - 500) ?>,<?lua print(math.random() * 1000 - 500) ?>,<?lua print(math.random() * 1000 - 500) ?>" lookat="0,0,0" >
    144       <templates>
    145         <Template link=spaceshipassff />
    146       </templates>
    147       <controller>
    148         <AIController />
    149       </controller>
    150     </SpaceShip>
    151 <?lua
    152 end
    153 ?>
     135    <?lua
     136      for i = 1, 50, 1 do
     137    ?>
     138      <SpaceShip position="<?lua print(math.random() * 1000 - 500) ?>,<?lua print(math.random() * 1000 - 500) ?>,<?lua print(math.random() * 1000 - 500) ?>" lookat="0,0,0" >
     139        <templates>
     140          <Template link=spaceshipassff />
     141        </templates>
     142        <controller>
     143          <AIController />
     144        </controller>
     145      </SpaceShip>
     146    <?lua end ?>
    154147-->
    155148
Note: See TracChangeset for help on using the changeset viewer.