Skip to content

Instantly share code, notes, and snippets.

@mzfr
Last active May 2, 2020 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mzfr/a6d6693c1623c14404debf98a2accccb to your computer and use it in GitHub Desktop.
Save mzfr/a6d6693c1623c14404debf98a2accccb to your computer and use it in GitHub Desktop.

In this game the playlist are just big even numbers. So you can actually create your own playlist. Like try some even number and see if it works for you.

Here is the list of all the playlist that I could found/generate:

  • 235098

  • 224344 - EPIC

  • 223698 - Mi lista equipo3

  • 236000

  • 236002

  • 236004

  • 236006

  • 236008

  • 236010 - FFA strategy

  • 236012 - FFA strategy2

  • 236014 - FFA Strategy4

  • 236016 - Just sport

  • 236018 - FFA something random

  • 227500 - have lot of meteor shower and is FFA

  • 227502 - All games

  • 227504 - All games2

  • 227506 - All games3

  • 227508 - Myteam playlist

  • 227510 - Something random(literally)

  • 227512 - Something random(literally)

  • 227514 - cope something(in french)

  • 227516 - something random

@mzfr
Copy link
Author

mzfr commented May 2, 2020

Also if you want to use random playlist every time you start the server then you can do the following things to the config.py file:

import random

Playlists = [None, 235098, 224344, 223698, 236000, 236002, 236004, 236006, 236008, 236010, 236012, 236014, 236016, 236018, 227500, 227502, 227504, 227506, 227508, 227510, 227512, 227514, 227516]

config['playlistCode'] = random.choice(Playlists)
...

This will make sure that you have random playlist everytime the server is started.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment