Giter Club home page Giter Club logo

universal-unity-esp's Issues

Question about the rendered box

Hi,
I found this repo really useful, so thanks for sharing. However I have a question: how could I render the esp box such as only the angles are rendered? so, instead of a full rectangle only four angles are shown?
I tried to do that by changing the DrawBox function. The idea was to change the points used to draw the lines.
The model is:
image
The code result in:

public static void DrawBox(float x, float y, float w, float h, Color color, float thickness)
{
  Vector2 P1 = new Vector2(x, y);
  Vector2 P2 = new Vector2(((x+w)/2)-10, y);
  Vector2 P3 = new Vector2(((x+w)/2)+10, y);
  Vector2 P4 = new Vector2(x+w, y);
  Vector2 P5 = new Vector2(x, ((y+h)/2)-20);
  Vector2 P6 = new Vector2(x, ((y+h)/2)+20);
  Vector2 P7 = new Vector2(x, y+h);
  Vector2 P8 = new Vector2(((x+w)/2)-10, y+h);
  Vector2 P9 = new Vector2(((x+w)/2)+10, y+h);
  Vector2 P10 = new Vector2(x+w, y+h);
  Vector2 P11 = new Vector2(x+w, ((y+h)/2)+20);
  Vector2 P12 = new Vector2(x+w, ((y+h)/2)+20);
  DrawLine(P1, P2, color, thickness);
  DrawLine(P1, P5, color, thickness);
  DrawLine(P3, P4, color, thickness);
  DrawLine(P4, P12, color, thickness);
  DrawLine(P6, P7, color, thickness);
  DrawLine(P7, P8, color, thickness);
  DrawLine(P9, P10, color, thickness);
  DrawLine(P10, P11, color, thickness);
}

However it seems not to be working.
The result is:
image
Do u have any idea of the reason, or do u have a solution?

Player Class naem

How can i check what is the name of player class on compiled unity game? (Combat Master), i want to make multi-hack for CM.
If you know the name then please tell me it in comment

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.