Difference between revisions of "Map scripts"

From OdaWiki
m (Overview)
m (Overview)
Line 1: Line 1:
 
== Overview ==
 
== Overview ==
''startmapscript'' and ''endmapscript'' are ways of setting gameplay variables, or [[CVARS]], for the start and end of a map.
+
'''startmapscript''' and '''endmapscript''' are ways of setting gameplay variables, or [[CVARS]], for the start and end of a map.
  
 
== Syntax ==
 
== Syntax ==

Revision as of 18:52, 6 August 2008

Overview

startmapscript and endmapscript are ways of setting gameplay variables, or CVARS, for the start and end of a map.

Syntax

A little knowledge of scripting/programming will help when creating map scripts.

if

if is a widely used conditional statement in both programming and scripting, here is an example on its use in a map script:

if CVAR1 eq VALUE1 CVAR2 VALUE2

Basically, this says "if the value of CVAR1 is equal to VALUE1 then set CVAR2 to VALUE2"

Usage

These scripts are entered into either your odasrv.cfg, when odasrv is running by setting startmapscript/endmapscript to the script line, startmapscript and endmapscript can also be set to execute an external file containing a script, for example:

set startmapscript "+exec script.cfg"

Now for an example, say we wanted to set the skill to 3 for the next level at the end of MAP01.

if curmap eq MAP01 SKILL 3

If you wanted to change the hostname of the server when the map changes to MAP30

if curmap eq MAP30 hostname "join if you dare"

See Also

External Links