The Fisrt Updated

This commit is contained in:
2026-01-25 13:51:15 +08:00
commit 0b71e2d301
22 changed files with 1889 additions and 0 deletions

16
cmdsys.py Normal file
View File

@@ -0,0 +1,16 @@
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()