-
Notifications
You must be signed in to change notification settings - Fork 0
clientOwner
ffredyk edited this page Jul 23, 2026
·
1 revision
Scheduler Management
Nular — clientOwner.
clientOwner
Returns the numeric ID of the current scheduler. This is the Arma SQF compatibility name for currentScheduler. In Arma, clientOwner returns the client ID of the machine where the command is executed. In SQ#, this maps to the scheduler ID.
Identical to currentScheduler. Both commands return the same value — use whichever matches your convention.
Same implementation as currentScheduler. Returns the scheduler ID from the VM execution context.
_myId = clientOwner; // e.g., 1
systemChat f"Client owner: {_myId}";ReadOnly — pure query.
- currentScheduler — same value, non-compat name
- allSchedulers — list all scheduler IDs
- isServer — check if server
- 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