Difference between revisions of "OnMapChange"

From Soldat Community Wiki
Jump to: navigation, search
(Created page with "===From the Scripting Manual=== ''procedure OnMapChange(NewMap: string);'' '''Parameter Info:''' NewMap (String): Name of the new map that has been loaded. '''D...")
 
Line 10: Line 10:
 
   NOTE: In 2.6.4, this will be called when the server first starts.
 
   NOTE: In 2.6.4, this will be called when the server first starts.
  
==External Links==
+
==See also==
* [http://enesce.com/help/index.html?Events/OnMapChange.html Scripting Manual page for OnMapChange]
+
* [[CurrentMap]]
 +
* [[NextMap]]
  
 
[[Category:Server Scripting]][[Category:Server Scripting Events]]
 
[[Category:Server Scripting]][[Category:Server Scripting Events]]

Revision as of 10:56, 13 March 2013

From the Scripting Manual

 procedure OnMapChange(NewMap: string);
 
 Parameter Info:
  NewMap (String): Name of the new map that has been loaded.
 
 Description:
  This procedure will be called every time the current map on the server changes.
  Note this event occurs AFTER the map has successfully loaded.
  NOTE: In 2.6.4, this will be called when the server first starts.

See also