[Script] Logon WoW menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 28
  1. #1
    sumsar_elleh's Avatar Member
    Reputation
    8
    Join Date
    Mar 2007
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Script] Logon WoW

    im still a noob at AutoIt but i made this script to log on wow for me.

    Code:
     
    Global $pause
    Run("C:\Program Files\World of Warcraft\World of Warcraft\WoW.exe")
     
    HotKeySet("{BS}", "Go")
    HotKeySet("{ESC}", "terminate")
     
    while 1
     sleep (100)
    WEnd
     
    func Go ()
    Send("USERNAME")
    Send("{TAB}")
    Send("PASSWORD")
    Send("{ENTER}")
    EndFunc
     
    Func terminate ()
     Exit 0
    EndFunc
    replace "C:\Program Files\World of Warcraft\World of Warcraft\WoW.exe" with the directory to
    your WoW.exe file (usually "C:\Program Files\World of Warcraft\WoW.exe")

    replace USERNAME with your WoW logon username
    replace PASSWORD with your WoW logon password

    so when you run this script, it will open wow for you, then when u are at the log on screen
    you press Backspace and it will write your username and password and log you on. then remember
    to press esc after that to exit the script (Remember to do this!!!! If you dont, and you press
    backspace when chatting, you will send username and password..... just like i did in the trade
    channel >_<)

    This is usefull for those people who are lazy like me, also i think it should protect you from most keyloggers since you arent pressing any keys. I cant guarantee though.

    if anyone can tell me how to make the script terminate itslef after the hotkey has been pressed once (so u dont have to press esc yourself) please tell me

    [Script] Logon WoW
  2. #2
    Despite's Avatar Banned
    Reputation
    29
    Join Date
    Jun 2007
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Script] Logon WoW

    Just wondering what this does?

    while 1
    sleep (100)
    WEnd

  3. #3
    randombob's Avatar Banned
    Reputation
    8
    Join Date
    Apr 2007
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Script] Logon WoW

    Originally Posted by Despite View Post
    Just wondering what this does?
    This keeps the script "idle", meaning it's waiting for an input from the user.

    if anyone can tell me how to make the script terminate itslef after the hotkey has been pressed once (so u dont have to press esc yourself) please tell me
    Code:
    Global 
    Run("C:Program FilesWorld of WarcraftWorld of WarcraftWoW.exe")
     
    HotKeySet("{BS}", "Go")
    HotKeySet("{ESC}", "terminate")
     
    while 1
     sleep (100)
    WEnd
     
    func Go ()
    Send("USERNAME")
    Send("{TAB}")
    Send("PASSWORD")
    Send("{ENTER}")
    exit
    EndFunc
     
    Func terminate ()
     Exit 0
    EndFunc
    What you could also do, instead of having the script wait for the user to press Backspace, you could use the WinWaitActive function.

    Code:
    HotKeySet("{ESC}", "terminate")
    
    Run("C:Program FilesWorld of WarcraftWorld of WarcraftWoW.exe")
     WinWaitActive("World of Warcraft")
    Go()
     
    func Go ()
    Send("USERNAME")
    Send("{TAB}")
    Send("PASSWORD")
    Send("{ENTER}")
    exit
    EndFunc
     
    Func terminate ()
     Exit 0
    EndFunc
    Last edited by randombob; 10-28-2007 at 03:45 PM.

  4. #4
    sumsar_elleh's Avatar Member
    Reputation
    8
    Join Date
    Mar 2007
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Script] Logon WoW

    Originally Posted by Despite View Post
    Just wondering what this does?
    What it does is make the scrip stay open so that you can press the hotkey. It makes an infinite loop of "Sleep (100)."

    If it wasnt there, the scrip would exit after WoW.exe has been opened.

    This is what the AutoIt Helpfile says:

    "Loop based on an expression.

    While...WEnd statements may be nested.
    The expression is tested before the loop is executed so the loop will be executed zero or more times.
    To create an infinite loop, you can use a non-zero number as the expression."

    Hope this helps

  5. #5
    sumsar_elleh's Avatar Member
    Reputation
    8
    Join Date
    Mar 2007
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Script] Logon WoW

    Thanks randombob

    Now i feel stupid cuz that was kinda obvious

  6. #6
    sumsar_elleh's Avatar Member
    Reputation
    8
    Join Date
    Mar 2007
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Script] Logon WoW

    Originally Posted by randombob View Post
    What you could also do, instead of having the script wait for the user to press Backspace, you could use the WinWaitActive function.
    I tried this, but the WoW window opens and then loads the login screen. so the script sends the log in info too soon. This makes it so that WoW doesnt register the info being sent, which makes it not work

    you could make a script that waits like 15 seconds and then send the info, that way you run the script, leave your comp, and come back 15 secs later and be logged on, but then if it loads faster you have to wait, and if it loads slower then it doesnt log in
    Last edited by sumsar_elleh; 10-28-2007 at 03:56 PM.

  7. #7
    Eepi's Avatar Member
    Reputation
    12
    Join Date
    Nov 2006
    Posts
    167
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Script] Logon WoW

    And I feel stupid too... Well I quess its because I AM stupid...

    So what should I do whit that text thing? Should I save that in Wordpad (or some other program) in right form? Like in .ini or something...

    PS. Sorry for bad english... (It isn't my native )

  8. #8
    sumsar_elleh's Avatar Member
    Reputation
    8
    Join Date
    Mar 2007
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Script] Logon WoW

    you put it in AutoIt, you can download it here AutoIt v3 - Downloads
    when you have AutoIt installed, then you right-click (like in a folder)> New > AutoIt Script

    name it what you want

    then right click on the thing you just created and choose "Edit Script"

    a window will open where you can make scripts

    hope this helped
    Last edited by sumsar_elleh; 10-28-2007 at 04:07 PM.

  9. #9
    Despite's Avatar Banned
    Reputation
    29
    Join Date
    Jun 2007
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Script] Logon WoW

    So if I have a program start when wow was minimized then had the program maximize wow automatically, the best way for the commands it executes would be a hotkey function?

  10. #10
    sumsar_elleh's Avatar Member
    Reputation
    8
    Join Date
    Mar 2007
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Script] Logon WoW

    im not sure i understand what you are saying

    but what this scrip does is open World of Warcraft, then when you are at the loggin screen YOU press Backspace, which is a hotkey which does:
    Send("USERNAME")
    Send("{TAB}")
    Send("PASSWORD")
    Send("{ENTER}")
    a hotkey lets you decide when the action happens, you could make other hotkeys for other things, like make a hotkey which presses different buttons in wow.
    Like i made a script for my warlock which auto DoTs the target when i press `

    hope that answers ur question

  11. #11
    Despite's Avatar Banned
    Reputation
    29
    Join Date
    Jun 2007
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Script] Logon WoW

    Yes, I made my own program and am trying to figure out a good way to set it up so that it actually does the commands since it seems that it often cuts part out for some reason.

  12. #12
    sumsar_elleh's Avatar Member
    Reputation
    8
    Join Date
    Mar 2007
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Script] Logon WoW

    if it is becuase it is going too fast, then you can add a couple of "sleep" commands

    also, remember that the helpfile is your friend

  13. #13
    heymyname's Avatar Member
    Reputation
    9
    Join Date
    Jul 2007
    Posts
    135
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Script] Logon WoW

    sorry but i fail to see how going into the program then loading the script is faster than just opening WoW and having your acct name saved

  14. #14
    setsura's Avatar Member
    Reputation
    5
    Join Date
    Sep 2007
    Posts
    118
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Script] Logon WoW

    thats what i was thinking (-=

  15. #15
    sumsar_elleh's Avatar Member
    Reputation
    8
    Join Date
    Mar 2007
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Script] Logon WoW

    I just have the compiled script out on my desktop, when I click it, it runs. Dont have to use the Run Script thingy

Page 1 of 2 12 LastLast

Similar Threads

  1. [Selling] Xewl's Trading Post - Custom Scripts & Misc WoW Services!
    By Xewl in forum World of Warcraft Buy Sell Trade
    Replies: 7
    Last Post: 09-22-2015, 08:05 PM
  2. Looking for AUTOHOTKEY script for WoW
    By mcglolmmo in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 12-08-2013, 05:02 AM
  3. [Request Guide]how to im start at c++ scripting for wow?
    By vittwow in forum WoW EMU Questions & Requests
    Replies: 4
    Last Post: 08-07-2008, 10:09 AM
  4. [Program] WoW Jumper AntiAFK Script
    By Cypher in forum World of Warcraft Bots and Programs
    Replies: 5
    Last Post: 06-23-2006, 10:38 PM
All times are GMT -5. The time now is 02:55 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search