Advertisement
HPWebcamAble

Master Program List (For my program organizer)

Nov 25th, 2014
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.78 KB | None | 0 0
  1. --THIS IS A WORK IN PROGRESS
  2. --UNTIL I FINISH JUST IGNORE THIS
  3. --you won't be able to do anything, since the program that uses it isn't public
  4. --There will be a vid on my youtube at some point:
  5. --http://www.youtube.com/user/hpwebcamable
  6.  
  7.  
  8. --[[
  9. This file is used by my Program Organizer
  10. You can download the proper file by typing this in the computer console:
  11. pastebin get <CODE> hp
  12. Note that it MUST be 'hp'.
  13.  
  14. It provides the program list, and their descriptions
  15. It doesn't do anything on its own. It requires the Organizer to interpret it.
  16.  
  17. File starts here:
  18. ]]
  19.  
  20. thisVers = 1.0 --The latest version of the organizer program
  21.  
  22. --I added notes to the first entry to help show what is going on
  23. programList = { --Yep, its a table
  24.   { --Well, many tables
  25.     ["name"] = "Redstone Engine", --Includes the name of a program
  26.     ["vers"] = "1.1", --The current version. Doesn't auto update, but allows you to redownload the program at any time.
  27.     ["des"] = "Allows a computer to control bundled cable. Colors can be turned on or off, and delay can be added using 'events'", --A shortish description of the program
  28.     ["help"] = "For more, see my YouTube video: http://youtu.be/zPvUVptSnro",
  29.     ["items"] = {"Advanced Computer","Bundled Cable or similar item"}, --The items required to use the program
  30.     ["code"] = { --Several tables containing the pastebin code and the path of each file for the program
  31.       {"t8qyvmSH","/RE"}, --Shortcut program (Always first, this is what you need to run)
  32.       {"uTJEepZQ","/RED/ConfigEditor"}, --Config Editor
  33.       {"PT5jLy4i","/RED/RE"} --Program that runs the configs
  34.     }
  35.   },
  36.   {
  37.     ["name"] = "Advanced Redstone Control",
  38.     ["vers"] = "3.1",
  39.     ["des"] = "Creates toggleable buttons on an advanced ComputerCraft monitor that turn bundled cable colors on and off",
  40.     ["help"] = "For help, see my YouTube video: http://youtu.be/o_mzKx-7dS0",
  41.     ["items"] = {"Advanced Monitor","Advanced Computer","Bundled Cable or similar item"},
  42.     ["code"] = {
  43.       {"y2pZUC3c","/rc"},
  44.       {"2ZPhx6ec","/ARC/ARC"},
  45.       {"cKunvkD2","/ARC/configeditor"}
  46.     }
  47.   },
  48.   {
  49.     ["name"] = "HPWebcamAble's Password Program",
  50.     ["vers"] = "1.1",
  51.     ["des"] = "This program lets you lock a computer, preventing someone from accesing it without a username and password",
  52.     ["help"] = "Using this program is pretty simple. Set your username and password. Type 'pass' for usages. Safemode makes sure you don't accidentally lock a computer. If you DO accidentally lock a computer, see this pastebin for info on how to unlock it: http://pastebin.com/TNmGgsji",
  53.     ["items"] = {"Advanced Computer"},
  54.     ["code"] = {
  55.       {"1ZD5GSQv","pass"},
  56.       {"rPxgqsFL","/password/bg"}
  57.     }
  58.   },
  59.   {
  60.     ["name"] = "File Manager",
  61.     ["vers"] = "1.2.1",
  62.     ["des"] = "Displays the files on a computer in a semiorganized manor. Expect more soon (well one day)",
  63.     ["help"] = "For help, see my YouTube video: http://youtu.be/pdaWStx-rwA",
  64.     ["items"] = {"Advanced Computer"},
  65.     ["code"] = {
  66.       {"uz2f7Xbe","fm"}
  67.     }
  68.   },
  69.   {
  70.     ["name"] = "Advanced Paint",
  71.     ["vers"] = "1.0",
  72.     ["des"] = "Unlike the paint that comes with ComputerCraft, this is designed to be used on a CC monitor.",
  73.     ["help"] = "For help, see my YouTube video: http://youtu.be/lZg2nrRMl9w",
  74.     ["items"] = {"Advanced Computer","Network Cable","Advanced Monitor"},
  75.     ["code"] = {
  76.       {"AWbyyx5E","ap"}
  77.     }
  78.   },
  79.   {
  80.     ["name"] = "Get Methods",
  81.     ["vers"] = "1.0",
  82.     ["des"] = "Displayes the methods for the peripheral touching the side of a computer",
  83.     ["help"] = "1) Place a peripheral next to this computer\n2) Run the program",
  84.     ["items"] = {"Advanced Computer","Any CC compatible peripheral"},
  85.     ["code"] = {
  86.       {"sKLqTGrM","gm"}
  87.     }
  88.   }
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement