Difference between revisions of "DCS func addCommand"
From DCS World Wiki - Hoggitworld.com
Gillogical (talk | contribs) |
Gillogical (talk | contribs) |
||
Line 61: | Line 61: | ||
The sample below will generate a base menu accessed via F10 called "Display Requests" for all users with two sub-items for a negative or positive response | The sample below will generate a base menu accessed via F10 called "Display Requests" for all users with two sub-items for a negative or positive response | ||
− | local displayRequests = missionCommands. | + | local displayRequests = missionCommands.addSubMenu( "Display Requests") |
local negativeReply = missionCommands.addCommand( "Negative Ghostrider", displayRequests , displayMsg, {flyby = false}) | local negativeReply = missionCommands.addCommand( "Negative Ghostrider", displayRequests , displayMsg, {flyby = false}) | ||
local positiveReply = missionCommands.addCommand( "Roger Ghostrider", displayRequests , displayMsg, {flyby = true}) | local positiveReply = missionCommands.addCommand( "Roger Ghostrider", displayRequests , displayMsg, {flyby = true}) |