TUServerMU

MuOnline => Cliente MU => Extras => Tema comenzado por: Vazamento on April 16, 2024, 09:18:48 PM

Titulo: DLL Auto POT PARA VERSÃO SEASON 2 1.02R
Posteado por: Vazamento on April 16, 2024, 09:18:48 PM
DLL Auto Pot Season 2 1.02 R

F5 ATIVA E DESATIVA



Code: [Select]
#include "stdafx.h"
#include "AutoPot.h"


CAutoClick gAutoClick;

CAutoClick::CAutoClick()
{
this->m_Theread = NULL;

//this->CreateAutoClick();
}

CAutoClick::~CAutoClick()
{
if (this->m_Theread != NULL)
{
TerminateThread(this->m_Theread, 0);
CloseHandle(this->m_Theread);
this->m_Theread = NULL;
}
}

void CAutoClick::CreateAutoClick()
{

GetCursorPos(&this->CursorCoords);

if (this->m_Theread == NULL)
{
this->m_Theread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)this->AutoClickWorker, this, 0, 0);
}
}

DWORD WINAPI CAutoClick::AutoClickWorker(CAutoClick* AutoClick)
{
while (1)
{
Sleep(20);

if (AutoClick->m_ClickRight == 1 || AutoClick->m_ClickLeft == 1)
{
if (AutoClick->m_ClickRight == 1)
{
keybd_event('Q', 0, 0, 0);
Sleep(30);
keybd_event('Q', 0, KEYEVENTF_KEYUP, 0);
Sleep(30);
keybd_event('W', 0, 0, 0);
Sleep(30);
keybd_event('W', 0, KEYEVENTF_KEYUP, 0);
Sleep(30);
keybd_event('E', 0, 0, 0);
Sleep(30);
keybd_event('E', 0, KEYEVENTF_KEYUP, 0);
Sleep(30);
}

if (AutoClick->m_ClickLeft == 1)
{
SendMessage(g_hWnd, WM_LBUTTONDOWN, MK_LBUTTON,0);
Sleep(30);
SendMessage(g_hWnd, WM_LBUTTONUP, MK_LBUTTON,0);
Sleep(30);
}
}
}

return 1;
}


Download : (http://i.imgur.com/Z9MYwwl.png)

Creditos: João Vithor
Titulo: Re: DLL Auto POT PARA VERSÃO SEASON 2 1.02R
Posteado por: puckbluepeter on September 05, 2024, 04:51:45 AM
 Ele ajuda os jogadores a curar automaticamente seus personagens sem a necessidade de clicar manualmente nas poções, proporcionando maior comodidade em combates intensos.
Titulo: Re: DLL Auto POT PARA VERSÃO SEASON 2 1.02R
Posteado por: Creazsia on October 09, 2024, 08:56:05 AM
how to add it on client and server side ?
Titulo: Re: DLL Auto POT PARA VERSÃO SEASON 2 1.02R
Posteado por: iSh4dow on January 03, 2025, 11:41:39 PM
Alguno pudo hacerlo funcionar para las seasons mas nuevas?
Titulo: Re: DLL Auto POT PARA VERSÃO SEASON 2 1.02R
Posteado por: donna1205 on June 02, 2025, 12:44:33 AM
how to add it on client Sprunki (https://sprunki.org) and server side ?
You’ll inject a DLL into the MU client (main.exe) to:
Hook key input (F5)
Check health/mana
Send the appropriate pot usage packet