Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Invisibot to make use of Nexto instead of the now removed Kamael. #269

Merged
merged 4 commits into from
Nov 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions RLBotPack/Invisibot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Invisibot is Rocket League bot that has invisiblity powers.

It is powered by Kamael and RLUtilities.
It is powered by Nexto and RLUtilities.

# How does it work?

Expand Down Expand Up @@ -30,6 +30,6 @@ give other bots invisibility powers. Here are the requirements:
The bot is working pretty well. Sometimes the simulation is not perfect and it results
in the bot not being in the place that the "controlling" bot expects. This results in
invisibot performing worse than the "controlling" bot. Since the controlling bot is
Kamael though, a bad Kamael still performs pretty well.
Nexto though, a bad Nexto still performs pretty well.


2 changes: 1 addition & 1 deletion RLBotPack/Invisibot/src/invisibot.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ developer = azeemba
description = This Delorean has mastered more than time travel. What it has learned is: You can't beat what you can't see.

# Fun fact about the bot
fun_fact = Invisibot is Kamael with invisibility powers.
fun_fact = Invisibot is Nexto with invisibility powers.

# Link to github repository
github = https://github.com/azeemba/invisibot
Expand Down
2 changes: 1 addition & 1 deletion RLBotPack/Invisibot/src/invisibot.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from rlbot.utils.class_importer import import_agent

botlib = import_agent(path.abspath('../Kamael_family/Kamael.py'))
botlib = import_agent(path.abspath('../Necto/Nexto/bot.py'))
BaseBot = botlib.get_loaded_class()

from rlbot.agents.base_agent import SimpleControllerState
Expand Down