Advertisement
alexzapl_0318

wave-amp installer

Apr 2nd, 2025 (edited)
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.83 KB | Gaming | 0 0
  1. --Installer made by AlexZapl for LevelOS--
  2. --I don`t own any rights for wave-amp2 or its api`s--
  3.  
  4. if fs.exists("/Program_Files/wave-amp2/wave-amp2") and fs.exists("/bbpack") then
  5.     print("You have already installed wave-amp2 and all needed files")
  6.     print("Do you want to install common song library? Yes/No")
  7.  
  8.     local answer = io.read()
  9.     if string.lower(answer) == "da" or string.lower(answer) == "d" or string.lower(answer) == "yes" or string.lower(answer) == "y" then
  10.         fs.makeDir("/User/Songs")
  11.         shell.run("bbpack get CYRmLz78 /User/Songs")
  12.     end
  13.     return
  14. end
  15.  
  16. print("Download wave-amp? (music player) Yes/No")
  17.  
  18. local answer = io.read()
  19. if string.lower(answer) == "da" or string.lower(answer) == "d" or string.lower(answer) == "yes" or string.lower(answer) == "y" then
  20.     if not fs.exists("/Program_Files/wave-amp2/wave-amp2") then
  21.         print("Downloading wave-amp2...")
  22.         shell.run("pastebin get nKyXwuuf /Program_Files/wave-amp2/wave-amp2")
  23.     end
  24.     if not fs.exists("/bbpack") then
  25.         print("Downloading bbpack...")
  26.         shell.run("pastebin get cUYTGbpb /bbpack")
  27.     end
  28.  
  29.     print("Create shortcut to desktop? Yes/No")
  30.  
  31.     local answer = io.read()
  32.     if string.lower(answer) == "da" or string.lower(answer) == "d" or string.lower(answer) == "yes" or string.lower(answer) == "y" then
  33.         local file = fs.open("User/Desktop/wave-amp2.lua", "w")
  34.         file.write("shell.run(\"/Program_Files/wave-amp2/wave-amp2\")")
  35.         file.close()
  36.     end
  37.  
  38.     print("Do you want to install common song library? Yes/No")
  39.  
  40.     local answer = io.read()
  41.     if string.lower(answer) == "da" or string.lower(answer) == "d" or string.lower(answer) == "yes" or string.lower(answer) == "y" then
  42.         fs.makeDir("/User/Songs")
  43.         shell.run("bbpack get CYRmLz78 /User/Songs")
  44.     end
  45. end
Tags: installer
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement