switch
From Bohemia Interactive Community
| Editors, please check Policy: Scripting Command Page Syntax. |
Click on the images for descriptions
Introduced in
- Game:
- Armed Assault
- Version:
- 1.00
Description
- Description:
- See switch do
Syntax
- Syntax:
- switch exp
- Parameters:
- exp: Anything
- Return Value:
- Switch Type
Examples
- Example 1:
switch (_a) do {case 1: {block}; case 2 : {block}; default {block};}- Example 2:
_color=switch (side player) do {
case west: {"ColorGreen"};
case east: {"ColorRed"};
};
Additional Information
- Multiplayer:
- Behaviour unknown.
- See also:
- Control Structures

