This wiki was in read-only mode for many years, but can now be edited again. A lot of information will need to be updated.

Options (object): Difference between revisions

From BZFlagWiki
Jump to navigation Jump to search
TD-Linux (talk | contribs)
m Options(object) moved to Options (object): Picky me... I want a space
m Category:Map_making to Category:Map Making
Line 3: Line 3:
==Code==
==Code==
The code for a world object is as follows
The code for a world object is as follows
 
{|
|
  options
  options
   -set _tankSpeed 36
   -set _tankSpeed 36
Line 9: Line 10:
   +f GM{5} +f SW{5}
   +f GM{5} +f SW{5}
  end
  end
 
|}
Valid parameters for a world object are nearly any command line option that is valid for the version of [[BZFS]]. Some security sensitive options, such as '''-password''' and '''-groupdp''' are ignored in the Options object. '''-set''' can be used to set the value of any [[BZDB]] [[Server Variables]] desired.
Valid parameters for a world object are nearly any command line option that is valid for the version of [[BZFS]]. Some security sensitive options, such as '''-password''' and '''-groupdp''' are ignored in the Options object. '''-set''' can be used to set the value of any [[BZDB]] [[Server Variables]] desired.


Line 20: Line 21:
The options object is only fully supported by the [[BZWTools]] blender plug-in.
The options object is only fully supported by the [[BZWTools]] blender plug-in.


[[Category:Map_making]]
[[Category:Map Making]]
[[Category:Map_Objects]]
[[Category:Map_Objects]]

Revision as of 20:07, 11 March 2007

A Options object is a BZW map structure that defines various options for a server to use when running a map. These options are the same command line options that are passed to the BZFS at start up.

Code

The code for a world object is as follows

options
 -set _tankSpeed 36
 -j +r -ms 3
 +f GM{5} +f SW{5}
end

Valid parameters for a world object are nearly any command line option that is valid for the version of BZFS. Some security sensitive options, such as -password and -groupdp are ignored in the Options object. -set can be used to set the value of any BZDB Server Variables desired.

The options object can only be specified once in a map.

History

The options object was added in v2.0.0.

Editor Support

The options object is only fully supported by the BZWTools blender plug-in.