Add description and example of using SubKeys as items as per P.R. 1757 https://github.com/alliedmodders/sourcemod/pull/1757
← Older revision
Revision as of 16:51, 18 February 2024
Line 35:
Line 35:
"item" "sm_votekick"
"item" "sm_votekick"
"item" "sm_voteban"
"item" "sm_voteban"
+
}
+
}</pre>
+
+
=Alternate Layout=
+
Alternatively instead of using "item" keys SubKeys can be used with the name of the SubKey being what the values of the "item" key would have been. It is important to note that TopMenu configs are not infinitely recursive, so this SubKey layout works at the top level but other keys further within will not be a part of the TopMenus config. Instead the ability to use these SubKeys as items is intended to allow one file to be used as both a TopMenu configuration file (e.g. <code>LoadTopMenuConfig</code>) and a normal KeyValues file (e.g. <code>FileToKeyValues</code>), with all the relevant KeyValue information inside each SubKey.
+
+
+
<pre>
+
"Menu"
+
{
+
"PlayerCommands"
+
{
+
"sm_slay"
+
{
+
"adminflag" "f"
+
}
+
}
+
+
"ServerCommands"
+
{
+
"sm_map"
+
{
+
"adminflag" "g"
+
}
+
}
+
+
"VotingCommands"
+
{
+
"sm_cancelvote"
+
{
+
"adminflag" "k"
+
}
}
}
}</pre>
}</pre>
[[Category:SourceMod Documentation]]
[[Category:SourceMod Documentation]]