Update 0.1.1

Both:
- Added full bomb ESP

Core:
- Added Address caching
 - Improves performance significantly by gathering entity addresses only every 250ms
 - Actual data like positions and angles are still gathered at the specified polling rate.

Web:
- Player bomb indicator is now the same color as planted/dropped bombs
This commit is contained in:
Janek
2023-11-28 00:59:45 +01:00
parent bb9ca88895
commit f71836a763
12 changed files with 926 additions and 819 deletions

View File

@@ -268,7 +268,7 @@ function drawEntity(pos, fillStyle, dormant, hasBomb, yaw) {
if (hasBomb) {
ctx.beginPath();
ctx.arc(pos.x, pos.y, circleRadius / 2, 0, 2 * Math.PI);
ctx.fillStyle = "#dbb81d";
ctx.fillStyle = bombColor;
ctx.fill();
}