Way to download levels from official server
First run Wireshark and catch secret field of any user.
Then make HTTP POST request to http://www.boomlings.com/database/downloadGJLevel22.php that contains:
gameVersion=21
binaryVersion=35
gdw=0
levelID=<level id>
secret=<your secret>
Important to specify an empty User-Agent header otherwise Cloudflare will block us.
curl example: curl -X POST "http://www.boomlings.com/database/downloadGJLevel22.php" -d "gameVersion=21&binaryVersion=35&gdw=0&levelID=1389451&secret=XXXXXXX" -H 'User-Agent:'

#RobUseHTTPS
And as far as I understand, the main problem is that you are blocked from the servers. Maybe in this case it is better to send all requests from the client side.
And as far as I understand, the main problem is that you are blocked from the servers. Maybe in this case it is better to send all requests from the client side.
You can't move requests to client side because of CORS policy (as far as I know)
What if you use a proxy to change the server address for each request?
@iwalfy One small note: I understand why you censored the secret, but it's just a word that's used and can find in: https://docs.gd-programming.org/server/topics/secrets/
Another small note: it's easier to use gdbrowser locally than do all that stuff
@iwalfy One small note: I understand why you censored the secret, but it's just a word that's used and can find in: https://docs.gd-programming.org/server/topics/secrets/
I didn't know this at the time.