Mod API Reference:ServerGame

From Warzone Wiki
Jump to: navigation, search

ServerGame: While GameWL contains public information about a game, ServerGame contains private information that's never shared with clients. This structure is only available in Server hooks.

Functions

  • SetPlayerResource(pid PlayerID, type ResourceType (enum), newValue integer): Used to set the resources of a player, such as the amount of gold they have in a commerce game.
    • This will set their resource value immediately, and update their displayed value on the player's screen so they can spend it immediately for their upcoming turn.
    • When this function is used, the next turn will start with a GameOrderEvent which tells players that a mod updated their resource value. This way, there's still a log that something happened in history.
    • Note that if you reduce a player's gold value after they've committed orders, it may mess up their turn as they won't be able to spend as much gold as they were expecting, leading to failed deployments and failed attacks. Take care to only do this if the player approves it.
    • Note that this function should never be called from an AdvanceTurn hook. Doing so will produce an error message. If you wish to change a player's resource from an AdvanceTurn hook, instead insert a GameOrderEvent to change it.
    • Note that this function should never be called while a game is in territory distribution. Player's don't officially have gold until after territories are distributed, so wait until then to start modifying gold.
Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox