Changeset 4161
- Timestamp:
- Jul 5, 2006, 10:52:33 AM (18 years ago)
- Location:
- data/branches/presentation/scripts
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
data/branches/presentation/scripts/attractor.lua
r4153 r4161 13 13 14 14 15 created = false15 created = true 16 16 function tick(timestep) 17 17 -
data/branches/presentation/scripts/floorguy.lua
r4080 r4161 5 5 programRoute = true 6 6 height = -10 7 7 8 8 9 function tick(timestep) … … 27 28 floorguy:runTo( 809.810425, height, 771.055420) 28 29 floorguy:runTo( 794.455383, height, 779.180725) 29 floorguy:runTo( 779.520386, height, 773.730957)30 floorguy:runTo( 769.395630, height, 762.138306)31 floorguy:runTo( 761.172668, height, 749.739258)32 floorguy:runTo( 756.049500, height, 736.094116)33 floorguy:runTo( 755.904297, height, 648.224854)34 floorguy:runTo( 742.674744, height, -243.343140)35 floorguy:runTo( 742.312805, height, -273.083893)36 floorguy:runTo( 741.927856, height, -304.735474)37 floorguy:runTo( 741.548035, height, -335.971069)38 floorguy:runTo( 741.181824, height, -366.028503)30 --floorguy:runTo( 779.520386, height, 773.730957) 31 --floorguy:runTo( 769.395630, height, 762.138306) 32 --floorguy:runTo( 761.172668, height, 749.739258) 33 --floorguy:runTo( 756.049500, height, 736.094116) 34 --floorguy:runTo( 755.904297, height, 648.224854) 35 --floorguy:runTo( 742.674744, height, -243.343140) 36 --floorguy:runTo( 742.312805, height, -273.083893) 37 --floorguy:runTo( 741.927856, height, -304.735474) 38 --floorguy:runTo( 741.548035, height, -335.971069) 39 --floorguy:runTo( 741.181824, height, -366.028503) 39 40 programRoute = false 40 41 end 42 41 43 42 44 if floorguy:finalGoalReached() then -
data/branches/presentation/scripts/guard.lua
r4151 r4161 42 42 end 43 43 44 if dist( playerX,playerY,playerZ,167.361526,29,483.163818 ) < 200 then44 if dist( playerX,playerY,playerZ,167.361526,29,483.163818 ) < 150 then 45 45 playerInLock = true 46 46 end -
data/branches/presentation/scripts/prisoner.lua
r4151 r4161 322 322 thisZ = prisoner:getAbsCoorZ() 323 323 324 if dist( thisX,thisY,thisZ, 3.175952, 29, -1610.220093) < 60 then324 if dist( thisX,thisY,thisZ, 1113.230103, height, -1839.722534) < 10 then 325 325 prisoner:hide() 326 326 return true … … 372 372 end 373 373 374 if hangarReached and not spaceShipReached then 375 spaceShipReached = goToSpaceship(timestep) 376 end 377 378 if spaceShipReached and not spaceShipEntered then 379 spaceShipEntered = enterSpaceship(timestep) 380 end 381 382 if spaceShipEntered then 383 return true 384 end 385 386 return false 387 end 374 375 return hangarReached 376 end -
data/branches/presentation/scripts/secondguard.lua
r4106 r4161 55 55 end 56 56 57 if dist( playerX,playerY,playerZ,16 7.361526,29,483.163818 ) < 200then57 if dist( playerX,playerY,playerZ,161.76,49,408.87 ) < 50 then 58 58 letsgo = true 59 59 end
Note: See TracChangeset
for help on using the changeset viewer.