Advertisement
Neverlose

Untitled

Dec 18th, 2024
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. -- Функция для включения лампы
  2. function turnOnLamp()
  3. redstone.setOutput("back", true) -- Включаем редстоун сигнал
  4. print("Lamp is turned on.") -- Вывод сообщения на английском
  5. end
  6.  
  7. -- Функция для выключения лампы
  8. function turnOffLamp()
  9. redstone.setOutput("back", false) -- Выключаем редстоун сигнал
  10. print("Lamp is turned off.") -- Вывод сообщения на английском
  11. end
  12.  
  13. -- Основной цикл программы
  14. while true do
  15. print("Enter 'on' to turn on the lamp or 'off' to turn off:") -- Вывод запроса на английском
  16. local input = read() -- Читаем ввод от пользователя
  17.  
  18. if input == "on" then
  19. turnOnLamp() -- Включаем лампу
  20. elseif input == "off" then
  21. turnOffLamp() -- Выключаем лампу
  22. else
  23. print("Invalid command. Please enter 'on' or 'off'.") -- Сообщение об ошибке на английском
  24. end
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement