|
 WOW Macro: Anti-AFK, Auto Queue BG's : World of Warcraft Nerfed Info - Page 2
|
|
Posted: September 4th, 2006, 5:52 pm
|
|
|
|
fatstuffnut
Total Posts: 728
Joined: October 8th, 2005, 3:07 pm
fatstuffnut's Reps: 3
|
can u please link i want to get this working before i go to sleep
_________________
|
|
|
|
|
Posted: September 5th, 2006, 7:51 am
|
|
|
|
cdarnau
Total Posts: 142
Joined: August 23rd, 2006, 6:52 am
cdarnau's Reps: 0
|
OK, with the Tault admins permission, I would like to change my first post to this post since what I have done here will make things a little bit easier for everyone. I am not saying that anyone on here is not smart enough to use it, I am saying that I may not be smart enough to explain it to the extent that it needs to be explained, since I am aware of how to use it and what changes to make if something goes wrong.
With the new patch came new changes (some you might not be aware of that have caused my script some problems.)
Problem - 3 time 2 min disconnect. What they did was if you go to 3BG's and wait till the 2 mins runs out after every game is over, it would disconnect you from the server after 3 times.
Fix - I have added a mouse movement to move you the leave BG button and press it.
__________________________________________________________
Problem - Lag. Yes it is even a problem with scripts. With lag some times when you press the button to leave the BG, it will not leave and you have to press the button maybe 2 or 3 more times.
Fix - Multiple Mouse movement positions on the Leave BG button with multiple clicks.
__________________________________________________________
Problem - Queue Positions. They use to be anywhere within the portal as long as you were inside the portal. Now there are in a certain spot and it has a different position for each BG, So now you can't use 1 script for all BG's.
Fix - I have created individual Scripts for each instance that will move you into the portal at each BG, and queue you up for first available.
___________________________________________________________
The Explanation.
First - Go to www.autoitscript.com and download V3.1.1. (if you download V3.2.0 select edit when it asks you to RUN or to edit.. You can still run the programs.. just not the scripts.. This way you can edit the scripts if you need to, to change the programs.)
Second - Download (looking for a host, please e-mail chris@arnau.com) (all the files you will need are in it. Please scan for viruses... I don't want anyone thinking I am a PWS.)
Third - Press the windows button and run the selected BG you wish to be a part of program. The go back into WOW. (WOW can't be windowed for this script to work; it has to be full screen.)
Fourth - Zone into the instance manually. (Walk into the portal and join first available yourself.)
Fifth - Press F8. This will start your program BG running. (It will move you backwards the right amount of space and select first available for you and will not let you go AFK.)
Sixth - Sit back and enjoy your free honor.
You will also need some kind of AUTO JOIN add-on so that when your queue pops up, it joins the BG. I will link a few below.
Asmo Honor Role
http://www.curse-gaming.com/en/wow/addo ... -role.html (this add-on auto join and also keeps track of how much honor you get. works really nice.)
BG Buddy.
http://www.curse-gaming.com/en/wow/addo ... inued.html (auto joins, auto resses, and a few other nice features)
I use them both but either 1 will work. If at all possible, I need another host to use for this file.. This is just temporary.. probably will be gone by the end of the week.
Last edited by cdarnau on November 8th, 2006, 5:45 am, edited 2 times in total.
|
|
|
|
|
Posted: September 5th, 2006, 8:02 am
|
|
|
|
cdarnau
Total Posts: 142
Joined: August 23rd, 2006, 6:52 am
cdarnau's Reps: 0
|
fatstuffnut (!empty($user->lang['WROTE'])) ? $user->lang['WROTE'] : ucwords(strtolower(str_replace('_', ' ', 'WROTE'))): i got the first 1 to work.. how do i make it join bg automaticly? do the same and run both of em?!
No, only 1 at a time. The BG's you don't press Alt + Ctrl + Z to work, you press F8.
Also please check my last post for more help.
|
|
|
|
|
Posted: September 5th, 2006, 9:11 am
|
|
|
|
wolfgame
Total Posts: 39
Joined: October 13th, 2005, 11:30 am
wolfgame's Reps: 0
|
when i zone out of AB (horde hammerfall portal) it puts my back to the wall where i get stuck, it doesnt zone my char out where he can walk straight back to the instnace
|
|
|
|
|
Posted: September 5th, 2006, 11:16 am
|
|
|
|
cdarnau
Total Posts: 142
Joined: August 23rd, 2006, 6:52 am
cdarnau's Reps: 0
|
this is the same thing the other person said as well...
Just add a 150ms turn to the script.
Add this above the hold down.
(!empty($user->lang['CODE'])) ? $user->lang['CODE'] : ucwords(strtolower(str_replace('_', ' ', 'CODE'))): send("{a down}");presses the s button and holds it Sleep(1500);waits for 1500 milliseconds/1.5 sec Send("{a up}");releases s button This turns you to the left for 1.5 seconds. NM just change the whole code i will write it for you. (!empty($user->lang['CODE'])) ? $user->lang['CODE'] : ucwords(strtolower(str_replace('_', ' ', 'CODE'))): Global $Paused, $t HotKeySet("{PAUSE}", "TogglePause") HotKeySet("{ESC}", "Terminate") HotKeySet("{F8}", "Showme")
;;;; Body of program would go here;;;; While 1 If $t = 1 Then send("{a down}");presses the A button and holds it Sleep(1500);waits for 1500 milliseconds/1.5 sec Send("{a up}");releases s button Send("{s down}");presses the s button and holds it Sleep(5800);waits for 5800 milliseconds/5.8 sec Send("{s up}");releases s button MouseClick("left",205,531);leftclicks at the coordinates x=205,y=531 MouseClick("left",538,554);leftclicks at the coordinates x=205,y=531 MouseClick("left",538,555);leftclicks at the coordinates x=205,y=531 MouseClick("left",538,553);leftclicks at the coordinates x=205,y=531s Sleep(60 * 1000) EndIf Sleep(10) WEnd ;;;;;;;;
Func TogglePause() $Paused = NOT $Paused While $Paused sleep(100) ToolTip('Script is "Paused"',0,0) WEnd ToolTip("") EndFunc
Func Terminate() Exit 0 EndFunc
Func Showme() If $t = 0 Then $t = 1 Return EndIf If $t = 1 Then $t = 0 Return EndIf EndFunc
I forgot i am not horde.... so alliance is a little different. But this will work for you. If you need to go right instead of left change the ("{a down}"); to ("{d down}"); and the ("{a up}") to ("{d up}");
Simple as pie.
|
|
|
|
|
Posted: September 5th, 2006, 11:26 am
|
|
|
|
cdarnau
Total Posts: 142
Joined: August 23rd, 2006, 6:52 am
cdarnau's Reps: 0
|
What i really need is a horde test dummy. If your interested in testing my many of scripts ( i normally come up with atleast 1 trick a week, lol) e-mail me.
Chris@arnau.com
|
|
|
|
|
Posted: September 5th, 2006, 7:35 pm
|
|
|
|
dielow
dielow's Reps:
|
please be easy on me. im having problems with the mouse for bg auto que. when it moves the mouse to 205,531 which is the "Join first avaliable" button" its off on my screen. could it be my resolution im running wow on? 1920x1200 widescreen. thanks for helping in advance.
|
|
|
|
|
Posted: September 6th, 2006, 4:35 am
|
|
|
|
cdarnau
Total Posts: 142
Joined: August 23rd, 2006, 6:52 am
cdarnau's Reps: 0
|
dielow (!empty($user->lang['WROTE'])) ? $user->lang['WROTE'] : ucwords(strtolower(str_replace('_', ' ', 'WROTE'))): please be easy on me. im having problems with the mouse for bg auto que. when it moves the mouse to 205,531 which is the "Join first avaliable" button" its off on my screen. could it be my resolution im running wow on? 1920x1200 widescreen. thanks for helping in advance.
Finding the cords shows that you can change them. Since you downloaded the autoit, inside the start menu, goto autoit V3 and inside that there is a link called Autoit window info. It will bring up a box on your screen. Click anywhere on your desktop and it will bring up your mouse cords.
Move the mouse to where the join now queue is then put your finger on the screen on the button. Tab out of your WoW and move your mouse pointer to your finger. Change the cords in the script to the new cords.
Delete your BG program (not the script) and then re-compile the script. You can read how to do that in my first post.
If you need more help just put the cords on here for me and i will rewrite the script for you.
|
|
|
|
|
Posted: September 6th, 2006, 8:03 am
|
|
|
|
giomacri04
giomacri04's Reps:
|
ive noticed that when coming out of ab (horde portal) my guy just backs up into a post i was wondering if i could make him turn counterclockwize for alil bit b4 he starts backing up... i thisnk that would do it
|
|
|
|
|
Posted: September 6th, 2006, 12:14 pm
|
|
|
|
cdarnau
Total Posts: 142
Joined: August 23rd, 2006, 6:52 am
cdarnau's Reps: 0
|
giomacri04 (!empty($user->lang['WROTE'])) ? $user->lang['WROTE'] : ucwords(strtolower(str_replace('_', ' ', 'WROTE'))): ive noticed that when coming out of ab (horde portal) my guy just backs up into a post i was wondering if i could make him turn counterclockwize for alil bit b4 he starts backing up... i thisnk that would do it
Somone alreayd posted this, read upwards for the fix.
|
|
|
|
|
Posted: September 6th, 2006, 5:33 pm
|
|
|
|
nizmo
nizmo's Reps:
|
For some reason it wont work for me. Does this need to be in windowed mode or? I zoned into AV then ALT+TAB out then run the wowafkscriptwasjustmade.exe which i created with the new 3.2 version of the AutoIT and then alt+tab back to the game and about 20 seconds into it... i can see my character move to the left... but after that it just stops and i am booted from AV after 5 minutes for AFK... Does this work with the new patch or am I doing something wrong? ..... I am only doing the "A" then "D" script every few minutes or so... not the auto join...
|
|
|
|
|
Posted: September 6th, 2006, 5:42 pm
|
|
|
|
cdarnau
Total Posts: 142
Joined: August 23rd, 2006, 6:52 am
cdarnau's Reps: 0
|
hmmmm. when you alt tab out you have to press Alt + ctrl + z to start it.
If your just running it, your actually not starting it.
You have to tab out, then press Alt + Ctrl + Z. then tab back in. It cann't be windowed. Tell me if this helps.
So you actually have to run the program. The press Alt + Ctrl + Z to start the program working.
Also, instead of letting it disconnect you. Open a chat screen and wait like 2 mins and see if it types somthing.
|
|
|
|
|
Posted: September 7th, 2006, 4:35 pm
|
|
|
|
settlersxp
settlersxp's Reps:
|
oky, i copy paste that
"HotKeySet("^!z","Movment");^!z is Ctrl+Alt+'z' to run the Movment
HotKeySet("^!x","End");^!x is Ctrl+Alt+'x' to close the Movment
While 1" into a notpad document, i save'it than, when i use RunScript thingie i have msg on my screen: "line 3 (file"xxxx\file name.au3")
while 1
Error "While" statement has no matching "wend" statement.
can you give me some feedback with this one?
|
|
|
|
|
Posted: September 7th, 2006, 11:31 pm
|
|
Posted: September 8th, 2006, 9:16 am
|
|
|
|
dielow
dielow's Reps:
|
ive been reported by a GM last night.... was running the program in AV =[ its only been my 3rd night too. the GM ported me to brill when i logged on to my player. i checked my game mail and i said i was in some kind of violation and it said it sent me a email on my voilation.this is what the email pretty much said -
" Details (Note - Times are listed in Greenwich Mean Time, GMT):Â
Observed AFK in the battlegrounds for an extended period of time."
im not sure if i should push my luck and try again? anways becareful everyone.
|
|
|
|
|
Who is online |
|
Users browsing this forum: No registered users and 83 guests |
|
|
|