750 Commits

Author SHA1 Message Date
julianacat
3115c8f503 Merge pull request #193 from julianacat/master
Made teammate setting have more options
Having the setting is usefull due to playing medic, it would be nice to choose to only target your team or both
2017-07-17 00:25:11 -05:00
julianacat
79115daf28 team aimbot settings wew 2017-07-17 00:22:31 -05:00
julianacat
88698cfa39 Merge pull request #192 from julianacat/master
Updated followbot code + Misc changes
2017-07-16 22:40:53 -05:00
julianacat
257d7e1682 Dont you just like clean syntax? 2017-07-16 22:21:28 -05:00
julianacat
e80ed09ba6 Updated menu for push 2017-07-16 22:18:54 -05:00
julianacat
e45acd8805 Merge pull request #8 from nullifiedcat/master
update fork for push
2017-07-16 21:35:18 -05:00
julianacat
fc38d071d0 Fixed followbot dying 2017-07-16 21:26:40 -05:00
julianacat
819af72987 well crap... 2017-07-15 17:52:00 -05:00
julianacat
259e073cfb Revert aimbot change 2017-07-15 17:49:13 -05:00
julianacat
ca753b202a re-added triggerbot presision 2017-07-15 17:44:40 -05:00
nullifiedcat
390f499ffe fix crash when changing thirdperson settings in menu 2017-07-15 16:38:10 +03:00
nullifiedcat
c4ac161569 Merge branch 'master' of https://github.com/nullifiedcat/cathook 2017-07-15 14:38:49 +03:00
nullifiedcat
133830a1c6 AutoReflect key + experimental cat_nolerp 2017-07-15 14:38:13 +03:00
julianacat
b42afe7feb Update README.md 2017-07-14 19:22:07 -05:00
nullifiedcat
9d13e787b6 custom spam/killsay files automatically reload. fix imgui int for some
catvars
2017-07-14 20:47:27 +03:00
julianacat
984385d92e stuff 2017-07-13 22:28:56 -05:00
julianacat
4c2ad9e60e Merge pull request #7 from nullifiedcat/master
update fork from main
2017-07-13 15:33:34 -05:00
julianacat
22d8716b05 Fixed minigun autoshoot per request 2017-07-13 15:26:58 -05:00
julianacat
cae1a5b542 Added ignore deadringer and some checks to auto sticky and reflect 2017-07-13 14:43:20 -05:00
nullifiedcat
30bba4ceb4 fix rare aimbot-related segv crash 2017-07-13 10:39:28 +03:00
julianacat
36d809c7b7 Update README.md 2017-07-11 12:11:28 -05:00
julianacat
26fc159cc3 Followbot Rework 2017-07-11 08:57:39 -05:00
nullifiedcat
26f45be6a3 remove gitignored files from repository 2017-07-09 19:59:56 +03:00
nullifiedcat
9664a3c8ad Merge pull request #187 from polivilas/patch-1
.gitignore
2017-07-09 19:48:50 +03:00
polivilas
43748f9bc2 .gitignore
nice folders in main branch dude
2017-07-09 19:39:55 +03:00
nullifiedcat
b5cc9f3f20 Spell Book ESP #185 2017-07-09 18:55:39 +03:00
nullifiedcat
90efebb3ba kinda fixed airstuck, added "infinite healthpacks" (work in progress) 2017-07-09 14:55:32 +03:00
nullifiedcat
583ba016c3 probably fixed random disguised spies have "precision", close #24 2017-07-09 10:26:05 +03:00
nullifiedcat
ad93496365 fix instant weapon switch type 2017-07-08 12:22:27 +03:00
nullifiedcat
a6ebaf3446 GUI update + fix callout + fix events 2017-07-08 12:15:26 +03:00
nullifiedcat
c6ad7972e8 remove 4 month old compiled libcathook.so from github repo 2017-07-07 18:14:49 +03:00
nullifiedcat
f61de9b905 added link to full list of features to readme 2017-07-07 17:45:00 +03:00
nullifiedcat
80dda674c0 remove extra '0' 2017-07-07 15:28:58 +03:00
nullifiedcat
953284c2c0 updated README.md 2017-07-07 14:02:37 +03:00
nullifiedcat
cb638a6e33 upload banner (will be added to readme) 2017-07-07 14:01:28 +03:00
nullifiedcat
82089d5285 heal arrows callout, close #175 2017-07-07 13:17:34 +03:00
nullifiedcat
a1fde3f4de white weapon glow implemented, close #176 2017-07-07 12:47:44 +03:00
nullifiedcat
c2d6171e96 Merge branch 'master' of https://github.com/nullifiedcat/cathook/ 2017-07-06 22:22:20 +03:00
nullifiedcat
264690a6a2 switch to style suggested by juke box instead of default ImGui style 2017-07-06 22:20:03 +03:00
julianacat
4f3631e14f Merge pull request #180 from julianacat/master
Add Weapons to proj aimbot
2017-07-06 09:38:30 -05:00
nullifiedcat
60681b08bb Improved RemoveCond 2017-07-06 14:34:11 +03:00
nullifiedcat
4610b19b86 replace make -j4 with build-tf2 2017-07-06 09:04:54 +03:00
nullifiedcat
d3e3becd54 Merge pull request #178 from SylveonBottle/patch-1
Tips depend on target shell and yours is unknown. Add a shebang.
2017-07-06 08:59:05 +03:00
SylveonBottle
4134b2ddb3 Tips depend on target shell and yours is unknown. Add a shebang.
Different shells support different features. To give effective advice, ShellCheck needs to know which shell your script is going to run on. You will get a different numbers of warnings about different things depending on your target shell.
ShellCheck normally determines your target shell from the shebang (having e.g. #!/bin/sh as the first line). The shell can also be specified from the CLI with -s, e.g. shellcheck -s sh file.
If you don't specify shebang nor -s, ShellCheck gives this message and proceeds with some default (bash).
Note that this error can not be ignored with a [[directive]]. It is not a suggestion to improve your script, but a warning that ShellCheck lacks information it needs to be helpful.

https://github.com/koalaman/shellcheck/wiki/SC2148
2017-07-05 14:07:34 -05:00
nullifiedcat
7ea0cbd073 github suggested that I should add code of conduct 2017-07-05 21:24:11 +03:00
nullifiedcat
6e723b1e2c added update-data to update script 2017-07-05 18:04:20 +03:00
nullifiedcat
ef04124606 added option to disable aimbot detection for anti-cheat 2017-07-05 17:26:18 +03:00
nullifiedcat
fe0a7dd879 menu cleanup and update 2017-07-05 17:12:04 +03:00
nullifiedcat
d736a3d99c added min size for emoji esp with auto-scaling 2017-07-05 16:54:26 +03:00
nullifiedcat
86d2ec9d8e update readme? 2017-07-05 14:52:34 +03:00