Originally posted by LegendaryGrape
*KNOWN BUGS AND GLITCHES*
-AutoDropShot- I dont know how it works
-Press down for aimbot. When you choose stuff on the menu aimbot turns on and off. I dont know how to stop this. So check by aiming after opening the menu if you dont want aimbot.
I too added Auto Drop Shot and Dpad mods to my edit. Great minds think alike
I fixed by autodropshot by changing the the waittill and notifyOnPlayerCommand like so..
self notifyOnPlayerCommand( "button_rtrig", "+attack" );
for ( ;; ) {
self waittill("button_rtrig");
self SetStance("prone");
To fix the aimbot turning on and off while the menu is open add this after the waittill that starts the thread
if (self.MenuIsOpen == false){
So it would look like
self waittill("dpad_down");
if (self.MenuIsOpen == false){
self thread startblah() }
self waittill("dpad_down");
if (self.MenuIsOpen == false){
self thread stopblah() }
Hope This Helps