What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[Plugin] Built in LUA Relogger

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
 
Character is chracter name and usename is your wow login email address
 
Where did the owner of the plugin? Make support for Russian (Cyrillic) servers please
 
Tested = YES
Works = YES
Steals = NO
BUGSFOUND = 0
EXEMPLAR = AWESOME

;)
 
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);
        }
 
Back
Top