Results 1 to 5 of 5

Threaded View

  1. #1
    meyer74's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    121
    Reputation
    10
    Thanks
    1,209

    Smile RoTMG - Login Script AHK

    Tired of logging into your account when you have a HUGE PASSWORD!? I am. My password is about 70 letters and 10 numbers. So I Created this nice and easy script :)

    HOW TO USE

    1. Change the EMAIL HERE to your E-mail
    2. Change the PASSWORD HERE to your Password
    3. Open your game and then type in email and press tab. Once you have pressed tab, it replaced email with your password.
    4. type password and press enter. Once you've pressed enter, it will have replaced password with your password, and you will login!

    Please tell me what you think about my work :)

    #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
    SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.


    SetKeyDelay 0
    SetMouseDelay 0
    SetTitleMatchMode 2
    SetNumLockState, On

    GroupAdd rotmg, Realm of the Mad God
    GroupAdd rotmg, realmofthemadgod
    GroupAdd rotmg, AGCLoader
    GroupAdd rotmg, Play Realm of the Mad God
    GroupAdd rotmg, Adobe Flash Player 10
    GroupAdd rotmg, Adobe Flash Player 11
    GroupAdd rotmg, Adobe Flash Player 12
    GroupAdd rotmg, Adobe Flash Player 13
    GroupAdd rotmg, Adobe Flash Player 14
    GroupAdd rotmg, Adobe Flash Player 15


    Suspend on

    WinNotActive()

    WinActive()
    {
    Suspend Off
    WinWaitNotActive ahk_group rotmg
    {
    WinNotActive()
    }
    }
    WinNotActive()
    {
    Suspend on
    WinWaitActive ahk_group rotmg
    {
    WinActive()
    }
    }

    ; E-Mail
    ::email:EMAIL HERE
    MsgBox You typed "Email".
    return

    ; password
    ::password::PASSWORD HERE
    MsgBox You typed "password".


    ; sends clipboard to the chat using the enter key.
    ek:
    Blockinput, on
    Send {Enter}
    Send ^v
    Send {Enter}
    Blockinput, off
    Return
    Last edited by meyer74; 07-18-2014 at 02:32 PM.

Similar Threads

  1. AHK login script (non fullscreen only....)
    By dg123 in forum Realm of the Mad God Tutorials & Source Code
    Replies: 5
    Last Post: 07-19-2013, 10:11 PM
  2. [Source Code] [AU3] RotMG Login script
    By liquidgalaxy in forum Realm of the Mad God Hacks & Cheats
    Replies: 1
    Last Post: 12-04-2012, 11:04 AM
  3. [Request] Please Upload Cf orginal login script
    By HaxPro in forum CrossFire Mods & Rez Modding
    Replies: 1
    Last Post: 07-24-2010, 10:35 PM
  4. [Help]login script
    By axg24 in forum CrossFire Help
    Replies: 7
    Last Post: 06-09-2010, 07:22 AM
  5. MPGH Login Script(Help)
    By ShadowPwnz in forum Visual Basic Programming
    Replies: 7
    Last Post: 02-21-2010, 08:16 AM

Tags for this Thread