share/hedgewars/Data/Scripts/Multiplayer/Construction_Mode.lua
changeset 11729 2d57eed66d41
parent 11728 373150be0356
child 11730 8cc9c8a43dcc
equal deleted inserted replaced
11728:373150be0356 11729:2d57eed66d41
    24 ------------------------------------------------------------------------------
    24 ------------------------------------------------------------------------------
    25 -- SCRIPT PARAMETER
    25 -- SCRIPT PARAMETER
    26 ------------------------------------------------------------------------------
    26 ------------------------------------------------------------------------------
    27 -- The script parameter can be used to configure the energy
    27 -- The script parameter can be used to configure the energy
    28 -- of the game. It is a comma-seperated list of key=value pairs, where each
    28 -- of the game. It is a comma-seperated list of key=value pairs, where each
    29 -- key is a word and each value is an negative integer between 0 and 4294967295.
    29 -- key is a word and each value is an integer between 0 and 4294967295.
    30 --
    30 --
    31 -- Possible keys:
    31 -- Possible keys:
    32 --- initialenergy: Amount of energy that each team starts with (default: 550)
    32 --- initialenergy: Amount of energy that each team starts with (default: 550)
    33 --- energyperround: Amount of energy that each team gets per round (default: 50)
    33 --- energyperround: Amount of energy that each team gets per round (default: 50)
    34 --- maxenergy: Maximum amount of energy each team can hold (default: 1000).
    34 --- maxenergy: Maximum amount of energy each team can hold (default: 1000)
    35 
    35 
    36 -- Example: “initialenergy=750, maxenergy=2000” starts thee game with 750 energy
    36 -- Example: “initialenergy=750, maxenergy=2000” starts thee game with 750 energy
    37 -- and sets the maximum energy to 2000
    37 -- and sets the maximum energy to 2000
    38 
    38 
    39 ------------------------------------------------------------------------------
    39 ------------------------------------------------------------------------------