Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: data/trunk/scripts/staumanndli.lua @ 4407

Last change on this file since 4407 was 4164, checked in by snellen, 18 years ago

update

File size: 419 bytes
Line 
1-- Get objects from orxonox
2thisscript:addObject("GenericNPC","staumanndli")
3thisscript:addObject("FPSPlayer", "Player")
4
5programRoute = true
6height = -10
7
8function tick(timestep)
9
10if programRoute then
11staumanndli:walkTo(579,  373 , -114 )
12staumanndli:walkTo(64,  373,  -197 )
13staumanndli:walkTo(64,  373,  -197 )
14programRoute = false
15end
16
17if floorguy:finalGoalReached() then
18programRoute = true
19end
20
21
22return false
23end
Note: See TracBrowser for help on using the repository browser.