Skip to content

Commit 98ca591

Browse files
authored
maxangle rename to minangle
1 parent ec7602b commit 98ca591

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

StateFarmClient.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@
320320
initModule({ location: tp.aimbotFolder, title: "1 Kill", storeAs: "oneKill", bindLocation: tp.combatTab.pages[1],});
321321
initModule({ location: tp.aimbotFolder, title: "LineOfSight", storeAs: "lineOfSight", bindLocation: tp.combatTab.pages[1],});
322322
tp.aimbotFolder.addSeparator();
323-
initModule({ location: tp.aimbotFolder, title: "MaxAngle", storeAs: "aimbotMaxAngle", bindLocation: tp.combatTab.pages[1], slider: {min: 0, max: Math.PI*2, step: 0.05}, defaultValue: Math.PI*2,});
323+
initModule({ location: tp.aimbotFolder, title: "MinAngle", storeAs: "aimbotMinAngle", bindLocation: tp.combatTab.pages[1], slider: {min: 0, max: Math.PI*2, step: 0.05}, defaultValue: Math.PI*2,});
324324
initModule({ location: tp.aimbotFolder, title: "AntiSnap", storeAs: "aimbotAntiSnap", bindLocation: tp.combatTab.pages[1], slider: {min: 0, max: 0.99, step: 0.01}, defaultValue: 0,});
325325
initModule({ location: tp.aimbotFolder, title: "AntiSneak", storeAs: "antiSneak", bindLocation: tp.combatTab.pages[1], slider: {min: 0, max: 5, step: 0.2}, defaultValue: 0,});
326326
tp.aimbotFolder.addSeparator();
@@ -2228,7 +2228,7 @@
22282228
if (extract("aimbot") && (extract("aimbotRightClick") ? isRightButtonDown : true) && ss.MYPLAYER.playing) {
22292229
if ( currentlyTargeting && currentlyTargeting.playing ) { //found a target
22302230
didAimbot=true
2231-
if ((!extract("silentAimbot")) && (targetingComplete||(extract("aimbotMaxAngle")>currentlyTargeting?.angleDiff))) {
2231+
if ((!extract("silentAimbot")) && (targetingComplete||(extract("aimbotMinAngle")>currentlyTargeting?.angleDiff))) {
22322232
const distanceBetweenPlayers = distancePlayers(ss,currentlyTargeting);
22332233

22342234
const aimbot=getAimbot(ss,currentlyTargeting);

0 commit comments

Comments
 (0)