-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgame.conf
87 lines (63 loc) · 2.57 KB
/
game.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Somun game instance configuration file
# All variables have default values. You can override them here.
# The name of the game instance displayed to users.
game_name = TestGame
# The minimum number of players required to start a game.
min_number_of_players = 2
# The maximum number of players allowed in a single game.
max_number_of_players = 2
# The maximum number of turns a game can have.
# Set to 0 for unlimited turns.
max_turn_count = 0
# The maximum duration of each turn in seconds.
max_turn_duration_in_secs = 300
# The maximum number of turns that can be automatically skipped
# before the game ends.
max_autoskip_turn_before_end_game = 3
# The maximum number of active games a player can participate in simultaneously.
max_concurrent_active_games_per_player = 3
# The maximum number of games a player can start in a single day.
max_games_per_day_per_player = 100
# Enables or disables the voting feature for kicking a player from the game.
# 0: Disabled, 1: Enabled
enable_kick_vote = 0
# Enables or disables random matching of players for games.
# 0: Disabled, 1: Enabled
enable_random_matching = 1
# Messaging and social features configuration
# Enable or disable private messages between players.
# 0: Disabled, 1: Enabled
enable_private_messages = 1
# Enable or disable messages in game rooms.
# 0: Disabled, 1: Enabled
enable_room_messages = 1
# Enable or disable messages in the game lobby.
# 0: Disabled, 1: Enabled
enable_lobby_messages = 1
# Enable or disable the friends feature, allowing players to add other players as friends.
# 0: Disabled, 1: Enabled
enable_friends = 1
# Enable or disable the groups feature, allowing players to create and join groups.
# 0: Disabled, 1: Enabled
enable_groups = 1
# Enable or disable invitations for friends or groups.
# 0: Disabled, 1: Enabled
enable_invitations = 1
# Enable or disable the blacklist feature, allowing players to block other players.
# 0: Disabled, 1: Enabled
enable_blacklist = 1
# Enable or disable guest login, allowing players to play without creating an account.
# 0: Disabled, 1: Enabled
enable_guest_login = 1
# The maximum number of private messages a player can have.
max_private_msg_count = 100
# The daily limit for sending private messages.
daily_private_msg_send_limit = 100
# The maximum number of friends a player can have.
max_friends_count = 100
# The maximum number of groups a player can create or join.
max_groups_count = 100
# The maximum number of invitations a player can send.
max_invitations_count = 100
# The maximum number of players a player can add to their blacklist.
max_blacklist_size = 100