UUID Generator

Games & Software UUID Generator 1
The User the ID, the UUID Generator.

Description:

Tired of manually entering complex UUIDs in Minecraft? This easy-to-use generator creates valid Minecraft UUIDs with a single click.

Features:

  • Instant Generation: Generate random UUIDs in seconds.
  • Secure & Reliable: Generates valid UUIDs compatible with Minecraft servers.
  • Lightweight & Easy-to-Use: Simple interface for quick and effortless generation.
  • Works With Offline Accounts : A great way to find UUIDs
Benefits:

  • Saves Time: Skip the hassle of manually finding UUIDs
  • Improves Efficiency: Speeds up the process of joining Minecraft servers.
  • User-Friendly: Perfect for players of all experience levels.
How to Use:

  1. Install Python
  2. Open the terminal and install the requirments.
  3. Enjoy !


    Source Code :

    1. import requests
      import hashlib
      import uuid

      def get_player_uuid(username):
      online_uuid = get_premium_uuid(username)
      offline_uuid = offline_player_uuid(username)
      return online_uuid, offline_uuid

      def get_premium_uuid(username):
      try:
      response = requests.get(f'https://api.mojang.com/users/profiles/minecraft/{username}')
      if response.status_code == 200:
      return response.json().get('id')
      except Exception as e:
      pass
      return None

      def print_uuids(username, online_uuid, offline_uuid):
      print(f'Username: {username}')
      if online_uuid is not None:
      print(f'Premium UUID: {online_uuid}')
      else:
      print(f'Premium UUID: None')
      print(f'Cracked/Offline UUID: {offline_uuid}')

      def get_uuid_from_user():
      return input("Enter Minecraft username: ").strip()

      def uuid_command(username):
      try:
      online_uuid, offline_uuid = get_player_uuid(username)
      print_uuids(username, online_uuid, offline_uuid)
      except KeyboardInterrupt:
      print('\nOperation interrupted.')
      except Exception as e:
      print(f"An error occurred: {e}")

      def offline_player_uuid(username):
      data = hashlib.md5(("OfflinePlayer:" + username).encode('utf-8')).digest()
      data = bytearray(data)
      data[6] = data[6] & 0x0f | 0x30
      data[8] = data[8] & 0x3f | 0x80
      return str(uuid.UUID(bytes=bytes(data)))

      if __name__ == "__main__":
      username = get_uuid_from_user()
      uuid_command(username)

    Yes, I made this only for the Bage but you can still use it :) <3
ficusulmic
Author ficusulmic
Level
4
900 pts
1 Version
6 Downloads
362 Views
Published
Updated
0.00 star(s) 0 ratings Average Rating (0)

More files from ficusulmic

Top Bottom