Advertisement
Guest User

Evasi0n

a guest
Nov 25th, 2014
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.40 KB | None | 0 0
  1. --[[
  2.     Official Evasi0n app from the Evasi0n8 JB!
  3. --]]
  4.  
  5. term.clear()
  6. term.setCursorPos(1, 1)
  7. shell.run("CraftOS/StatusBar")
  8. term.setBackgroundColour(colours.blue)
  9. print ("                                                   ")
  10. term.setBackgroundColour(colours.black)
  11. print ("  ")
  12. print ("This is the official Evasi0n app for the CraftOS")
  13. print ("6.2/7.x/8.x Jailbreak. Here you can perform system")
  14. print ("actions quickly and without error. If you did not ")
  15. print ("Jailbreak your PC then please remove this app from")
  16. print ("your Computer.")
  17. print ("  ")
  18. print ("  ")
  19. print ("Reboot   - Restart the system quickly")
  20. print ("Respring - Re-run the Login and Terminal")
  21. print ("Start    - Run startup again")
  22. print ("  ")
  23. term.setCursorPos(1, 17)
  24. print ("Evasi0n App v1.0")
  25. term.setBackgroundColour(colours.blue)
  26. term.setCursorPos(1, 18)
  27. print ("                                                   ")
  28.  
  29. term.setCursorPos(1, 18)
  30. answer = read ()
  31. if answer == "reboot" then
  32.  os.reboot()
  33. elseif answer == "respring" then
  34.  term.setBackgroundColour(128)
  35.  term.clear()
  36.  sleep(6)
  37.  term.setBackgroundColour(colours.black)
  38.  term.clear()
  39.  term.setCursorPos(1, 1)
  40. elseif answer == "start" then
  41.  shell.run("startup")
  42. elseif answer == "quit" then
  43.  term.setBackgroundColour(colours.black)
  44.  term.clear()
  45.  term.setCursorPos(1, 1)
  46. else
  47.  term.setBackgroundColour(colours.black)
  48.  shell.run("Evasi0n")
  49. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement