This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""This is a modification of generate.mjs for older versions of geometry dash that did not come out on windows at the time | |
We do not have 2 files since there was no Windows release up until geometry dash 1.9. | |
so I had to translate generate.mjs to a langauge that | |
I knew better so that this code could be easily maintable. | |
Otherwise languages such as rust would've been considered | |
for use a long time ago. | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pathlib import Path | |
from orjson import loads | |
def load_file(path:Path) -> dict[str, list[list[str]]]: | |
return loads(Path(path).read_bytes()) | |
def write_code(class_name:str, functions:list[str]) -> str: | |
code = """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
password | |
1234567890 | |
1234567 | |
123123 | |
000000 | |
0000000 | |
00000000 | |
Password | |
P@ssw0rd | |
654321 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""A Small python script for building ghidra header files for All Delegates""" | |
from pybroma import * | |
from argparse import ArgumentParser | |
from pathlib import Path | |
import os | |
# This Introduces a new way to parse the broma files that | |
# was implemented based off the Cython Compiler. It's tiny, compact, requires only very little code. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* This should be used for GNU 4.4.3 C++. Meant to attempt to match C++ std objects | |
* in geometry dash to the best of our abilities */ | |
// TODO: (Calloc) Accurate Class member names for std::map... | |
typedef struct _rb_tree_base { | |
bool m_isback; | |
_rb_tree_base *m_parent; | |
_rb_tree_base *m_left; | |
_rb_tree_base *m_right; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Generated from: libcocos2dcpp.30.so | |
// Decompiled by Acaruso | |
struct AchievementBar { | |
cocos2d::CCNode* targetScene_; //!< 0xf0 | |
}; | |
struct AchievementManager { | |
cocos2d::CCDictionary* reportedAchievements_; //!< 0xf4 | |
bool dontNotifyAch_; //!< 0xf8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* CXXHASH Header-Only C++ Hashing library | |
* Copyright (C) 2024 Calloc | |
* | |
* BSD 3-Clause License (https://opensource.org/license/bsd-3-clause) | |
* | |
* Redistribution and use in source and binary forms, with or without modification, | |
* are permitted provided that the following conditions are met: | |
* | |
* 1. Redistributions of source code must retain the above copyright notice, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Service | Reason | Ban Date | |
---|---|---|---|
yopmail.com | Alt accounts this was a problem in 2020 | Sometime in 2021 | |
mail.com | dislikebombing/botting early beta level lists or alias features | late 2023 | |
outlook.com | comment ban evasions or alias features | early 2024 | |
hotmail.com | same reason as outlook.com | early 2024 | |
gurillamail.com | Used to work according to some older rummors. | Unknown | |
gmx.com | Acts the same as mail.com | Unknown | |
yandex.com | Unknown | Unknown | |
Protonmail | Likely For Spam | Unknown |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
GD Tornado by Calloc is an Account Spawner tool designed for making and spinning up bots | |
using aiohttp and asynchronous frameworks See License Below: | |
The MIT License (MIT) | |
Copyright © 2023 Calloc | |
Permission is hereby granted, free of charge, to any person obtaining | |
a copy of this software and associated documentation files (the “Software”), |