Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
apsun committed Dec 21, 2018
1 parent fc54f2d commit a1f7cb5
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,24 @@ disable raw input when using AbsoluteTouch). As a result, AbsoluteTouchEx
may trigger some anti-cheat protection systems. I am not responsible if
you are banned for using AbsoluteTouchEx.

## How to run
## Running the project

Ensure that `atloader.exe` and `atdll.dll` are in the same directory,
then run the following command:
Make sure you have the Visual C++ 2017 Redistributable installed. You can
download the 32-bit version [here](https://aka.ms/vs/15/release/vc_redist.x86.exe)
and the 64-bit version [here](https://aka.ms/vs/15/release/vc_redist.x64.exe).

Choose the correct bitness of AbsoluteTouchEx to run. You must run the
version with the same bitness as the program that you are injecting it
into, NOT the bitness of your operating system! x86 is for 32-bit programs
and x64 is for 64-bit programs.

Ensure `atloader.exe` and `atdll.dll` are in the same directory, then
run the following command:
```
atloader.exe <path to exe to load>
```

For example, to run osu!:
For example, to run osu! (which, for the record, is a 32-bit program):
```
atloader.exe %LocalAppData%\osu!\osu!.exe
```
Expand All @@ -48,6 +57,7 @@ Requirements:
- Windows SDK and WDK (for HID libraries)
- [Detours](https://github.com/Microsoft/Detours)

You must build the project in the same bitness as the program you intend
to inject the DLL into. For example, to inject into a 32-bit program, build
the project in 32-bit mode.
The project should open and build with no configuration necessary, assuming
you correctly installed the dependencies above. A prebuilt version of Detours
is included in the source directory; if you wish to update it you are
responsible for building it yourself.

2 comments on commit a1f7cb5

@katayoki
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can't find the atloader.exe please help

@apsun
Copy link
Owner Author

@apsun apsun commented on a1f7cb5 Dec 24, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you downloading the source code or the release? The release has the .exe files.

Please sign in to comment.