16 lines
359 B
Python
16 lines
359 B
Python
import MinecraftLibrary as mil
|
|
import time
|
|
|
|
|
|
class Mil(mil.MCROCN):
|
|
def __init__(self, host, password, port):
|
|
super().__init__(host, password, port)
|
|
|
|
|
|
mcr=Mil(host="mc.gvsds.com", password="1234567890114514", port=25566)
|
|
if not mcr.Connect(): exit()
|
|
|
|
mcr.Gamerule("sendCommandFeedback", False)
|
|
mcr.Gamemode("survival", "MXYYSH2")
|
|
|
|
mcr.disconnect() |