Dialogs
local dialogpacket = ""function addItemWithCustomText(itemID, textUnderButton, buttonName)
dialogpacket = dialogpacket .. "\nadd_button_with_icon|" .. buttonName .. "|" .. textUnderButton .. "|staticBlueFrame|" .. itemID .. "|"
endfunction addSpacer(type)
if type == "big" then
dialogpacket = dialogpacket .. "add_spacer|big|\n"
else
dialogpacket = dialogpacket .. "add_spacer|small|\n"
end
endfunction addItemWithCustomText(itemID, textUnderButton, buttonName)
dialogpacket = dialogpacket .. "\nadd_button_with_icon|" .. buttonName .. "|" .. textUnderButton .. "|staticBlueFrame|" .. itemID .. "|"
endfunction addNewLineAfterFrame()
dialogpacket = dialogpacket .. "\nadd_button_with_icon||END_LIST|noflags|0|0|"
endfunction addPicker(pickername, pickertext, headText)
dialogpacket = dialogpacket .. "\nadd_item_picker|" .. pickername .. "|" .. pickertext .. "|" .. headText .. "|"
endfunction 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
endLast updated