Prepare your custom code and submit it for the aimbot internation which ends later this year. Work alone or solo. Check out the following videos to learn more.
All custom code must be submitting thru the launcher. https://youtube.com/live/mtV6w2qhaNs?feature=share
Download the RootKit Launcher. It is FREE. No coding required.
Using the starter kit is the best way to make your own bot. This is the way you have to submit code to us for competitions to start with. here are more reasons.
- Offical Competitive Standard
- Access to models in Store
- Models will be auto converted for you
- Setting profiles can be used in your code
- You can publish your code on our store
- Everyone has the launcher (Over 4,600 users)
- You have to learn how to use an API/SDK
We included 2 different examples for you.
-
A bare example which has the bare minimum for most projects you would want to start.
-
An example using the Open Source Aimbot
Place main.py anywhere. To run it, the syntax is
python main.py <settingsProfile> <yoloVersion> <modelFileName> <customCode>
Treat it as if you were gonna import your code. Here is an example of what it would look like.
python main.py Default 5 v5_base_s.pt example_bare.main
Move your custom code folder into %APPDATA%\ai-aimbot-launcher\customCode
.
If you want to post it on the store, @Techincal Champions
in the discord.
version: int # 0-2 (pytorch, onnx, engine)
settingsProfile: str # file name of settings located in %APPDATA%\ai-aimbot-launcher\aimbotSettings
paidTier: int # 0-3 (free, supporter t1, t2, t3)
yoloVersion: int # 5 or 8 (yolov5 or yolov8)
modelfileName: str # file name of model located in %APPDATA%\ai-aimbot-launcher\models
def main(**argv):
print("My custom bot")
print(argv)
def main(
version,
settingsProfile,
paidTier,
yoloVersion,
modelFileName
):
print("My custom bot")
from .schema.settings import Settings # Include the schema folder
import json
import os
def main(
version: int = 0,
settingsProfile: str = "",
paidTier: int = 0,
yoloVersion: int = 0,
modelFileName: str = ""
):
appdataLocation = os.getenv("APPDATA")
settingsPath = os.path.join(appdataLocation, "ai-aimbot-launcher", "aimbotSettings", f"{settingsProfile.lower()}.json")
# loading settings
with open(settingsPath, "r") as f:
settings = json.load(f)
settings = Settings(**settings)
# getting model path
modelPath = os.path.join(appdataLocation, "ai-aimbot-launcher", "models", modelFileName)