<LevelInfo name = "Scriptable Controller Moving and Killing Pawn" description = "Demonstrates moving and killing a drone by using a lua script." tags = "test" screenshot = "emptylevel.png" /> <?lua include("stats.oxo") include("HUDTemplates3.oxo") include("templates/lodInformation.oxt") include("templates/HeavyCruiser.oxt") ?> <?lua include("templates/spaceshipEscort.oxt") include("templates/endurancetest_template.oxt") ?> <Level script="scripts/ScriptableControllerMoveKill.lua"> <templates> <Template link=lodtemplate_default /> </templates> <?lua include("includes/notifications.oxi") ?> <Scene ambientlight = "0.8, 0.8, 0.8" skybox = "Orxonox/Starbox" > <Light type=directional position="0,0,0" direction="0.253, 0.593, -0.765" diffuse="1.0, 0.9, 0.9, 1.0" specular="1.0, 0.9, 0.9, 1.0"/> <SpawnPoint team=0 position="100,0,0" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipescort /> <ScriptableControllerDrone id="dummy" position="0,0,0"> <attached> <Model scale="10" mesh="drone.mesh"/> </attached> <collisionShapes> <BoxCollisionShape position="0,0,0" halfExtents="10, 10, 10" /> </collisionShapes> </ScriptableControllerDrone> </Scene> </Level>