diff --git a/README.md b/README.md index dcdab9c..f3f68e6 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Splitgate (discovered by ˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞˞#2373 on discord 06 *Default settings are good for most use cases. Read comments in code for more details.
**CAPS_LOCK is the default for toggling on and off the autoaim functionality** -`videoGameWindowTitle` - (CHANGES PER GAME) Window title of the game you want to play. Does not need to be the complete window title. +`videoGameWindowTitle` - (Legacy) Window title of the game you want to play. Does not need to be the complete window title. `aaRightShift` - May need to be changed in 3rd person games like Fortnite and New World. Typically `100` or `150` will be sufficient. @@ -166,12 +166,19 @@ We are a community based nonprofit. We are always open to pull requests on any o **We are always looking for new Volunteers to join our Champions! If you have any ideas for videos or programs, let us know!** +### Custom Aimbots +If you have some new functionality you have added to the bot you would like to show off and have people learn from, put it in here and send a Pull Request! + +Just add a folder to the `customScripts` folder with your github name and inside put your all your code and a `readme.md` explaining what they are and what they do. + +For an example, look at the `example-user` folder in `customScripts`. + ### Custom Models If you trained your own model, then submit a PR with it! -Just add a folder to the `custom` folder with your github name and inside put your `model(s)` and a `readme.md` explaining what they are and how you made them. +Just add a folder to the `customModels` folder with your github name and inside put your `model(s)` and a `readme.md` explaining what they are and how you made them. -For an example, look at the `example-user` folder in `custom`. +For an example, look at the `example-user` folder in `customModels`. Another view of the layout - @@ -180,3 +187,4 @@ Another view of the layout - exampleUsername/ model_general.pt readme.md + diff --git a/custom/trollatko/Robloxmodel.pt b/custom/trollatko/Robloxmodel.pt deleted file mode 100644 index 517a4cd..0000000 Binary files a/custom/trollatko/Robloxmodel.pt and /dev/null differ diff --git a/custom/exampleUsername/readme.md b/customModels/exampleUsername/readme.md similarity index 100% rename from custom/exampleUsername/readme.md rename to customModels/exampleUsername/readme.md diff --git a/custom/trollatko/readme.md b/customModels/trollatko/readme.md similarity index 100% rename from custom/trollatko/readme.md rename to customModels/trollatko/readme.md diff --git a/main_alt.py b/customScripts/Tector101/main_alt.py similarity index 100% rename from main_alt.py rename to customScripts/Tector101/main_alt.py diff --git a/customScripts/Tector101/readme.md b/customScripts/Tector101/readme.md new file mode 100644 index 0000000..4054804 --- /dev/null +++ b/customScripts/Tector101/readme.md @@ -0,0 +1,9 @@ +# DXCam mouse following + +This "alt" version uses a different method of utilizing DXCam to capture screen, and the capture region will always follow the cursor even if it isn't centered on the screen. However: +-performance are significantly worse +-CPS is limited by your game FPS +-This one is based off the AMD version, I dont have a nvidia GPU + +## More info +Contact Tector101 \ No newline at end of file diff --git a/customScripts/exampleUsername/main.py b/customScripts/exampleUsername/main.py new file mode 100644 index 0000000..c8d165b --- /dev/null +++ b/customScripts/exampleUsername/main.py @@ -0,0 +1,3 @@ +""" +My custom code here! +""" \ No newline at end of file diff --git a/customScripts/exampleUsername/readme.md b/customScripts/exampleUsername/readme.md new file mode 100644 index 0000000..e3ce119 --- /dev/null +++ b/customScripts/exampleUsername/readme.md @@ -0,0 +1,8 @@ +# Explain your model + +Tell the community about your model +- What you are doing differently +- How they can improve on it +- How they can go about exploring it +- What do they need to pip install +- Any set up info \ No newline at end of file