alekxeyuk / Skribbl.io-Bot

My try at creating fully automated game bot.
MIT License
65 stars 48 forks source link

"join" parameter doesn't work #21

Closed ghost closed 5 years ago

ghost commented 5 years ago

The join parameter doesn't work, meaning I can't join private games.

ghost commented 5 years ago

Fixed, head to line 250 and replace the code with

await sio.connect(f"wss://skribbl.io:{SETTINGS['port']}/{SETTINGS['join']}")

ghost commented 5 years ago

Note, skribbl.io uses 3 different ports for private games, 5001, 5002, 5003, usually its 5002 or 5001; I would make a .bat that does both and then close the one that doesn't work.

fuck-shithub commented 5 years ago

You mean line 254 in the unedited code. Just gonna say it so people won't get confused. If you have edited the code then search for this code:

await sio.connect(f"wss://skribbl.io:{SETTINGS['port']}/")

and replace it with:

await sio.connect(f"wss://skribbl.io:{SETTINGS['port']}/{SETTINGS['join']}")

Make sure indentation is correct.

ar065 commented 4 years ago

This no longer works...