USING AHK FILES IS GETBAN NOW

Posts 114 of 14 · Page 1 of 1
USING AHK FILES IS GETBAN NOW
TODAY IN STEAM HAVE 1 PATCH
AND IF YOU USER AHK FILES PUBLIC OR YOU DEV YOU GOT BANNN AFTER 5 MINUTES
r u from stone age dude? thats news has been spread long time ago
You have a high Risk of a Ban when you use a *public* AHK Script, that's nothing new.
how would i edit a public script so i dont get banned
Quote Originally Posted by bigblackmichael View Post
how would i edit a public script so i dont get banned
make your own using the same logic they did but with different functions or in a different way. Like this

Code:
seconds = 0
minutes = 0
hours = 0
def check_run_time():
    print('Time Wasted While Running The Script:\n'+str(seconds)+' Seconds and', str(minutes)+
          ' Minutes and', str(hours)+' Hours!')
 
def run_time():
    global seconds
    global minutes
    global hours
    for time_count in range(1, 60):
        seconds += 1
        if seconds == 60:
            seconds = 1
            minutes += 1
        if minutes == 60:
            minutes = 0
            hours += 1
        time.sleep(1)
    run_time()

keyboard.add_hotkey('t', check_run_time, timeout=5, trigger_on_release=True)
run_time()
to something like this. But this still maybe not enough and you should do more.

Code:
tc = 0
 
def Time_check():
    global tc
    if tc == 0:
        tc = 1
    elif tc == 1:
        tc = 0
    else:
        return
 
def run_time():
    seconds = 0
    minutes = 0
    hours = 0
    for time_count in range(1, 120):
        seconds = seconds + 1
        if seconds == 120:
            seconds = 1
            minutes = minutes + 2
        if minutes == 120:
            minutes = 0
            hours = hours + 1
        time.sleep(0.5)
        if tc == 1:
            print('Time Wasted While Running The Script:\n'+str(seconds/2)+' Seconds and', str(minutes/2)+
                  ' Minutes and', str(hours)+' Hours!')
    run_time()
 
keyboard.add_hotkey('t', Time_check, trigger_on_release=True)
run_time()
You think the ban is duo to some "public" ahk? they got their method to evaluate your mouse movements.. doesn't matter what you use.. ahk, exe or any other macro method..
Quote Originally Posted by prolol475 View Post
You think the ban is duo to some "public" ahk? they got their method to evaluate your mouse movements.. doesn't matter what you use.. ahk, exe or any other macro method..
I'm using my own script method and until today without ban.
KK eae men, posso falar pv com você? Add ae namoralzinha.
i need , pls share
Might be a stupid question, but what about running scripts that aren't related to altering anything in the game itself?
Do they just ban anyone that runs AHK in the background?
Quote Originally Posted by cv4n3 View Post
Might be a stupid question, but what about running scripts that aren't related to altering anything in the game itself?
Do they just ban anyone that runs AHK in the background?
Yes! they just ban runs AHK file
And BAN account uses files exe . if the battleyes waring you
Quote Originally Posted by cv4n3 View Post
Do they just ban anyone that runs AHK in the background?
no they wouldn't do that, but i imagine if they detect it running, battle eye will get triggered and eye you down your throat and look for anything unusual/ unreal
well modification mouse input cause with AHK will get me banned ? why about macro from gaming software like logitech ?
Posts 114 of 14 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?