can someone plz gimme just the part that sends a keystroke using kernelhotkey
for mouse its:
Mouse mouse;
mouse = new Mouse(1);
Mouse.Stroke a = new Mouse.Stroke();
Thread.Sleep(500);
a.x = -1000;
a.y = -1000;
mouse.Write(a);
Thread.Sleep(500);
Mouse.Stroke b = new Mouse.Stroke();
b.state = Mouse.States.LEFT_BUTTON_DOWN;
b.x = 150;
b.y = 50;
mouse.Write(b);
Thread.Sleep(200);
Mouse.Stroke c = new Mouse.Stroke();
c.state = Mouse.States.LEFT_BUTTON_UP;
mouse.Write(c);
will send mouse to top left corner and then to next X and Y and click (works in rappelz) just need to know the exact same way for the keys to send
the more info on this the better

wil share bot when finished
(im just a bit new in windows api's and kernel **** so takes a while)