Unable to get new menu options to appear in Doors menu #453
tommygustafson
started this conversation in
General
Replies: 1 comment
-
@tommygustafson Are you saying those options are just not in your art? Your menu specifies the art file:
You'll need to use a ANSI editor such as https://blocktronics.github.io/moebius/ or PablowDraw, etc. and update the art to reflect. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone,
This is likely a very dumb question, but I am unable to see the other Door menu items in the default door menu aside from G and Q. I have included my door menu hjson file below, I was attempting to test out the BBSLink example. Any hints would be greatly appreciated.
{
menus: {
doorsMainMenu: {
desc: Doors Menu
art: DOORMNU
prompt: menuCommand
config: {
interrupt: realtime
}
submit: [
{
value: { command: "TW" }
action: @menu:doorTradeWars2002BBSLinkExample
}
{
value: { command: "G" }
action: @menu:fullLogoffSequence
}
{
value: { command: "Q" }
action: @systemMethod:prevMenu
}
//
// The system supports many ways of launching doors including
// modules for DoorParty!, BBSLink, etc.
//
// Below are some examples. See the documentation for more info.
//
{
value: { command: "ABRACADABRA" }
action: @menu:doorAbracadabraExample
}
{
value: { command: "DP" }
action: @menu:doorPartyExample
}
{
value: { command: "CN" }
action: @menu:doorCombatNetExample
}
{
value: { command: "EXODUS" }
action: @menu:doorExodusCataclysm
}
]
}
}
Beta Was this translation helpful? Give feedback.
All reactions