A simple Geode mod that lets you edit your saved account ID directly in the game.
- Edit your account ID without external tools
- Changes are saved automatically
- Clean integration into the account login screen
- Customizable input label and callback system for mod devs
- Open the account login (or Refresh Login) screen in Geometry Dash
- Find the new "Account ID" input field
- Enter your desired account ID
- Changes save automatically after a short delay
This mod provides an API for other mods without any reason:
EditAccountID::get()->onNewID([](int id) {
// Your code here
});
EditAccountID::get()->m_inputLabel = "lol";Available callbacks:
onNewID- When account ID changesonInputSetup- When input field is createdonLabelSetup- When label is createdonInputTextChanged- When input text changesonAccountLoginLayerShow- When login layer appearsonAccountLoginLayerSetup- When login layer is set up
This mod was made for ability to refresh login for account with other id, preserving all save data (avoid unlink).
It will not help you login to other people's accounts, you still need a password for this. The fact is that even if the password and name of the old and new acc are same, game still will check the IDs. That's what the mod was for.