2 - World Map editing for SuperTux -
3 http://super-tux.sf.net/
5 Last update: September 4, 2004
7 This document describes how to edit a world map.
9 = EDITING WORLDMAP TILES =
11 To edit a World Map, please use FlexLay. Thought it might have problems with
12 the editing of level and special tiles, since it isn't sync with CVS.
16 These things are always changing, so if even 0.1.x has something like something
17 described here, it might have a different name or be used in a different way.
19 Stuff prefixed by a ';' are comments.
21 ; This is a comment! :)
23 = MAKING THE HOLE FOR A LEVEL =
28 ; X and Y position [NECESSARY]
32 ; Filename of the level [NECESSARY]
33 (name "file_name.stl")
35 ; Flip the level vertically - default: false
38 ; Show this text file after completing this level
39 (extro-filename "filename")
41 ; Go to this world after completing this level
42 (next-worldmap "worldmap.stwt)
44 ; Exit world map after completing this level
47 ; Disable auto walking after completing the level - default: false
50 ) ; end of level group
53 = AVAILABLE SPECIAL TILES =
55 ; Opening special-tile group
58 ; X and Y position [NECESSARY]
62 ; Add a message tile. You can also use this together with a teleporter.
63 (map-message "Hello World!"
65 ; Instead of showing a fix message, show while the player
66 ; passes by [NEEDS: map-message]- default: false
69 ; Apply action only in this/these direction(s) [WORKS FOR: passive-message] -
70 ; default: true for all - possible values: north/south/east/west.
71 ; More than one can be used with a separator or not
72 (apply-to-direction "north-east")
74 ; Add a teleporter tile to
78 ; Don't show this tile [WORKS FOR: teleporter, map-message]
81 ) ; end of special-tile group