ZipMenu
Hello, and yes this time I do have a pastebin for this, I made a thing where you can create custom menus.Note:
You need two programs for this to work, one to open the menu, and another to be a callback to receive the input from the menu.
So, to download
pastebin get qh3T84pJ

The code to create the image above is as follows:
In a file called "Menu":
term.setTextColor(colors.black)
term.setBackgroundColor(colors.white)
shell.run("zipMenu", "My_menu", "callback", "Item1", "Item2", "Item3")In a file called "Callback":
local params = {...}
print("You chose ".. params[1])
Edited by TheZipCreator, 12 November 2017 - 02:33 AM.












