Search results

  1. Help! How to exclude yourself from drawing ESP

    use ismine or islocal to do this
  2. Help! ESP Draw not properly (Unity)

    try using another game camera.
  3. Help! Does anyone know how to do esp? And what is the easiest type of esp to do?

    No, I have a base of what I have idea of what is needed... Address of player positions , address of list of players, it's just not working very well in my mod menu
  4. Help! Does anyone know how to do esp? And what is the easiest type of esp to do?

    I'm finalizing my mod menu, I just need to add the esp, does anyone know how I can do it? An example? Template?
  5. Solved How to Hook void in lgl 2.9?

    Can anyone teach me how to use Hook void? Example
  6. Help! 2 Fields with same update code doesn't work in my mod menu

    void (*old_gravity)(void *instance); void gravity(void *instance) { if (instance != NULL) { if (Gravity) { *(float *) ((uint32_t) instance + 0x30) = 0; } } return old_gravity(instance); } void (*old_fly)(void *instance); void fly(void...