Skip to content

Commit

Permalink
updated offsets + readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanocf committed Dec 27, 2020
1 parent fc83c5e commit a7ce130
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,6 @@
app/yarn.lock

app/test/

csgo-external-radar.zip
csgo-external-radar
62 changes: 61 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,61 @@
csgo-external-radar
# <div align="center">csgo-external-radar</div>

<div align="center">
<img src="https://img.shields.io/badge/License-MIT-important?style=flat-square" />
<img src="https://img.shields.io/badge/%E2%80%8E-C++-00599C?style=flat-square&logoWidth=20&logo=image/svg+xml;base64,PHN2ZyByb2xlPSJpbWciIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+QysrIGljb248L3RpdGxlPjxwYXRoIGZpbGw9IndoaXRlIiBkPSJNMjIuMzkzIDZjLS4xNjctLjI5LS4zOTgtLjU0My0uNjUyLS42OUwxMi45MjUuMjJjLS41MDgtLjI5My0xLjMzOS0uMjkzLTEuODQ3IDBMMi4yNiA1LjMxYy0uNTA4LjI5My0uOTIzIDEuMDEzLS45MjMgMS42djEwLjE4YzAgLjI5NC4xMDQuNjIuMjcxLjkxLjE2Ny4yOS4zOTguNTQzLjY1Mi42ODlsOC44MTYgNS4wOTFjLjUwOC4yOTMgMS4zMzkuMjkzIDEuODQ3IDBsOC44MTYtNS4wOTFjLjI1NC0uMTQ2LjQ4NS0uMzk5LjY1Mi0uNjg5cy4yNzEtLjYxNi4yNzEtLjkxVjYuOTFjLjAwMi0uMjk0LS4xMDItLjYyLS4yNjktLjkxek0xMiAxOS4xMDljLTMuOTIgMC03LjEwOS0zLjE4OS03LjEwOS03LjEwOVM4LjA4IDQuODkxIDEyIDQuODkxYTcuMTMzIDcuMTMzIDAgMCAxIDYuMTU2IDMuNTUybC0zLjA3NiAxLjc4MUEzLjU2NyAzLjU2NyAwIDAgMCAxMiA4LjQ0NWMtMS45NiAwLTMuNTU0IDEuNTk1LTMuNTU0IDMuNTU1UzEwLjA0IDE1LjU1NSAxMiAxNS41NTVhMy41NyAzLjU3IDAgMCAwIDMuMDgtMS43NzhsMy4wNzcgMS43OEE3LjEzNSA3LjEzNSAwIDAgMSAxMiAxOS4xMDl6bTcuMTA5LTYuNzE0aC0uNzl2Ljc5aC0uNzl2LS43OWgtLjc5di0uNzloLjc5di0uNzloLjc5di43OWguNzl2Ljc5em0yLjk2MiAwaC0uNzl2Ljc5aC0uNzl2LS43OWgtLjc4OXYtLjc5aC43ODl2LS43OWguNzl2Ljc5aC43OXYuNzl6Ii8+PC9zdmc+" />
<img src="https://img.shields.io/badge/%E2%80%8E-NodeJS-339933?style=flat-square&logoWidth=20&logo=node.js" />
<br/><br/>
Scuffed external radar build with C++ and NodeJS. <br>
Download can be found here: <a href="https://www.unknowncheats.me/forum/cs-go-releases/433334-external-radar-nodejs.html#post3020185">unknowncheats</a>
</div>

___

## Build

Radar:
- Release x86

Server:
- Install nexe globally

```
npm install nexe -g
// or
yarn global add nexe
```
- Build the Server with the following command
```
nexe -i server/server.js -t 10.16.0 -r public --verbose
```

## Usage

- Start the radar
- Start CSGO and wait until you are in the main menu
- Start the server ("node server/server.js")
- Visit localhost:3000 in your favorite browser

## Features

- Enemy
- Active
- Health
- Name
- Weapon

- Team
- Active
- Health
- Name
- Weapon
- Local
- Active


## Credits
Mortale <br>
[unknowncheats](https://www.unknowncheats.me/forum/members/692168.html) | [Github](https://github.com/M0rtale) <br><br>
https://github.com/frk1/hazedumper <br>
https://github.com/node-steam/vdf <br>
https://github.com/nlohmann/json
2 changes: 1 addition & 1 deletion radar/radar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ int main()
const auto weapon_name = strcmp(weapon_names[weapon_index], "none") ? weapon_names[weapon_index] : "KNIFE";

auto radar = process->read<DWORD_PTR>(radar_base);
radar = process->read<DWORD_PTR>(radar + 0x74);
radar = process->read<DWORD_PTR>(radar + 0x78);
const char* name[128];
ReadProcessMemory(process->process, reinterpret_cast<LPCVOID>(radar + 0x174 * (i + 2) + 0x18), &name, sizeof(name), nullptr);

Expand Down

0 comments on commit a7ce130

Please sign in to comment.