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
|
# HyBBX menu layout — areas, per-level menu, and full index.
# Command help, aliases, access, and account rights: commands.yaml (loaded after).
meta:
menu_header: "HyBBX commands /help <cmd> for more"
index_header: "HyBBX command-index /help <cmd> for more"
alias_header: "HyBBX aliases /help <cmd> for more"
user_groups:
- Sysop
- Admin
- Mod
- User
- Guest
areas:
- label: General
commands: [help, menu, index, alias, news, banner, motd, rules, who, users, session, version]
- label: Screen
commands: [clear, echo]
- label: Areas
commands: [leave, main, chat, conference, mail, proxymail, proxychat, exit]
- label: Account
commands: [login, changeme, register, deleteme]
- label: Admin
commands: [usercreate, activate, changeuser, promote, demote, delete]
- label: Monitor
commands: [monitor]
- label: Entertain
commands: [chess, aichat]
- label: Sysop
commands: [deleteuser, shutdown, restart, broadcast]
menu:
Guest:
- General
- Screen
- Account
- Areas
User:
- General
- Screen
- Areas
- Account
- Entertain
Mod:
- General
- Screen
- Areas
- Account
- Entertain
Admin:
- General
- Screen
- Areas
- Account
- Admin
- Entertain
Sysop:
- General
- Screen
- Areas
- Account
- Admin
- Monitor
- Entertain
- Sysop
index:
- General
- Screen
- Areas
- Account
- Admin
- Monitor
- Entertain
- Sysop
|