Players can vote for various actions like changing missions, kicking players, or electing admins. Configure these settings to control how voting works on your server.
Configuring Voting Settings
- Navigate to the Wabbanode Control Panel and Stop your server.

- Click the Settings tab and select Arma 3 Server.cfg.

- Locate/add the voting settings and make any desired changes.

- Click Save and Start your server.
Voting Configuration
Add these lines to your server.cfg:
voteMissionPlayers = 1;
voteThreshold = 0.33;
Settings Explained
voteMissionPlayers
Minimum number of players required before the mission selection screen appears.
| Value | Description |
|---|---|
1 | Mission vote available with 1+ player (default) |
3 | Requires at least 3 players for mission voting |
voteThreshold
Percentage of votes required for a vote to pass.
| Value | Description |
|---|---|
0.33 | 33% of players must vote yes (default) |
0.5 | 50% of players must vote yes |
999 | Effectively disables voting |
Disabling Voting
To completely disable player voting:
voteThreshold = 999;
Advanced: Specific Vote Permissions
You can control which vote commands are available:
allowedVoteCmds[] = {
{"admin", false, false, 0.5},
{"kick", false, true, 0.5},
{"missions", false, false},
{"mission", false, false},
{"restart", false, false},
{"reassign", false, false}
};
Each entry contains:
- Command name
- Pre-mission voting allowed (true/false)
- Post-mission voting allowed (true/false)
- Vote threshold for this specific command (optional)
Tips
- Set
voteThresholdto999if you want only admins to control missions - Lower thresholds make it easier for small groups to pass votes
- Consider your server size when setting these values
Your voting settings are now configured. Players can now participate in server decisions according to your rules.

