Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Функция для включения лампы
- function turnOnLamp()
- redstone.setOutput("back", true) -- Включаем редстоун сигнал
- print("Lamp is turned on.") -- Вывод сообщения на английском
- end
- -- Функция для выключения лампы
- function turnOffLamp()
- redstone.setOutput("back", false) -- Выключаем редстоун сигнал
- print("Lamp is turned off.") -- Вывод сообщения на английском
- end
- -- Основной цикл программы
- while true do
- print("Enter 'on' to turn on the lamp or 'off' to turn off:") -- Вывод запроса на английском
- local input = read() -- Читаем ввод от пользователя
- if input == "on" then
- turnOnLamp() -- Включаем лампу
- elseif input == "off" then
- turnOffLamp() -- Выключаем лампу
- else
- print("Invalid command. Please enter 'on' or 'off'.") -- Сообщение об ошибке на английском
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement