KickFromGame: Difference between revisions

From Zandronum Wiki
No edit summary
(Link to BanFromGame)
Tag: Source edit
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{ACSWarning}}
{{ACSWarning}}
int '''KickFromGame''' (int ''player'', str ''reason'')
bool '''KickFromGame''' (int ''player'', str ''reason'')


*''player'': player to be kicked to spectators
== Usage ==
*''reason'': reason given
Forces the given player to spectate with the given reason. This is equivalent to the <tt>kickfromgame</tt> and <tt>kickfromgame_idx</tt> [[Console Commands|console commands]].


Forces the given player to spectate with the given reason. Returns 1 on success, 0 on failure.
=== Parameters ===
* ''player'': The player to be kicked to spectator.
* ''reason'': The reason that will be displayed.


[[Category: ACS Functions]]
=== Return value ===
Returns true if the player was forced to spectate; false otherwise.
 
== Examples ==
{{noexamples}}
 
== See also ==
* [[BanFromGame]]
 
[[Category: ACS functions]]

Latest revision as of 00:06, 29 January 2024

This article documents a Zandronum-specific ACS feature which may not be supported by ZDoom and its other child ports.

bool KickFromGame (int player, str reason)

Usage

Forces the given player to spectate with the given reason. This is equivalent to the kickfromgame and kickfromgame_idx console commands.

Parameters

  • player: The player to be kicked to spectator.
  • reason: The reason that will be displayed.

Return value

Returns true if the player was forced to spectate; false otherwise.

Examples

This article lists no examples, please add one.

See also