!! Yeah, sorry I failed to give a proper title to my topic, I meant script writer for AutoIt. It must be a whole lot misleading.
Hello !
I've found Z's Battleground Honor Farming Bot, which I like very much, but I'm a bit concerned with using someone else's paths, so I thought I make my own, but I couldn't find an AutoIt script writer that handles sleep() between keystrokes, which really defeats the whole point.
So here's my "solution" (very sarcastic quotation marks)
Code:
using System;
using System.Text;
using System.Diagnostics;
class AutoItScriptWriter
{
public static void Main()
{
Stopwatch sw = new Stopwatch();
ConsoleKeyInfo cki;
do
{
sw.Reset();
sw.Start();
cki = Console.ReadKey(true);
Console.WriteLine("{0} {1}ms",cki.Key.ToString()
, sw.ElapsedMilliseconds);
} while (cki.Key != ConsoleKey.Escape);
}
}
So I guess you can instantly tell, that this will fail horribly, because I use the Console class. The problem is, I'm not that far ahead in my programming studies (as you can probably tell) and I've been only working in terms of console programs.
It might be a lot to ask that you would explain it to me, but I hope someone can point me into the right direction.
Thanks a lot in advance.