Advertisement
Crizz23

Untitled

Aug 14th, 2015
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. term.clear()
  2. term.setCursorPos(1,1)
  3.  
  4. while true do
  5.  
  6. print("Which mobs would you like to toggle?")
  7. print("1. Enderman")
  8. print("2. Blaze")
  9. print("B. Back")
  10.  
  11. input = io.read()
  12.  
  13. if input == "1" then
  14.   local side = "top"
  15.   local addBrown = colors.brown
  16.   if rs.testBundledInput(side,colors.brown) == true then
  17.     function disableColor(side,color)
  18.           rs.setBundledOutput(side, colors.subtract(rs.getBundledOutput(side),addBrown))
  19.     end      
  20.   else
  21.       rs.setBundledOutput(side,colors.combine(rs.getBundledOutput(side, addBrown)))
  22. end
  23. elseif input == "2" then
  24.   if  rs.testBundledOutput("top",colors.green) == true then
  25.     rs.setBundledOutput("top",colors.subtract(colors.green))
  26.   else
  27.     rs.setBundledOutput("top",rs.getBundledOutput("top"))
  28.   end
  29. elseif input == "B" then
  30.   term.clear()
  31.   term.setCursorPos(1,1)
  32.   break
  33. end
  34.  
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement