This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import math | |
| from random import shuffle | |
| names = ['Roger', 'Rafał', 'Micu', 'Urban', 'Seba', 'Mat', 'Cwaniak', 'Mariusz', 'Funia', 'Kappa'] | |
| class Player: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "name": "ADDER", | |
| "hex": "0xB779A091", | |
| "uint32": "3078201489", | |
| "int32": "-1216765807", | |
| "category": "Super", | |
| "desc": "", | |
| "update_name": "", | |
| "low_price": "1,000,000", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pynput import keyboard | |
| import random | |
| import time | |
| keyControl = keyboard.Controller() | |
| def on_press(key): | |
| if key == keyboard.Key.esc: | |
| return False |