tritonas00 / RoRServerBot

Rigs of Rods Multiplayer Bot for RoRNet 2.44, updated to Python 3 and Discord
2 stars 3 forks source link

Is the newest version allready finished? #5

Closed Goetterescu closed 3 years ago

Goetterescu commented 3 years ago

The batch file which executes the program is missing, will it be added in the near future, or do I have to copy these files over the old version?

tritonas00 commented 3 years ago

Hi! Just run what that file used to run:

https://github.com/tritonas00/RoRServerBot/blob/1bc778385fc5d70087b10a1d41cb309e551175d6/start_bot.bat

C:\Python(Version)\python.exe -B services_start.py will do it

Goetterescu commented 3 years ago

Okay, thanks. But please implement it into the folder

Goetterescu commented 3 years ago

Edit: Im getting this error when launching the batch file C:\Users\Administrator\Desktop\RoRServerBot-master>C:\Python27\python.exe -B services_start.py File "services_start.py", line 409 async def on_ready(self): ^ SyntaxError: invalid syntax

tritonas00 commented 3 years ago

The bot requires python 3+, and discord.py

Goetterescu commented 3 years ago

Is there a tutorial on how and where to put discord.py? Cause Im really confused right now

tritonas00 commented 3 years ago
# Linux/macOS
python3 -m pip install -U discord.py

# Windows
py -3 -m pip install -U discord.py

https://pypi.org/project/discord.py/

Goetterescu commented 3 years ago

Thanks