Skip to content

Instantly share code, notes, and snippets.

View Rorythedev's full-sized avatar

rorythedev Rorythedev

  • Joined Sep 21, 2024
View GitHub Profile
@Rorythedev
Rorythedev / better developing (for GD) (beta)
Created September 22, 2024 07:07
Gives you better developing WARNING: GD ONLY AND THIS IS IN BETA
import pyglet
from pyglet.gl import *
# Set up the window
window = pyglet.window.Window(800, 600)
# Define the level's dimensions
level_width = 4000
level_height = 600
@Rorythedev
Rorythedev / GYAT
Created September 21, 2024 16:55
GYATTTTTTT warning this is in beta so be careful!
print("Welcome to the Gyatt Viewer!")
level_input = input("Please enter the GD level you want to see: ")
if level_input.isdigit():
level = int(level_input)
if level >= 1 and level <= 10:
print("Displaying Gyatt for GD level", level)
print("""
_____
@Rorythedev
Rorythedev / crashaholic [beta]
Created September 21, 2024 16:23
prevents your game from crashing. WARNING: This is in beta and may contain bugs and glitches
def handle_game_crash(func):
"""
Decorator function to handle and gracefully handle game crashes.
This decorator function wraps a game-related function and catches any
exceptions that may occur during its execution. It then logs the error
and provides a friendly message to the user, preventing the game from
crashing.
Args:
@Rorythedev
Rorythedev / fake gd mod (beta)
Created September 21, 2024 16:16
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.
"""
@Rorythedev
Rorythedev / GD texture pack
Created September 21, 2024 15:42
a texture pack for GD
import os
import shutil
from PIL import Image
def create_texture_pack(pack_name, image_folder, output_folder):
"""
Create a Geometry Dash texture pack.
Parameters:
pack_name (str): The name of the texture pack.
@Rorythedev
Rorythedev / Macrobot (for osu!) (beta)
Created September 21, 2024 15:09
creates a macro for osu.
import pyautogui
import time
print("Welcome to the Osu! Macro Creator!")
print("This script will help you create a custom macro for your Osu! gameplay.")
# Get user input for the key to be pressed
key_to_press = input("What key do you want to press? (e.g., 'z', 'x', 'space'): ")
# Get user input for the delay between key presses
@Rorythedev
Rorythedev / your famous! (beta)
Created September 21, 2024 14:50
gives you a youtube verified badge. WARNING: This is in beta so it may contain bugs or glitches.
def youtube_verified_badge():
badge = [
" ___ ",
" / ✓ \\ ",
"| _ |",
" \\_|_/ "
]
print("YouTube Verified Badge:")
for line in badge:
@Rorythedev
Rorythedev / better developing
Created September 21, 2024 14:44
gives you better developing! WARNING: this is in beta so it may contain bugs or glitches.
import re
import json
import random
class RobloxDevHelper:
def __init__(self):
self.part_colors = {
"Red": (1, 0, 0),
"Green": (0, 1, 0),
"Blue": (0, 0, 1),
@Rorythedev
Rorythedev / slow osu! (beta)
Created September 21, 2024 14:40
makes the game osu! slower! WARNING: this is in beta.
import psutil
import ctypes
import time
def find_osu_process():
for proc in psutil.process_iter(['name']):
if proc.info['name'] == 'osu!.exe':
return proc
return None
@Rorythedev
Rorythedev / Macrobot (for any game) (beta)
Created September 21, 2024 13:58
Macrobot is a easy to use bot for any game by RorytheDev! When you press Ctrl+Shift+R, the script starts recording mouse clicks, mouse movements, and key presses. Each action is timestamped and stored in the macro list. Stop Recording: The script will stop recording when you press the Esc key. Replay Macro: Press Ctrl+Shift+P to replay the recor…
import pyautogui
import keyboard
import time
import json
from datetime import datetime
# Store recorded events
macro = []
# Record the current time for calculating time differences