fix: remove example which doesn't apply anymore
This commit is contained in:
parent
eef8bf3d26
commit
f295e31cce
1 changed files with 0 additions and 22 deletions
|
@ -1,22 +0,0 @@
|
|||
"""
|
||||
A super simple MinecraftClient exmaple.
|
||||
Will connect to a server and print chat messages.
|
||||
Requires an authorization code to login
|
||||
"""
|
||||
import sys
|
||||
|
||||
from aiocraft.client import MinecraftClient
|
||||
from aiocraft.mc.proto import PacketChat
|
||||
from aiocraft.util.helpers import parse_chat
|
||||
|
||||
server = sys.argv[1]
|
||||
login_code = sys.argv[2] # Check authenticator.py example
|
||||
|
||||
app = MinecraftClient(server, login_code=login_code)
|
||||
|
||||
@app.on_packet(PacketChat)
|
||||
async def on_chat(packet: PacketChat):
|
||||
print(parse_chat(packet.message, ansi_color=True))
|
||||
|
||||
app.run()
|
||||
|
Loading…
Reference in a new issue