dryper Posted May 3, 2008 Posted May 3, 2008 Hello. i was wondering if its possible to have a Application like World of warcraft inside a Autoit script?My plan is to have two running World of warcrafts a the same time.. Thanks for help!Dryper
dryper Posted May 3, 2008 Author Posted May 3, 2008 Hello. i was wondering if its possible to have a Application like World of warcraft inside a Autoit script?My plan is to have two running World of warcrafts a the same time.. Thanks for help!DryperAnyone?
Glyph Posted May 3, 2008 Posted May 3, 2008 (edited) Have you tried using 2 user accounts on an XP Computer? Set one up on x1 user and one on x2 user. Works for Diablo II which was made by blizzard. (just an alternative if AutoIt doesn't help.) Edited May 3, 2008 by BackStabbed tolle indicium
dryper Posted May 3, 2008 Author Posted May 3, 2008 Have you tried using 2 user accounts on an XP Computer?Set one up on x1 user and one on x2 user.Works for Diablo II which was made by blizzard.(just an alternative if AutoIt doesn't help.)Hehe that wont work The point is that im having 1 Priest (Healer)and a Warrior.. and it will be inpossible to Do the same if i have to change user on the comp all the time
James Posted May 3, 2008 Posted May 3, 2008 You mean, I think it's called Polygamy? You will have to find the hex keys like they do in MSN. Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
AdmiralAlkex Posted May 3, 2008 Posted May 3, 2008 Hello. i was wondering if its possible to have a Application like World of warcraft inside a Autoit script?If you run WoW in a window you can use _SetParent() .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface
NELyon Posted May 3, 2008 Posted May 3, 2008 (edited) If you run WoW in a window you can use _SetParent() Flattering But use this code instead. Func _SetParent($TitleC, $TitleP) If WinExists($TitleC) And WinExists($TitleP) Then $HwndC = WinGetHandle($TitleC) $HwndP = WinGetHandle($TitleP) DLLCall("user32.dll", "str", "SetParent", "HWnd", $HWndC, "HWnd", $HWndP) If @error then return 0 EndIf Return 1 EndIf EndFunc EDIT: Mixed up dll call. Called "Parent" then "Child", but should be "Child" then "Parent" Edited May 3, 2008 by KentonBomb
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now