Advertisement
colhaydutu

chatbox

Aug 29th, 2023 (edited)
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. local monitor = peripheral.wrap("right") -- Monitörün bulunduğu tarafı yazmalısınız
  2.  
  3. monitor.clear()
  4.  
  5. local yPosition = 1 -- İmlecin y pozisyonunu takip etmek için bir değişken
  6.  
  7. while true do
  8. local event, side, player, message = os.pullEvent("chat_message")
  9.  
  10. if message then
  11. monitor.setCursorPos(1, yPosition) -- İmleci doğru y pozisyonuna taşı
  12. monitor.write(player .. ": " .. message) -- Oyuncu adı ve mesajı monitörde göster
  13. yPosition = yPosition + 1 -- Y pozisyonunu bir artır
  14. end
  15. end
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement