Jump to content

Keyboard problem


Recommended Posts

Hey,

I'm having a weird problem (happening on vista only, didn't happen on my old windows xp)

I have this script:

Opt("WinWaitDelay",100)
Opt("WinTitleMatchMode",4)
Opt("WinDetectHiddenText",1)
Opt("MouseCoordMode",0)
WinWait("World of Warcraft","")
If Not WinActive("World of Warcraft","") Then WinActivate("World of Warcraft","")
WinWaitActive("World of Warcraft","")
While WinActive("World of Warcraft","")
    For $i = 1 To 46894 Step 1
        sleep(200)
        Send("{ENTER}")
        sleep(100)
        Send("/iq " & $i)
        sleep(100)
        Send("{ENTER}")
    Next
WEnd

Pretty simple I guess, the only problem is at this line

Send("/iq " & $i)

it should work like this:

/iq 1

/iq 2

/iq $i..

but the result is actually different

qiq 1

qiq 2

qiq $i

Is there anything I can do to fix it? (in hebrew keyboard q and / at the same spot)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...