Skip to content

Instantly share code, notes, and snippets.

View Rose22's full-sized avatar

Rose Rose22

View GitHub Profile
@Rose22
Rose22 / object_count.py
Created July 21, 2025 04:22
brickadia world brick/entity/component/wires counter. sorts users by the most amount of your chosen type of object (such as entities)
#!/usr/bin/python
import sys
import json
usage_str = f"usage: {sys.argv[0]} <path> <bricks|entities|components|wires>"
if len(sys.argv) < 3:
print(usage_str)
sys.exit()
#!/usr/bin/python
import os
import sys
import json
import pprint
import time
import subprocess
omegga_path = "PATH_TO_OMEGGA_FOLDER_HERE"