Dialogs

local dialogpacket = ""
function addItemWithCustomText(itemID, textUnderButton, buttonName)
    dialogpacket = dialogpacket .. "\nadd_button_with_icon|" .. buttonName .. "|" .. textUnderButton .. "|staticBlueFrame|" .. itemID .. "|"
end
function addSpacer(type)
    if type == "big" then
        dialogpacket = dialogpacket .. "add_spacer|big|\n"
    else
        dialogpacket = dialogpacket .. "add_spacer|small|\n"
    end
end
function addItemWithCustomText(itemID, textUnderButton, buttonName)
    dialogpacket = dialogpacket .. "\nadd_button_with_icon|" .. buttonName .. "|" .. textUnderButton .. "|staticBlueFrame|" .. itemID .. "|"
end
function addNewLineAfterFrame()
    dialogpacket = dialogpacket .. "\nadd_button_with_icon||END_LIST|noflags|0|0|"
end
function addPicker(pickername, pickertext, headText)
    dialogpacket = dialogpacket .. "\nadd_item_picker|" .. pickername .. "|" .. pickertext .. "|" .. headText .. "|"
end
function addStaticBlueFrame(itemID, count, textUnderFrame, buttonName, isEndLine)
    if not isEndLine then
        dialogpacket = dialogpacket .. "\nadd_button_with_icon|" .. buttonName .. "|" .. textUnderFrame .. "|frame|" .. itemID .. "|" .. count .. "|"
    else
        dialogpacket = dialogpacket .. "\nadd_button_with_icon||END_LIST|noflags|0|0|\nadd_button_with_icon|" .. buttonName .. "|" .. textUnderFrame .. "|frame|" .. itemID .. "|" .. count .. "|"
    end
end

Last updated