IsMultiplayer

From Zandronum Wiki
Revision as of 22:57, 12 October 2016 by Striker (talk | contribs) (Made new page for IsNetworkGame, replacing the old "IsMultiplayer" page which is no longer valid.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
This article documents a Zandronum-specific ACS feature which may not be supported by ZDoom and its other child ports.

int IsNetworkGame (void)

Usage

This function checks if the game is an online game (being emulated by the Multiplayer Console Command does not count). It bears little relationship to the SinglePlayer and {{{2}}} functions, except insofar as those will only report the game as singleplayer if it is offline Cooperative without multiplayer emulation.

Bugs

No known issues, however old ACC builds used to call this PlayerOnTeam.

Examples

Script 1 Enter
{
    if (IsNetworkGame())
    {
        Print(s: "Isn't multiplayer fun?");
    }
}