File size: 26,745 Bytes
2e5d0db e91540e 2e5d0db |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 |
import gradio as gr
import lodestone
from lodestone import plugins
import time
from lodestone import logger
from javascript import require
import requests
global created
created = False
global chat_history
chat_history = []
global plugin_list
plugin_list = []
global bot_list
bot_list = []
css = """
.error {
color: red
}
"""
def get_bot_status():
if 'bot' in globals():
return "Stop Bot"
else:
return "Start/Stop Bot"
def change_tab():
return gr.Tabs.update(selected=1)
def create(email, auth, host, port, version, viewer, plugin, enable_viewer, skip_checks):
try:
if 'bot' in globals():
def stop_bot():
try:
global bot
bot.stop()
gr.Info("Successfully stopped bot!")
del bot
except Exception as e:
print(e)
pass
stop_bot()
return "Already logged in!", "Already logged in!", "Login/Create Bot"
except Exception as e:
print(e)
pass
if not host or not email or not version:
gr.Warning("not all fields are filled in!")
return "Unknown", "Unknown", "Login/Create Bot"
global bot
plugin_str = ""
if plugin:
plugin_str += "Plugins: "
for new_plugin in plugin:
if new_plugin == "Schematic Builder":
plugin_str += "Schematic Builder, "
plugin_list.append(plugins.schematic)
elif new_plugin == "Cactus Farm Builder":
plugin_str += "Cactus Farm Builder, "
plugin_list.append(plugins.cactus)
elif new_plugin == "Discord Rich Presence":
plugin_str += "Discord Rich Presence, "
plugin_list.append(plugins.discordrp)
else:
pass
if enable_viewer == False:
enable_viewer = True
elif enable_viewer == True:
enable_viewer = False
bot = lodestone.createBot(
host=host,
username=email,
port=port,
ls_viewer_port=viewer,
version=version,
profilesFolder="./cache",
auth=auth,
ls_disable_viewer=enable_viewer,
ls_skip_checks=skip_checks,
ls_plugin_list=plugin_list
)
version_check = int(str(bot.bot.version).replace(".",""))
if version_check >= 119:
gr.Warning(f"Beehive viewer does not currently support {bot.bot.version} this will cause the viewer to not work")
@bot.on('messagestr')
def chat_history_add(this, message, messagePosition, jsonMsg, sender, *args):
message = str(message).replace("\n","")
if str(sender).lower() == "none":
chat_history.append(f"{message}")
else:
chat_history.append(f"{sender}: {message}")
info =f"""Successfully logged in as {bot.username}"""
bot_list.append({f"{email}": bot})
gr.Info(f"Successfully logged in as {bot.username}\n{plugin_str}")
return bot.username, info, "Stop Bot"
def create_multiple(email, auth, host, port, version, amount):
try:
if 'bot' in globals():
def stop_bot():
try:
global bot
bot.stop()
gr.Info("Successfully stopped bot!")
del bot
except Exception as e:
print(e)
pass
stop_bot()
return "Already logged in!", "Already logged in!", "Login/Create Bot"
except Exception as e:
print(e)
pass
if not host or not email or not version:
gr.Warning("not all fields are filled in!")
return "Unknown", "Unknown", "Login/Create Bot"
for bots in range(0, amount):
lodestone.createBot(
host=host,
username=email+str(bots),
port=port,
ls_disable_viewer=True,
version=version,
profilesFolder="./cache",
auth=auth,
ls_skip_checks=True,
)
global bot
bot = amount
# @bot.on('messagestr')
# def chat(this, message, messagePosition, jsonMsg, sender, *args):
# message = str(message).replace("\n","")
# if str(sender).lower() == "none":
# chat_history.append(f"{message}")
# else:
# chat_history.append(f"{sender}: {message}")
info =f"""Successfully created {amount} bots!"""
gr.Info(f"Successfully created {amount} bots!")
return amount, info, "Stop Bot"
def get_username():
if 'bot' in globals():
return bot.username
else:
return "None"
def get_player_health():
if 'bot' in globals():
return bot.health
else:
return "Unknown"
def get_player_food():
if 'bot' in globals():
return bot.food
else:
return "Unknown"
def get_player_experience():
if 'bot' in globals():
return bot.experience.level
else:
return "Unknown"
def get_player_difficulty():
if 'bot' in globals():
if bot.settings.difficulty == 0:
return "peaceful"
elif bot.settings.difficulty == 1:
return "easy"
elif bot.settings.difficulty == 2:
return "normal"
elif bot.settings.difficulty == 3:
return "hard"
else:
return "Unknown"
def get_all_data():
if 'bot' in globals():
return bot.player
else:
return "Unknown"
def get_latest_chats():
if 'bot' in globals():
if len(chat_history) > 200:
chat_history.clear()
return "No chat messages yet!"
string = ""
for i in chat_history[-40:]:
string += i + "\n"
return string
else:
return "No chat messages yet!"
# def upload_file(files):
# global build_file
# file_paths = [file.name for file in files]
# build_file = file_paths
# print(file_paths)
# return file_paths
def build_schematic(files, x, z):
if not x or not z or not files:
gr.Warning("not all fields are filled in!")
return
if 'bot' in globals():
bot.goto(x, z)
time.sleep(2)
bot.build_schematic(f'{files.name}')
else:
gr.Warning("You need to login first!")
with gr.Blocks(theme=gr.themes.Soft(), title="The Lodestone Project") as ui:
with gr.Tab("Bot Settings"):
# gr.Markdown(requests.get('https://raw.githubusercontent.com/the-lodestone-project/Lodestone/main/README.md').text)
# gr.Image("https://github.com/the-lodestone-project/Lodestone/blob/main/assets/logo.png?raw=true", min_width=2000)
with gr.Tab("Signle Bot"):
email = gr.Textbox(placeholder="Notch", label="Username",info="Username to login with")
auth = gr.Dropdown(["microsoft", "offline"], value="microsoft", label="Authentication Method",info="Authentication method to login with")
host = gr.Textbox(placeholder="2b2t.org", label="Server Ip",info="Server ip to connect to")
port = gr.Number(value=25565, label="Sever Port", info="Server port to connect to. Most servers use 25565",precision=0)
version = gr.Dropdown(["auto","1.20", "1.19", "1.18", "1.17", "1.16.4", "1.16", "1.15", "1.14", "1.13", "1.12", "1.11", "1.10", "1.9", "1.8"], value="auto", label="Version",info="Version to connect with. Use auto to automatically detect the version of the server")
with gr.Accordion("Optional Settings", open=False):
enable_viewer = gr.Checkbox(value=True, label="Enable Viewer", info="Enable the viewer to see the bot's view",interactive=True)
skip_checks = gr.Checkbox(value=True, label="Skip Checks/Updates", info="Skip checks to speed up the bot",interactive=True)
viewer = gr.Number(value=5001, label="Viewer Port", info="Viewer port to display the bot's view",precision=0)
plugin = gr.Dropdown(["Schematic Builder", "Cactus Farm Builder", "Discord Rich Presence"],multiselect=True, label="Plugins",info="Plugins to load on startup")
btn = gr.Button(value=get_bot_status,variant='primary')
out_username = gr.Textbox(value="", label="Logged in as")
info = gr.Textbox(value="", label="Info")
btn.click(create, inputs=[email, auth, host, port, version, viewer, plugin, enable_viewer, skip_checks], outputs=[out_username, info, btn], show_progress="minimal")
with gr.Tab("Multiple Bots"):
email = gr.Textbox(placeholder="Notch", label="Username Prefix",info="Username prefix. The bot will login with this prefix and a number after it")
auth = gr.Dropdown(["offline"], value="offline", label="Authentication Method",info="Authentication method to login with")
host = gr.Textbox(placeholder="2b2t.org", label="Server Ip",info="Server ip to connect to")
port = gr.Number(value=25565, label="Sever Port", info="Server port to connect to. Most servers use 25565",precision=0)
version = gr.Dropdown(["auto","1.20", "1.19", "1.18", "1.17", "1.16.4", "1.16", "1.15", "1.14", "1.13", "1.12", "1.11", "1.10", "1.9", "1.8"], value="auto", label="Version",info="Version to connect with. Use auto to automatically detect the version of the server")
amount = gr.Slider(minimum=1, maximum=50, step=1, label="Amount", info="Amount of bots to create", interactive=True)
with gr.Accordion("Optional Settings", open=False):
enable_viewer = gr.Checkbox(value=False, label="Enable Viewer", info="Enable the viewer to see the bot's view",interactive=False)
viewer = gr.Number(value=5001, label="Viewer Port", info="Viewer port to display the bot's view",precision=0, interactive=False)
# plugin = gr.Dropdown(["Schematic Builder", "Cactus Farm Builder", "Discord Rich Presence"],multiselect=True, label="Plugins",info="Plugins to load on startup")
btn = gr.Button(value=get_bot_status,variant='primary')
out_username = gr.Textbox(value="", label="Bot count")
info = gr.Textbox(value="", label="Info")
btn.click(create_multiple, inputs=[email, auth, host, port, version, amount], outputs=[out_username, info, btn], show_progress="minimal")
# with gr.Tab("EasyMC"):
# email = gr.Textbox(placeholder="********************", label="Token",info="Token to login with")
# host = gr.Textbox(placeholder="2b2t.org", label="Server Ip",info="Server ip to connect to")
# port = gr.Number(value=25565, label="Sever Port", info="Server port to connect to. Most servers use 25565",precision=0)
# version = gr.Dropdown(["auto","1.20", "1.19", "1.18", "1.17", "1.16.4", "1.16", "1.15", "1.14", "1.13", "1.12", "1.11", "1.10", "1.9", "1.8"], value="auto", label="Version",info="Version to connect with. Use auto to automatically detect the version of the server")
# with gr.Accordion("Optional Settings", open=False):
# enable_viewer = gr.Checkbox(value=True, label="Enable Viewer", info="Enable the viewer to see the bot's view",interactive=True)
# skip_checks = gr.Checkbox(value=True, label="Skip Checks/Updates", info="Skip checks to speed up the bot",interactive=True)
# viewer = gr.Number(value=5001, label="Viewer Port", info="Viewer port to display the bot's view",precision=0)
# plugin = gr.Dropdown(["Schematic Builder", "Cactus Farm Builder", "Discord Rich Presence"],multiselect=True, label="Plugins",info="Plugins to load on startup")
# btn = gr.Button(value=get_bot_status,variant='primary')
# out_username = gr.Textbox(value="", label="Logged in as")
# info = gr.Textbox(value="", label="Info")
# btn.click(create, inputs=[email, auth, host, port, version, viewer, plugin, enable_viewer, skip_checks], outputs=[out_username, info, btn], show_progress="minimal")
# with gr.Tab("The Altening"):
# email = gr.Textbox(placeholder="*******@alt.com", label="Token",info="Token to login with")
# host = gr.Textbox(placeholder="2b2t.org", label="Server Ip",info="Server ip to connect to")
# port = gr.Number(value=25565, label="Sever Port", info="Server port to connect to. Most servers use 25565",precision=0)
# version = gr.Dropdown(["auto","1.20", "1.19", "1.18", "1.17", "1.16.4", "1.16", "1.15", "1.14", "1.13", "1.12", "1.11", "1.10", "1.9", "1.8"], value="auto", label="Version",info="Version to connect with. Use auto to automatically detect the version of the server")
# with gr.Accordion("Optional Settings", open=False):
# enable_viewer = gr.Checkbox(value=True, label="Enable Viewer", info="Enable the viewer to see the bot's view",interactive=True)
# skip_checks = gr.Checkbox(value=True, label="Skip Checks/Updates", info="Skip checks to speed up the bot",interactive=True)
# viewer = gr.Number(value=5001, label="Viewer Port", info="Viewer port to display the bot's view",precision=0)
# plugin = gr.Dropdown(["Schematic Builder", "Cactus Farm Builder", "Discord Rich Presence"],multiselect=True, label="Plugins",info="Plugins to load on startup")
# btn = gr.Button(value=get_bot_status,variant='primary')
# out_username = gr.Textbox(value="", label="Logged in as")
# info = gr.Textbox(value="", label="Info")
# btn.click(create, inputs=[email, auth, host, port, version, viewer, plugin, enable_viewer, skip_checks], outputs=[out_username, info, btn], show_progress="minimal")
with gr.Tab("Chat"):
chat = gr.Textbox(value=get_latest_chats,every=2,label="Chat History (Updated every 2 seconds)",lines=20, max_lines=20, min_width=100, autoscroll=True, autofocus=False)
with gr.Accordion("Advanced Options", open=False):
with gr.Column(scale=1):
whisper = gr.Checkbox(value=False, label="Whisper", info="Whisper the message to the player",interactive=True)
whisper_player = gr.Dropdown([],show_label=False, info="The player to whisper to (Updated every 20 seconds)",interactive=True)
# get_players = gr.Button("Get Players", variant='primary')
with gr.Column(scale=1):
prefix = gr.Textbox(value="", show_label=False, info="Prefix to add to the start of the message",interactive=True)
suffix = gr.Textbox(value="", show_label=False, info="Suffix to add to the end of the message",interactive=True)
def get_players_def():
if 'bot' in globals():
global players
players = []
for player in bot.bot.players.valueOf():
players.append(player)
players.remove(bot.username)
return gr.Dropdown(choices=players)
else:
return gr.Dropdown([])
def just_some_random_update():
return time.time()
updates = gr.Textbox(value=just_some_random_update, every=20, show_label=False, visible=False)
updates.change(get_players_def, outputs=[whisper_player])
with gr.Row():
with gr.Column(scale=2, ):
msg = gr.Textbox(show_label=False, container=False, placeholder="Type an message...", autofocus=True)
with gr.Column(scale=1, ):
send_message = gr.Button("Send Message", variant='primary')
clear = gr.ClearButton([msg, chat],value="Clear Chat History")
def respond(message, whisper, whisper_player, prefix, suffix):
if 'bot' in globals():
if message != "":
if whisper and whisper_player != None or "":
bot.whisper(whisper_player, f"{prefix}{message}{suffix}")
if not whisper:
bot.chat(f"{prefix}{message}{suffix}")
return ""
else:
gr.Warning("You need to create a bot first!")
return ""
def delete():
chat_history.clear()
clear.click(delete)
send_message.click(respond, inputs=[msg, whisper, whisper_player, prefix, suffix],outputs=[msg])
msg.submit(respond, inputs=[msg, whisper, whisper_player, prefix, suffix],outputs=[msg])
with gr.Tab("Plugins"):
with gr.Accordion("Schematic Builder", open=False):
def check():
if not plugins.schematic in plugin_list:
return "The Schematic Builder plugin is not loaded"
else:
return "pluginloaded"
gr.Textbox(value=check, every=30, show_label=False)
# with gr.Row():
# with gr.Column(scale=1, ):
file_output = gr.File(file_types=[".schematic", ".nbt", ".schem"], label="Schematic File (.schematic .nbt .schem)",file_count="single")
with gr.Row():
with gr.Column(scale=1, ):
x = gr.Number(label="X Coordinate",info="The X coord to build at", precision=0)
with gr.Column(scale=1, ):
z = gr.Number(label="Z Coordinate",info="The Z coord to build at", precision=0)
# upload_button = gr.UploadButton("Click to Upload a schematic", file_count="single")
# upload_button.upload(upload_file, upload_button, file_output)
build = gr.Button("Build schematic", variant='primary')
build.click(build_schematic, inputs=[file_output, x, z])
with gr.Accordion("Build Cactus Farm", open=False):
gr.Markdown("")
with gr.Accordion("Auto Farm", open=False):
with gr.Row():
with gr.Column(scale=1, ):
crop_type = gr.Dropdown(["wheat_seeds", "wheat", "beetroot_seeds", "beetroot", "carrot", "potato", "poisonous_potato", "melon", "melon_slice", "melon_seeds", "melon_stem", "attached_melon_stem", "pumpkin", "carved_pumpkin", "pumpkin_seeds", "pumpkin_stem", "attached_pumpkin_stem", "torchflower_seeds", "torchflower_crop", "torchflower", "pitcher_pod", "pitcher_crop", "pitcher_plant", "farmland", "bamboo", "cocoa_beans", "sugar_cane", "sweet_berries", "cactus", "mushrooms", "kelp", "sea_pickle", "nether_wart", "chorus_fruit", "fungus", "glow_berries"], label="Crop Type",info="The Crop type to farm", interactive=True)
with gr.Column(scale=1, ):
seed_name = gr.Dropdown(["wheat_seeds", "wheat", "beetroot_seeds", "beetroot", "carrot", "potato", "poisonous_potato", "melon", "melon_slice", "melon_seeds", "melon_stem", "attached_melon_stem", "pumpkin", "carved_pumpkin", "pumpkin_seeds", "pumpkin_stem", "attached_pumpkin_stem", "torchflower_seeds", "torchflower_crop", "torchflower", "pitcher_pod", "pitcher_crop", "pitcher_plant", "farmland", "bamboo", "cocoa_beans", "sugar_cane", "sweet_berries", "cactus", "mushrooms", "kelp", "sea_pickle", "nether_wart", "chorus_fruit", "fungus", "glow_berries"], label="Seed Name",info="The Seed name to plant back", interactive=True)
with gr.Column(scale=1, ):
harvest_name = gr.Dropdown(["wheat_seeds", "wheat", "beetroot_seeds", "beetroot", "carrot", "potato", "poisonous_potato", "melon", "melon_slice", "melon_seeds", "melon_stem", "attached_melon_stem", "pumpkin", "carved_pumpkin", "pumpkin_seeds", "pumpkin_stem", "attached_pumpkin_stem", "torchflower_seeds", "torchflower_crop", "torchflower", "pitcher_pod", "pitcher_crop", "pitcher_plant", "farmland", "bamboo", "cocoa_beans", "sugar_cane", "sweet_berries", "cactus", "mushrooms", "kelp", "sea_pickle", "nether_wart", "chorus_fruit", "fungus", "glow_berries"], label="Harvest Name",info="The block name to harvest", interactive=True)
with gr.Row():
with gr.Column(scale=1, ):
x = gr.Number(label="X Coordinate",info="The X coord to build at", precision=0)
with gr.Column(scale=1, ):
z = gr.Number(label="Z Coordinate",info="The Z coord to build at", precision=0)
with gr.Row():
with gr.Column(scale=1, ):
x = gr.Number(label="X Coordinate",info="The X coord to build at", precision=0)
with gr.Column(scale=1, ):
z = gr.Number(label="Z Coordinate",info="The Z coord to build at", precision=0)
with gr.Accordion("Optional Settings", open=False):
gr.Markdown("Optional Settings")
start_farm = gr.Button("Start auto Farming", variant='primary')
with gr.Accordion("Discord Rich Presence", open=False):
with gr.Row():
with gr.Column(scale=1, ):
state = gr.Textbox(label="State",info="The state to display")
with gr.Column(scale=1, ):
details = gr.Textbox(label="Details",info="The details to display")
with gr.Column(scale=1, ):
large_image = gr.Textbox(label="Large Image (url)",info="The large image to display")
with gr.Column(scale=1, ):
large_text = gr.Textbox(label="Large Text",info="The large text to display")
with gr.Column(scale=1, ):
small_image = gr.Textbox(label="Small Image (url)",info="The small image to display")
with gr.Column(scale=1, ):
small_text = gr.Textbox(label="Small Text",info="The small text to display")
def update_presence_def(state="No state provided", details="No details Provided", large_image=None, large_text=None, small_image=None, small_text=None):
print(details)
if 'bot' in globals():
bot.discordrp(state=state, details=details, start=time.time())
else:
pass
update_presence = gr.Button("Update Presence", variant='primary')
update_presence.click(update_presence_def, inputs=[state, details, large_image, large_text, small_image, small_text])
with gr.Tab("Movements"):
with gr.Tab("Basic Movements"):
with gr.Row():
with gr.Column(scale=1, ):
jump = gr.Button("Start Jumping")
jump = gr.Button("Stop Jumping")
with gr.Column(scale=1, ):
jump = gr.Button("Start walking forward")
jump = gr.Button("Stop walking forward")
with gr.Tab("Follow Player/Entity"):
gr.Markdown("")
with gr.Tab("Player Info"):
# refresh_button = gr.Button("Refresh")
with gr.Accordion("Bot Info", open=False):
with gr.Row():
with gr.Column(scale=1):
health = gr.Textbox(value=get_player_health, label=f"Health", every=5)
with gr.Column(scale=1):
food = gr.Textbox(value=get_player_food, label=f"Food", every=5)
with gr.Column(scale=1):
experience = gr.Textbox(value=get_player_experience, label=f"Experience Level", every=5)
with gr.Column(scale=1):
difficulty = gr.Textbox(value=get_player_difficulty, label=f"Difficulty", every=5)
with gr.Column(scale=1):
all_data = gr.Textbox(value=get_all_data, label=f"All Data", every=5)
with gr.Accordion("Online Player Info", open=False):
pass
# refresh_button.click(get_player_info, outputs=[health, food, experience])
with gr.Tab("System Resources"):
# refresh_button = gr.Button("Refresh")
import psutil
import platform
def cpu():
return psutil.cpu_percent(interval=5)
def ram_used():
return psutil.virtual_memory().percent
def ram_available():
ram= psutil.virtual_memory().available / (1024.0 ** 3)
return "{:.1f}".format(ram)
with gr.Row():
with gr.Column(scale=1):
health = gr.Textbox(value=ram_used, label=f"Ram Used (%)", every=5)
with gr.Column(scale=1):
food = gr.Textbox(value=ram_available, label=f"Available Ram (GB)", every=5)
with gr.Column(scale=1):
experience = gr.Textbox(value=cpu, label=f"CPU usage (%)", every=5)
with gr.Column(scale=1):
difficulty = gr.Textbox(value=platform.system, label=f"System Type")
# refresh_button.click(get_player_info, outputs=[health, food, experience])
# import os
# from dotenv import load_dotenv
# import socket
# import requests
# s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
# s.connect(("8.8.8.8", 80))
# host = s.getsockname()[0]
# s.close()
# load_dotenv()
username = "lodestone"
password = "lodestone"
# if not os.path.isfile("/favicon.ico"):
# img_data = requests.get("https://github.com/the-lodestone-project/Lodestone/raw/main/assets/favicon.png").content
# with open('/favicon.png', 'wb') as handler:
# handler.write(img_data)
try:
logger.info("Running!\nURL: http://localhost:8000\nUsername: lodestone\nPassword: lodestone\n")
ui.queue().launch(inbrowser=True,ssl_verify=False, server_name="0.0.0.0",server_port=7860, show_api=False, auth=(f'{username}', f'{password}'), share=False, quiet=True, auth_message="Please login with your set username and password. These are not your Minecraft credentials.")
except OSError:
raise OSError(f"Port 8000 is already in use!")
|