Log 4 - Macros ! Macros everywhere !Before moving on to bard skills, it is time to end these boring/brainless farming skills.
They are : Carpenter, Climber, Crutch-walker and Bone Carver.
Carpenter :I chopped down roughly 30 trees. Grabbed all the wood (600+ logs), and created a carpenter WS.
Dropped all the logs in the WS (a conveniently written macro helped dropping it all fast).
Then, Korgoth crafted more wooden chairs than even the elves could have room for.
Once again, macro power allowed
Carpenter mastery in a matter of minutes.
I also made a ¤crutch¤ !
As Larix mentionned, it is indeed possible to equip the crutch without being crippled in adv. mode, and experience is gained that way.
Korgoth is very slow at first. With 0.333 speed... And every step gives 1 exp ! 18.000 steps before Legendary... Should've started this skill before !
Climber :After some thinking, I found an easy way to train Climber.
Two things to note :
- You gain 10 exp after attempting to grab a wall while in the air, no matter if you succeed or not.
- You can jump when you are climbing (and jumping makes you be in the air, see where I'm going ?).
So, there goes an easy cycle to reliably train the skill.
1/ Stand in a corner.
2/ Jump to this tile.
3/ Attempt to grab the wall. It doesn't matter if you succeed or not. You have gained 10 exp.
4/ Regardless of whether or not you grabbed the wall, you will land there.
5/ As mentioned before, since you can jump even when climbing, you can immediately jump again to the starting position.
6/ Attempt to grab the wall again. You gain 10 more exp.
7/ Loop
forever for quite some time.
DF macros were a little slow here, so I once again used AutoHotKey to help speed things up !
SetKeyDelay, 0, 50
*::
Loop, 10
{
Send,j{right}{right}{up}{enter}
Sleep, 50
Send, b
Sleep, 50
Send,j{left}{left}{enter}
Sleep, 50
Send, b
Sleep, 50
}
return
Basically, everytime I press *, Korgoth jumps like a maniac back and forth (as shown above), attempting to grab the walls, 10 times in a row.
Each key press grants him 200 exp in climber.
Time spent on this skill : 15 minutes of script testing / doc reading + 4 minutes of * pressing.
Legendary
Climber done !
Bone-Carver :Went to the wilderness, and murdered all the animals I could find. Hippos, Camels, Crocodiles...
Converted all their bones to beautiful rings that Korgoth equipped on his toes and fingers.
Macro-ed my way through once again, because hitting "x {right} {down} {enter} {down} {enter} {enter}" is too painful.
Korgoth is now wearing a whooping 400 bones rings (despite the wiki saying the maximum is 220, Korgoth gives no shit), and has mastered
Bone-Carving.
Crutch-Walker :Do I really have to explain how Korgoth mastered it ?
Macro is the word, fellow dwarves, you guessed it !
And walking with a crutch is how you (obviously) master
Crutch-walker.
SetKeyDelay, 0, 50
*::
Loop, 9001
{
Send,{right}{left}
Sleep, 10
}
return
Seriously, don't put a 9000 loop. Your adventurer would die of thirst before its end... At best, he would loose "Focused" and not gain any exp.