parent
6e640f483e
commit
7a2d7b9377
|
@ -100,8 +100,7 @@ void esp(void) {
|
||||||
|
|
||||||
/* TODO: Instead of -5px, center the player name to the player origin.
|
/* TODO: Instead of -5px, center the player name to the player origin.
|
||||||
* I don't know how to get the text size before rendering. */
|
* I don't know how to get the text size before rendering. */
|
||||||
i_engine->pfnDrawSetTextColor(1, 1, 1);
|
engine_draw_text(s_top[0] - 5, s_top[1] - 2, get_name(ent->index),
|
||||||
i_engine->pfnDrawConsoleString(s_top[0] - 5, s_top[1] - 2,
|
(rgb_t){ 255, 255, 255 });
|
||||||
get_name(ent->index));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
16
src/hooks.c
16
src/hooks.c
|
@ -3,10 +3,8 @@
|
||||||
#include "include/sdk.h"
|
#include "include/sdk.h"
|
||||||
#include "include/globals.h"
|
#include "include/globals.h"
|
||||||
#include "include/util.h"
|
#include "include/util.h"
|
||||||
#include "include/detour.h" /* 8dcc/detour-lib */
|
|
||||||
|
|
||||||
/* DELME */
|
|
||||||
#include "include/cvars.h"
|
#include "include/cvars.h"
|
||||||
|
#include "include/detour.h" /* 8dcc/detour-lib */
|
||||||
|
|
||||||
/* bhop(), esp(), etc. */
|
/* bhop(), esp(), etc. */
|
||||||
#include "features/features.h"
|
#include "features/features.h"
|
||||||
|
@ -66,17 +64,7 @@ int h_HUD_Redraw(float time, int intermission) {
|
||||||
int ret = ORIGINAL(HUD_Redraw, time, intermission);
|
int ret = ORIGINAL(HUD_Redraw, time, intermission);
|
||||||
|
|
||||||
/* Watermark */
|
/* Watermark */
|
||||||
i_engine->pfnDrawSetTextColor(1, 1, 1);
|
engine_draw_text(5, 5, "8dcc/hl-cheat", (rgb_t){ 255, 255, 255 });
|
||||||
i_engine->pfnDrawConsoleString(5, 5, "8dcc/hl-cheat");
|
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
char pos[100];
|
|
||||||
sprintf(pos, "x: %f, y: %f, z: %f", localplayer->origin[0],
|
|
||||||
localplayer->origin[1], localplayer->origin[2]);
|
|
||||||
|
|
||||||
i_engine->pfnDrawSetTextColor(1, 1, 1);
|
|
||||||
i_engine->pfnDrawConsoleString(5, 20, pos);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
esp();
|
esp();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue