What's new
  • Happy Cataclysm gaming! The long-awaited 4.3.4 Cataclysm Repack V19.0 is now live - and downloadable from our brand-new Emucoach App.
    Download it now
  • Mists of Pandaria is calling! Heya - did you know that the newest 5.4.8 MoP Repack - version 7.0 - is now live?
    Download now

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
 
Back
Top