Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local monitor = peripheral.wrap("right") -- Monitörün bulunduğu tarafı yazmalısınız
- monitor.clear()
- local yPosition = 1 -- İmlecin y pozisyonunu takip etmek için bir değişken
- while true do
- local event, side, player, message = os.pullEvent("chat_message")
- if message then
- monitor.setCursorPos(1, yPosition) -- İmleci doğru y pozisyonuna taşı
- monitor.write(player .. ": " .. message) -- Oyuncu adı ve mesajı monitörde göster
- yPosition = yPosition + 1 -- Y pozisyonunu bir artır
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement