Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4161


Ignore:
Timestamp:
Jul 5, 2006, 10:52:33 AM (18 years ago)
Author:
snellen
Message:

update

Location:
data/branches/presentation/scripts
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • data/branches/presentation/scripts/attractor.lua

    r4153 r4161  
    1313
    1414
    15 created = false
     15created = true
    1616function tick(timestep)
    1717
  • data/branches/presentation/scripts/floorguy.lua

    r4080 r4161  
    55programRoute = true
    66height = -10
     7
    78
    89function tick(timestep)
     
    2728floorguy:runTo( 809.810425, height, 771.055420)
    2829floorguy: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)
    3940programRoute = false
    4041end
     42
    4143
    4244if floorguy:finalGoalReached() then
  • data/branches/presentation/scripts/guard.lua

    r4151 r4161  
    4242end
    4343
    44 if dist( playerX,playerY,playerZ,167.361526,29,483.163818 ) < 200 then
     44if dist( playerX,playerY,playerZ,167.361526,29,483.163818 ) < 150 then
    4545playerInLock = true
    4646end
  • data/branches/presentation/scripts/prisoner.lua

    r4151 r4161  
    322322thisZ = prisoner:getAbsCoorZ()
    323323
    324 if dist( thisX,thisY,thisZ, 3.175952, 29, -1610.220093) < 60 then
     324if dist( thisX,thisY,thisZ, 1113.230103, height, -1839.722534) < 10 then
    325325prisoner:hide()
    326326return true
     
    372372end
    373373
    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
     375return hangarReached
     376end
  • data/branches/presentation/scripts/secondguard.lua

    r4106 r4161  
    5555end
    5656
    57 if dist( playerX,playerY,playerZ,167.361526,29,483.163818 ) < 200 then
     57if dist( playerX,playerY,playerZ,161.76,49,408.87 ) < 50 then
    5858letsgo = true
    5959end
Note: See TracChangeset for help on using the changeset viewer.