Untitled

mail@pastecode.io avatar
unknown
plain_text
10 days ago
792 B
6
Indexable
Never
from mcpi.minecraft import Minecraft
import time

mc = Minecraft.create()

question = "§1<Сервер>§1 §6Привет, я твой Сервер, который поможет тебе научиться §5программированию§6."
question2 = "§1<Сервер>§1 §9Давай познакомимся, напиши на §cАнглийском языке§9 своё §6имя§9!"

mc.postToChat(question)
time.sleep(10)
mc.postToChat(question2)

response = None
while response is None:
    chat_posts = mc.events.pollChatPosts()
    if chat_posts:
        response_text = chat_posts[0].message
        mc.postToChat(f"Привет, §5{response_text}§5§c не терпится научиться с тобой программированию!!!")
Leave a Comment