-
Notifications
You must be signed in to change notification settings - Fork 0
systemChat
ffredyk edited this page Jul 23, 2026
·
1 revision
Output (Arma Compat)
Unary — systemChat <value>.
systemChat <any>
Sends a system chat message. This is an Arma SQF compatibility command — fires the host's OnPrint event with a [CHAT] prefix. The host handles rendering (chat panel, console, etc.).
Converts argument to string, prepends "[CHAT] ", fires OnPrint. Registered by DeclareArmaCompatCommands().
systemChat "Player joined the server";
systemChat f"{_killer} eliminated {_victim}";systemChat "=== Round starting in 10 seconds ===";
systemChat "Server restarting in 5 minutes";if (_debugMode) then {
systemChat f"[DEBUG] AI count: {count _aiUnits}";
};_scores = [10, 45, 23, 67];
_scores forEach {
systemChat f"Score: {_x}";
};Thread-safe. The OnPrint event fires synchronously.
- Getting Started
- Language Guide
- Type System
- Control Flow
- Functions & Code
- Strings & Text
- Arrays & Collections
- Concurrency
- Promise System
- Thread Safety
- Host API & Embedding
- CLI Tool
- Bytecode Reference
- Multiplayer
- Syntax Sugar
- Optimization Guide
- Benchmarks
- count
- select
- pushBack
- append
- deleteAt
- deleteRange
- resize
- reverse
- sort
- find
- in
- forEach
- freeze
- thaw
- isFrozen
- currentScheduler
- clientOwner
- allSchedulers
- schedulerName
- schedulerExists
- schedulerBudget
- setSchedulerBudget
- fiberCount
- readyFiberCount
- waitingFiberCount
- schedulerLoad
- sendTo