Instructions:
1) Run AVA & Get Into A Channel.
2) Run AFK Bot as Administrator.
3) Choose Your Extra Settings From AFK Bot.
4) Click "Start AFK Bot".
5) Go Back To AVA And Keep AVA As Foreground Window.
6) Relax While Bot Takes Action.
Virus Scan:
Sorry I could only provide 1 virus scan. Virus Total & Jotti are blocked for me. I mean I blocked them in the "host" and now I unblocked it, but it's still not working somehow -.-
Edit: Virus Total now worked, weird. Lel. https://www.metascan-online.com/en/s...0b9f7967352e1d
Hey @Riddick bro. Thanks for moving the thread. Also yeah sorry I forgot to add attachment! :P. And I've added the virus scans .
Approved /
Originally Posted by jaydeeph
Screenshot:
Instructions:
1) Run AVA & Get Into A Channel.
2) Run AFK Bot as Administrator.
3) Choose Your Extra Settings From AFK Bot.
4) Click "Start AFK Bot".
5) Go Back To AVA And Keep AVA As Foreground Window.
6) Relax While Bot Takes Action.
Virus Scan:
Sorry I could only provide 1 virus scan. Virus Total & Jotti are blocked for me. I mean I blocked them in the "host" and now I unblocked it, but it's still not working somehow -.-
Edit: Virus Total now worked, weird. Lel. https://www.metascan-online.com/en/s...0b9f7967352e1dⓘ
Why do you need to keep the foreground window to be AVA?
You could just force it to be the AVA window(if AVA is running obv)
Use this API for it:
Code:
VB.NET
'''
''' <summary>Brings the thread that created the specified window into the foreground and activates the window. Keyboard input is directed to the window, and various visual cues are changed for the user. The system assigns a slightly higher priority to the thread that created the foreground window than it does to other threads.</summary>
''' <param name="hWnd">A handle to the window that should be activated and brought to the foreground.</param>
Public Declare Function SetForegroundWindow Lib "user32" (ByVal hWnd As IntPtr) As Boolean
C++
BOOL WINAPI SetForegroundWindow(
_In_ HWND hWnd
);
You get the hWnd (handle to Window) by using FindWindow, then you force the AVA window to be in the foreground.
Originally Posted by R3DDOT
Why do you need to keep the foreground window to be AVA?
You could just force it to be the AVA window(if AVA is running obv)
Use this API for it:
Code:
VB.NET
'''
''' <summary>Brings the thread that created the specified window into the foreground and activates the window. Keyboard input is directed to the window, and various visual cues are changed for the user. The system assigns a slightly higher priority to the thread that created the foreground window than it does to other threads.</summary>
''' <param name="hWnd">A handle to the window that should be activated and brought to the foreground.</param>
Public Declare Function SetForegroundWindow Lib "user32" (ByVal hWnd As IntPtr) As Boolean
C++
BOOL WINAPI SetForegroundWindow(
_In_ HWND hWnd
);
You get the hWnd (handle to Window) by using FindWindow, then you force the AVA window to be in the foreground.
want share your code if yes PM me or skype mE "minthae1997"
Nice work dude. xD
Originally Posted by R3DDOT
Why do you need to keep the foreground window to be AVA?
You could just force it to be the AVA window(if AVA is running obv)
Use this API for it:
Code:
VB.NET
'''
''' <summary>Brings the thread that created the specified window into the foreground and activates the window. Keyboard input is directed to the window, and various visual cues are changed for the user. The system assigns a slightly higher priority to the thread that created the foreground window than it does to other threads.</summary>
''' <param name="hWnd">A handle to the window that should be activated and brought to the foreground.</param>
Public Declare Function SetForegroundWindow Lib "user32" (ByVal hWnd As IntPtr) As Boolean
C++
BOOL WINAPI SetForegroundWindow(
_In_ HWND hWnd
);
You get the hWnd (handle to Window) by using FindWindow, then you force the AVA window to be in the foreground.
Man, everyone in this forum needs to stop quoting the OP thread, I find that LQP. Anyways, thanks for the advice. I knew I could do that, but was just lazy to add it. I'll be adding it in a newer version I realise, since there's a little bug in the current one. PS: The code you gave me is in C++, I use VB.NET xD. Still learning C++ though. But don't worry, I know where to get the API's . Thanks again.
Edit: I really need to read posts carefully :/ because I just realised you gave for VB & C++. My bad, lol, ignore the PS.