Advertisement
Guest User

website

a guest
May 28th, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.28 KB | None | 0 0
  1. webutils = "B1LJUSFi"
  2. userutils = "BVFEdupn"
  3.  
  4. function pause()
  5.   input=true
  6.   while input do
  7.     ev, arg0 = os.pullEvent()
  8.     if ev=="char" then
  9.       return arg0
  10.       input=false
  11.     end
  12.   end
  13. end
  14.  
  15. running = true
  16.  
  17. print("Thank you for using API Downloader.")
  18. print("The offical API download place for the latest apis.")
  19. sleep(2)
  20. while running do
  21.   shell.run("clear")
  22.   print("1. Download Webutils")
  23.   print("2. Download Userutils")
  24.   print("3. Download lwexplorer")
  25.   print("q. Info for Webutils")
  26.   print("w. Info for Userutils")
  27.   print("e. Info for lwexplorer")
  28.   print("z. Exit the API Downloader")
  29.   ev,arg0 = os.pullEvent()
  30.   if ev=="char" then
  31.     shell.run("clear")
  32.     if arg0=="1" then
  33.       shell.run("pastebin get "..webutils.." webutils")
  34.     end
  35.     if arg0=="2" then
  36.       shell.run("pastebin get "..userutils.." userutils")
  37.     end
  38.     if arg0=="3" then
  39.       print("lwexplorer under construction. Please wait.")
  40.     end
  41.     if arg0=="q" then
  42.       print("Webutils is the 'must have' for every website developer!")
  43.       print("Webutils does allow custom mods for the server, for exchanging passwords for example.")
  44.       print("Webutils is really basic, but in modified versions, really advanced.")
  45.       pause()
  46.       shell.run("clear")
  47.     end
  48.     if arg0=="w" then
  49.       print("Userutils is essential for exploring in minenet.")
  50.       print("Multiple websites require this, making this essential.")
  51.       print("Websites such as Minegle use this, it is really trusted trough the community.")
  52.       print("Userutils is not so expandable, because every client must have it.")
  53.       pause()
  54.       shell.run("clear")
  55.     end
  56.     if arg0=="e" then
  57.       print("lwexplorer is a wonderful tool for quickly downloading stuff.")
  58.       print("Many website makers use this to get Userutils to their website really fast.")
  59.       print("lwexplorer is really lighweight and quick to run, making it really easy to work with.")
  60.       print("lwexplorer is also used for security check-ups from the administarators, by downloading the code, and not executing it right away.")
  61.       pause()
  62.       shell.run("clear")
  63.     end
  64.     if arg0=="z" then
  65.       print("Thank you so much for using API Downloader.")
  66.       sleep(2)
  67.       running = false
  68.     end
  69.   end
  70. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement