-
Member
How-to beat the harderst Arcane pylon in the Coldlight cavern ~(61 23)
For the Trove tracker Trove Tracker - Achievement - World of Warcraft achi.
Most of you, (younger players) will not need the following, but myself was unable to finish this pylon manually, because of my age (nearly 60 years), my reflexes are much slower as are needed for this ... So, from some youtube video I created an precision timing and sharing it here.
You need only some autoclicker with precision timer. Near the end are some misses, but it still getting the job done. (worked for me at the 1st try!)
Honestly I don't know where to post this. It could be taken as guide, but it involves some "autoclicker", so definitely isn't allowed in the game by rules. But it isn't any exploit... so... posted it here.
Here are the times and buttons - use these in you auto-clicker software.
w:wait time in miliseconds and the 1,2,3 are the keys needed to press after the wait time
Code:
0 - START (e.g. clicked the pylon)
w:6300 1 - npc talking about fiendish difficulty :)
w:1100 3
w:1200 3
w:300 2
w:400 1
w:1100 1
w:1200 2
w:1100 1
w:400 2
w:300 3
w:1100 1
w:1200 2
w:1100 1
w:400 2
w:300 3
w:1200 3
w:1100 2
w:1100 1
w:400 2
w:400 1
w:1200 3
w:1000 1
w:1200 2
w:700 2
w:1200 1
w:700 3
w:1100 1
w:800 3
w:1100 1
w:700 3
w:400 1
w:400 1
w:300 2
w:500 2
w:300 3
w:400 3
w:400 2
w:700 1
w:400 1
w:400 3
w:300 2
w:400 3
w:400 1
w:300 3
w:400 1
w:400 2
w:400 3
w:700 2
w:800 1
w:400 2
w:300 3
w:400 2
w:300 1
w:400 1
w:400 3
w:400 2
w:300 1
w:400 1
w:400 2
w:400 2
w:300 2
Done. Enjoy...
Here is one YT video about this pylon: WoW BfA 8.2 Arcane Pylon game - Coldlight Cavern - Nazjatar - YouTube
-
Post Thanks / Like - 3 Thanks
-
Member
Any chance you could tell me the program you used to do the autoclicker. I tried a couple with these settings and it didn't work.
-
Member
I'm playing on mac, so i wrote one small program in swift. Terrible, (as my 1st) but works. If you play on windows - you need employ some autoclicker - unfortunately I didn't know windows environment at all - so can't help more.
Originally Posted by
reetzy73
Any chance you could tell me the program you used to do the autoclicker. I tried a couple with these settings and it didn't work.
Code:
import Foundation
let src = CGEventSource(stateID: CGEventSourceStateID.hidSystemState)
let curpos = CGPoint(x: 2160, y: 900) //specific for my screen & wow-window
let rmouse_d = CGEvent(mouseEventSource: src, mouseType: .rightMouseDown, mouseCursorPosition: curpos , mouseButton: .right)
let rmouse_u = CGEvent(mouseEventSource: src, mouseType: .rightMouseUp, mouseCursorPosition: curpos , mouseButton: .right)
let lmouse_d = CGEvent(mouseEventSource: src, mouseType: .leftMouseDown, mouseCursorPosition: curpos , mouseButton: .left)
let lmouse_u = CGEvent(mouseEventSource: src, mouseType: .leftMouseUp, mouseCursorPosition: curpos , mouseButton: .left)
let kxd = CGEvent(keyboardEventSource: src, virtualKey: 0x01, keyDown: true)
let kxu = CGEvent(keyboardEventSource: src, virtualKey: 0x01, keyDown: false)
let k1d = CGEvent(keyboardEventSource: src, virtualKey: 0x12, keyDown: true)
let k1u = CGEvent(keyboardEventSource: src, virtualKey: 0x12, keyDown: false)
let k2d = CGEvent(keyboardEventSource: src, virtualKey: 0x13, keyDown: true)
let k2u = CGEvent(keyboardEventSource: src, virtualKey: 0x13, keyDown: false)
let k3d = CGEvent(keyboardEventSource: src, virtualKey: 0x14, keyDown: true)
let k3u = CGEvent(keyboardEventSource: src, virtualKey: 0x14, keyDown: false)
let loc = CGEventTapLocation.cghidEventTap
lmouse_d?.post(tap: .cghidEventTap)
usleep(100_000)
lmouse_u?.post(tap: .cghidEventTap)
usleep(100_000)
rmouse_d?.post(tap: .cghidEventTap)
usleep(10_000)
rmouse_u?.post(tap: .cghidEventTap)
usleep(useconds_t(6300000)) //sleep 6300 ms
k1d?.post(tap: loc); k1u?.post(tap: loc); //1
usleep(useconds_t(1100000)) //sleep 1100 ms
k3d?.post(tap: loc); k3u?.post(tap: loc); //3
// all other events here like the above...
-
Post Thanks / Like - 1 Thanks
spoondrift (1 members gave Thanks to jomo666 for this useful post)
-
Member
Hi im having trouble. I dont know how to use the software. Are you able to link me what autoclicker software you use please
-
Member
Originally Posted by
jomo666
I'm playing on mac, so i wrote one small program in swift. Terrible, (as my 1st) but works.
If you play on windows - you need employ some autoclicker - unfortunately I didn't know windows environment at all - so can't help more.
There's a program called Macro Express Pro for Windows from macros.com . There's a 30-day free trial. Once you have it, create a Hot Key macro and set a hotkey that isn't in use by the program-- such as ctrl-Q. Here is the timing converted to a MEP script-- use the View--Direct Editor and paste this in and save it. Much thanks to the original poster!!
Code:
<MACRO PLAYBACK SPEED Speed="1"/>
<MOUSE RIGHT CLICK/>
<DELAY Flags="\x02" Time="6300"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="1100"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="1200"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="300"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="1100"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="1200"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="1100"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="300"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="1100"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="1200"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="1100"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="300"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="1200"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="1100"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="1100"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="1200"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="1000"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="1200"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="700"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="1200"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="700"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="1100"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="800"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="1100"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="700"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="300"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="500"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="300"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="700"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="300"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="300"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="700"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="800"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="300"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="300"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="3"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="300"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="1"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="400"/>
<TEXT TYPE Action="0" Text="2"/>
<DELAY Flags="\x02" Time="300"/>
<TEXT TYPE Action="0" Text="2"/>
<BEEP/>
-
Member
Originally Posted by
jomo666
For the
Trove tracker Trove Tracker - Achievement - World of Warcraft achi.
Most of you, (younger players) will not need the following, but myself was unable to finish this pylon manually, because of my age (nearly 60 years), my reflexes are much slower as are needed for this ... So, from some youtube video I created an precision timing and sharing it here.
That was REALLY helpful, thanks a lot!!
I used my own code and language, but you done all the tedious work of finding the timing, and the idea itself.
NICE!!
-
Member
will i get banned for using the program?
-
Member
Unlikely, but theoretically possible. In practice, this really isn't the sort of thing that Blizzard is worried about. I've used MEP for longer than I've played WoW (14+ years) and it just takes the "stress" out of repetitive stress. For example, I use <ctrl> A to click the Post button every time I submit an auction, simply to avoid having to move the mouse to the left and back every time. It's less automation than TradeSkillMaster and that is perfectly legitimate.
-
Member
Script with times doesn't work anymore
-
Member
Originally Posted by
michael2801
Script with times doesn't work anymore
There are multiple Arcane Pylons with different sequences of moves and timing. This script will only work on the Arcane Pylon in the cave at 61.3 19.8 . It's the hardest of the Arcane Pylon with about 58 moves. I have confirm that my script still works with that one.
Last edited by spoondrift; 10-11-2019 at 11:23 AM.
Reason: additional info
-
Member
it doesn't work anymore i lose with the script
Last edited by Dan1234; 10-13-2019 at 04:59 AM.
-
Member
Sorry. Without more details about which solution you are using, ping times, and which pylon, there's not enough to go on. As I said before, it still works for me. I'm sorry if it does not work for you.
-
Member
the keys it presses are wrong
im at arcane pylon 61.40 22.86
Last edited by Dan1234; 10-15-2019 at 02:58 AM.
-
Member
That sounds like it is the wrong pylon for you. There are 4 Arcane Pylons. It is possible that which one is at which location changes per player. Try the script on the other 3 and it should work for one of them.
/way 80 32 On the roof
/way 25 35 In the cave
/way 38 6 in the cave underwater ~40 10, swimming over the map
/way 61 23 in the cave ~61.5 20
-
Member
/way 61 23 the pylon in the cave with that battle pet?
at that pylon i lose hp 4/6 at start and then after 10-20 i lose again hp and its over