• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

Don't Know

Xele

Enthusiast
hi there

i wanna make a program that will send the user/pass automatically into wow.exe

this is my Source

Code:
#include <stdio.h>
#include <iostream>
#include <cstdlib>
#include <windows.h>
#include <winuser.h>
#include <conio.h>

LPCTSTR WindowName = "World of Warcraft";
HWND Find = FindWindow(NULL,WindowName);

void main()
{
    if (Find)
    {
            std::string user = "Admin";
            std::string pass = "12345";
            // HERE I dont Know How Send them to wow.exe

    }
}
 

GuacSenpai

Exalted Member
The repo I linked is a console application that lets you give it realmlist and account info and will then login to the server by handling the packets sent by the server as acting as a client.
 
Top