What's new

Learn random spell

Littor

Trial Member
1
2014
0
I was checking out all the awesome spells in the 4.3.4 repack. But I got tired of writing .learn <random number> all the time.
So I made this script:
http://www.mediafire.com/download/x4hm7my5bjfrlbq/RandomSpell.exe
Its an exe file made from Autohotkey.
It writes .learn (random number between 1-125000) when F3 is pressed.
Note that you can just hold F3 to learn an awful lot of random spells in no time.

The source code if anyone is interested:

F3::
{
random, n, 1, 125000
send, {Enter}
sleep, 50
send,.learn %n%
sleep, 50
send, {Enter}
}

Hope it works for you too :p
 
Top