Hayden_Almeida

Deletar Contas.exe

May 10th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.00 KB | None | 0 0
  1. --[[
  2. ================================ CONFIGS ====================================
  3. CRIADO POR: HAYDEN ALMEIDA
  4. Canal no youTube: https://www.youtube.com/channel/UCUZCQ1q0ZOHpqABIvpxB32g
  5. local data = "02/05/2016 as 1718" data de atualizaçao
  6. Caso encontre um erro e quiser entrar em contato: haydenalmeida@hotmail.com
  7. Ou Skype: haydenalmeida
  8. --]]
  9. local ver = "1.01"  -- versao atual do programa
  10. --======================== FIM DAS CONFIGS ===================================
  11.  
  12. term.setBackgroundColor(colors.lime)
  13. term.clear()
  14. term.setCursorPos(1, 1)
  15. term.setTextColor(colors.black)
  16. print("===================== MENU ========================")
  17. print("1 - Deletar Conta de Cliente")
  18. print("2 - Deletar Conta de Gerente")
  19.  
  20. local ler = read()
  21.  
  22. if ler == "1" then -- Criar conta de Clientes
  23.     shell.run("cd //")
  24.     shell.run("//programas/deletar_conta_cliente.exe")
  25. elseif ler == "2" then -- Criar conta de Gerentes
  26.     shell.run("cd //")
  27.     shell.run("//programas/deletar_conta_gerente.exe")
  28. else
  29.     return
  30. end
Add Comment
Please, Sign In to add comment