Skip to content

Instantly share code, notes, and snippets.

@Rorythedev
Created September 21, 2024 16:16
Show Gist options
  • Save Rorythedev/31963f60da1a354462d606dc6c400349 to your computer and use it in GitHub Desktop.
Save Rorythedev/31963f60da1a354462d606dc6c400349 to your computer and use it in GitHub Desktop.
wanna be a geometry dash mod? well you can be it! WARNING: This is in beta so it may contain bugs or glitches.
import random
import string
def generate_fake_gd_mod_id():
"""
Generates a fake GD Mod ID that looks like a real one.
Returns:
str: The generated fake GD Mod ID.
"""
# Generate a random 8-character string of uppercase letters and digits
mod_id = ''.join(random.choices(string.ascii_uppercase + string.digits, k=8))
# Add the "GD_" prefix to make it look like a real GD Mod ID
fake_mod_id = f"GD_{mod_id}"
return fake_mod_id
# Example usage
fake_mod_id = generate_fake_gd_mod_id()
print(f"Your fake GD Mod ID is: {fake_mod_id}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment