Reference Links
Link to guides or wiki
Gamepressure Guide[guides.gamepressure.com] (one of the best available)
Eador Wikia Link (incomplete)[eador-masters-of-the-broken-world.wikia.com]
Eador Gamepedia Link (even less complete)[eador.gamepedia.com]
Game Data[docs.google.com] (Sorry this is a private spreadsheet that I use)
Eador Wikia Link (incomplete)[eador-masters-of-the-broken-world.wikia.com]
Eador Gamepedia Link (even less complete)[eador.gamepedia.com]
Game Data[docs.google.com] (Sorry this is a private spreadsheet that I use)
Useful AutoHotkey Script
This script will make hitting the "b" button also click the advanced view. Escape will activate twice to exit (i.e. double press).
You will need to experiment in your own resolution to determine X & Y coordinates.
You will need to experiment in your own resolution to determine X & Y coordinates.
#IfWinActive, ahk_class TMainForm
#SingleInstance ignore
#MaxThreads 1
SendMode Event
SetMouseDelay, 10
NumpadEnter::Suspend
B::
{
Send {b down}{b up}
sleep 800
MouseGetPos, mx, my
BlockInput, MouseMove
{
MouseClick, Left, 583, 1122, 1
DoubleEsc:=1
}
MouseMove, mx, my, 0
BlockInput, MouseMoveOff
return
}
~Escape::
{
If DoubleEsc
{
Send {Escape 2}
DoubleEsc:=0
}
else
{
Send {Escape}
}
return
}
This guide was created by its original author on the Steam Community. Are you the author and want it removed? Request removal.