but I cant launch lobby. I wrote a script that checks lobby chat and when they write "gg" the lobby should start but the lobby wont start. I couldnt find any other function that can start a lobby with option selection_priority_rules.
@channel.on('message')
def do_stuff(channel, message):
if message.text == "gg":
dota.launch_practice_lobby()
I can create lobby with code bellow:
but I cant launch lobby. I wrote a script that checks lobby chat and when they write "gg" the lobby should start but the lobby wont start. I couldnt find any other function that can start a lobby with option selection_priority_rules.