work on well of souls and yolo detection
This commit is contained in:
parent
3456e0d62a
commit
40d30115bf
41 changed files with 3031 additions and 148 deletions
|
|
@ -34,6 +34,7 @@ public class InputSender
|
|||
public const int W = 0x57;
|
||||
public const int S = 0x53;
|
||||
public const int D = 0x44;
|
||||
public const int Z = 0x5A;
|
||||
}
|
||||
|
||||
public async Task PressKey(int vkCode)
|
||||
|
|
@ -142,6 +143,11 @@ public class InputSender
|
|||
await Helpers.RandomDelay(5, 15);
|
||||
}
|
||||
|
||||
public void LeftMouseDown() => SendMouseInput(0, 0, 0, InputNative.MOUSEEVENTF_LEFTDOWN);
|
||||
public void LeftMouseUp() => SendMouseInput(0, 0, 0, InputNative.MOUSEEVENTF_LEFTUP);
|
||||
public void RightMouseDown() => SendMouseInput(0, 0, 0, InputNative.MOUSEEVENTF_RIGHTDOWN);
|
||||
public void RightMouseUp() => SendMouseInput(0, 0, 0, InputNative.MOUSEEVENTF_RIGHTUP);
|
||||
|
||||
public void MoveMouseInstant(int x, int y) => MoveMouseRaw(x, y);
|
||||
|
||||
public async Task MoveMouseFast(int x, int y)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue