blob: 534b5d9fb5eee1b2ce69e69e9217ccc58c7cb1b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?xml version="1.0"?>
<World>
<style background="0" bgm="assets/music/embark.wav" folder="assets/style/classic/"/>
<generation type="Random" width="500"/>
<link right="playerSpawnHill2.xml"/>
<hill peakx="0" peaky="1000" width="50"/>
<weather>Rainy</weather>
<time>3400</time>
<spawnx>-880</spawnx>
<trigger spawnx="-850" id="first" notext="1"/>
<npc name="Guy" hasDialog="true" spawnx="0" canMove="false"/>
</World>
<Trigger id="first">Guy</Trigger>
<Dialog name="Guy">
<text id="0" nextid="1">
<gotox>-600</gotox>
</text>
<text id="1">
...
<gotox>1000</gotox>
<set id="Slow" value="0"/>
<set id="canSprint" value="1"/>
</text>
</Dialog>
|