BridgeSenseDev / Dank-Memer-Grinder

Dank Memer Grinder is an advanced selfbot with a clean GUI and captcha solver
MIT License
66 stars 27 forks source link

Idea? #90

Closed AnonymousFxz closed 1 year ago

AnonymousFxz commented 1 year ago

I've noticed whenever I open the program it makes a new folder in \AppData\Local\Temp and it kinda gets annoying is there a way to make all the code go in the folder the .exe was opened in?

BridgeSenseDev commented 1 year ago

Its a temp folder for a reason why is it annoying

skifli commented 1 year ago

No, the exe was compiled using one-file mode, meaning it needs to make a separate directory to extract the code into. A fix would be to compile it in one-dir mode but then the folder you downloaded the executable into will have 100s of files (DLLs, code, etc), making it harder to find the actual executable when you want to run it.

BridgeSenseDev commented 1 year ago

^^

IncognitoTGT commented 1 year ago

Also the project is open source so you can edit the code and recompile it so that it goes to another directory, such as ~/dankcache or something.

skifli commented 1 year ago

Also the project is open source so you can edit the code and recompile it so that it goes to another directory, such as ~/dankcache or something.

No you can't, as the directory the grinder is extracted to is not linked to the program. It is linked to the compiler used, which is PyInstaller, and so you would have to find a way to tell PyInstaller to use a different directory.