GithubHelp home page GithubHelp logo

rootkit-org / ai-aimbot-starter-code Goto Github PK

View Code? Open in Web Editor NEW
4.0 5.0 3.0 3.53 MB

Launcher Custom Code Stater Pack for the World's Best AI Aimbot

Home Page: https://rootkit.org

License: GNU General Public License v3.0

Python 98.78% Shell 0.46% Dockerfile 0.76%
aimbot aimbot-cs2 aimbot-csgo aimbot-fortnite aimbot-tarkov aimbot-valorant cs2 cs2-aimbot csgo-aimbot fortnite

ai-aimbot-starter-code's Introduction

World's Best AI Aimbot Banner

Pull Requests Welcome

✨Make sure you have the Launcher before starting✨

Over 10,000 users use the Launcher

🔴 LIVE: Aimbot Internation 2024 - Win $1,000s

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.

Pros

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)

Cons

  • You have to learn how to use an API/SDK

What's in the box?

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

Running

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

Deploying

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.

Starter Function

What the Launcher Sends you

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

Example 1

def main(**argv):
    print("My custom bot")
    print(argv)

Example 2

def main(
    version,
    settingsProfile,
    paidTier,
    yoloVersion,
    modelFileName
    ):
    print("My custom bot")

Example 3

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)

ai-aimbot-starter-code's People

Contributors

qfc9 avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.