One Question by the option "Charachter" must i write there my Char Name or a Number ????? And UserName = CharName ? or my Honorbuddy Account Name ? Thanks
Is it possible to make character selection using character index rather then character name? It works good for me except for the part of character selection have to press ENTER every time wow gets disconnected.
Got my account hacked while using this relogger... I don't know if this is the cause but it looks like it is to me.
If someone wants to try the new version on github using numbers instead of names, hopefully this should support non english clients.
Hello everyone, I've just modified this plugin a little bit since my internet connection lacks after a router reconnect some minutes - so this plugin checks now wether your computer is connected to the internet or not. If yes - it continues the normal routine - if not it just sleeps the thread and does nothing. Here is the modified source code: paste-code - easily share snippets. - by Milchbeutel and for a quick overview thats the main "feature" of this modification : Code: [DllImport("wininet.dll")] private extern static bool InternetGetConnectedState(out int Description, int ReservedValue); private bool IsConnectedToInternet() { int Desc; return InternetGetConnectedState(out Desc, 0); }