AI Aimbot Starter Code
1.0.0
準備您的自訂程式碼並將其提交給將於今年稍後結束的 Aimbot 國際賽。單獨或單獨工作。請觀看以下影片以了解更多資訊。
所有自訂程式碼必須透過啟動器提交。 https://youtube.com/live/mtV6w2qhaNs?feature=share
下載 RootKit 啟動器。它是免費的。無需編碼。
使用入門套件是製作自己的機器人的最佳方式。這是您必須向我們提交代碼才能開始比賽的方式。還有更多原因。
官方競爭標準
訪問商店中的模型
模型將為您自動轉換
設定設定檔可以在您的程式碼中使用
您可以在我們的商店發布您的程式碼
每個人都有啟動器(超過 4,600 個使用者)
你必須學習如何使用API/SDK
我們為您提供了 2 個不同的範例。
一個簡單的範例,其中包含您想要啟動的大多數專案的最低限度。
使用開源 Aimbot 的範例
將 main.py 放在任何地方。要運行它,語法為python main.py <settingsProfile> <yoloVersion> <modelFileName> <customCode>
就好像您要匯入程式碼一樣對待它。這是它的外觀範例。 python main.py Default 5 v5_base_s.pt example_bare.main
將自訂程式碼資料夾移至%APPDATA%ai-aimbot-launchercustomCode
中。
如果您想將其發佈到商店,請在不和諧中@Techincal Champions
。
version: int # 0-2 (pytorch, onnx, engine)settingsProfile: str # 位於 %APPDATA%ai-aimbot-launcheraimbotSettingspaidTier: int # 0-3 (免費,支持者 t1, t2, t3) 的設定檔名 yoloVersion: int # 5 或8 (yolov5 或yolov8)modelfileName: str # 位於%APPDATA%ai-aimbot-launchermodels 中的模型檔名
def main(**argv):print("我的自訂機器人")print(argv)
def main(version,settingsProfile,paidTier,yoloVersion,modelFileName):print("我的自訂機器人")
from .schema.settings import Settings # 包含模式資料夾import jsonimport osdef main(version: int = 0,settingsProfile: str = "",paidTier: int = 0,yoloVersion: int = 0,modelFileName: str = ""): str = ""): appdataLocation = os.getenv("APPDATA")settingsPath = os.path.join(appdataLocation, "ai-aimbot-launcher", "aimbotSettings", f"{settingsProfile.lower()}.json")# 使用open(settingsPath ) 載入設定, "r") as f:settings = json.load(f)settings = Settings(**settings)# 取得模型路徑modelPath = os.path.join(appdataLocation, "ai-aimbot-launcher", " models", modelFileName )