Where is the source code ?
Posted: Tue Feb 22, 2022 8:34 pm
I am searching for the actual source code of sp bc all that I can find are those weird python files that are so helpful like a brownout during a voice call:
they look always like this:
The name of the file.
# ../players/bots.py
My question is now where is the code that should be in this file?
they look always like this:
The name of the file.
# ../players/bots.py
Code: Select all
"""Provides bot specific functionality."""
# =============================================================================
# >> FORWARD IMPORTS
# =============================================================================
# Source.Python Imports
# Bots
from _players._bots import BotCmd
from _players._bots import BotController
from _players._bots import bot_manager
# =============================================================================
# >> ALL DECLARATION
# =============================================================================
__all__ = ('BotCmd',
'BotController',
'bot_manager',
)
My question is now where is the code that should be in this file?