Start
RTS Online Start

RTS Online: Tutorial 1
Creating a tip message
Tutorial 2
Spawning monsters


Creating a tip message that is triggered when the map starts:
This trigger is activated when the map starts. It displays a message on the screen for 3 seconds, and plays a sound.

You could leave off the tagged_immediate function, it's there for completeness.


1) add the start_map function:
-use e1m1 for DOOM, and map01 for DOOM2 -this defines what map the following radiustrigger is applied to, and the start of this map block
2) add the radiustrigger function:
-set x=0, y=0, and radius=-1, leave high and low z blank -this puts the triggers center at 0,0, and -1 means the radius covers the entire map, and defines the start of this trigger
3) add the tagged_immediate function:
-this makes the trigger active when the map starts
4) add the tip function:
-set text=hello world! (no quotes), displaytime=3, and leave sound=true -this will display hello world! on the screen for three seconds, and will also play the DSTINK sound when active
5) add the end_radiustrigger function:
-this defines the end of this trigger
6) add the end_map function:
-this defines the end of this map block
Your code output should look like this: