Skip to content

Instantly share code, notes, and snippets.

@elbruno
Created November 14, 2017 23:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elbruno/c1ddaa6f58c634db2e0f8538c8f6b56e to your computer and use it in GitHub Desktop.
Save elbruno/c1ddaa6f58c634db2e0f8538c8f6b56e to your computer and use it in GitHub Desktop.
MalmoLoadMissionFromXmlFile02
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<Mission xmlns="http://ProjectMalmo.microsoft.com" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance" xsi:schemaLocation="http://ProjectMalmo.microsoft.com Mission.xsd">
<About>
<Summary>El Bruno Sample Mission from Xml definition</Summary>
</About>
<ServerSection>
<ServerInitialConditions>
<Time>
<StartTime>1000</StartTime>
<AllowPassageOfTime>false</AllowPassageOfTime>
</Time>
<Weather>clear</Weather>
</ServerInitialConditions>
<ServerHandlers>
<FlatWorldGenerator generatorString="3;1*minecraft:lava,1*minecraft:bedrock,7*minecraft:dirt,1*minecraft:ice,1*minecraft:grass;2;mineshaft(chance=0.01),lake"/>
<ServerQuitFromTimeUp description="" timeLimitMs="10000"/>
<ServerQuitWhenAnyAgentFinishes description=""/>
</ServerHandlers>
</ServerSection>
<AgentSection mode="Survival">
<Name>Valentino</Name>
<AgentStart>
<Placement pitch="0" x="0.5" y="227.0" yaw="0" z="0.5"/>
</AgentStart>
<AgentHandlers>
<ObservationFromFullStats/>
<VideoProducer want_depth="true">
<Width>640</Width>
<Height>480</Height>
</VideoProducer>
<ObservationFromGrid>
<Grid name="floor3x3">
<min x="-1" y="-1" z="-1"/>
<max x="1" y="-1" z="1"/>
</Grid>
</ObservationFromGrid>
<ObservationFromRay/>
<ObservationFromNearbyEntities>
<Range name="NearbyEntities"
xrange="10"
yrange="10"
zrange="1"
update_frequency="1"/>
</ObservationFromNearbyEntities>
<ContinuousMovementCommands turnSpeedDegs="180"/>
</AgentHandlers>
</AgentSection>
</Mission>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment