Post: Help Esp 3d
12-01-2017, 03:15 PM #1
Quentdu675
Save Point
(adsbygoogle = window.adsbygoogle || []).push({}); hello is someone could help me for the ESP 3d :

    void MakeLines(Vector3 Origin, float X1, float Y1, float Z1, float X2, float Y2, float Z2, Color sColor)
{
Vector2 Screen1, Screen2;
Vector3 Origin1(Origin.x + X1, Origin.y + Y1, (Origin.z + Z1) - 50);
Vector3 Origin2(Origin.x + X2, Origin.y + Y2, (Origin.z + Z2) - 50);
if (WorldPosToScreenPos(0, &Origin1, &Screen1))
{
if (WorldPosToScreenPos(0, &Origin2, &Screen2))
{
draw_line(Screen1.x, Screen1.y, Screen2.x, Screen2.y, sColor, Material_RegisterHandle("white", 0, 0, 0), 1);
}
}
}
void BoxAroundPlayer(Vector3 Center, float W, float H, Color sColor, int toe, int target, float x, float y, float distance)
{
if (toe == 0)
{
MakeLines(Center, -W, -W, 0, W, -W, 0, sColor);
MakeLines(Center, -W, -W, 0, -W, -W, H, sColor);
MakeLines(Center, W, -W, 0, W, -W, H, sColor);
MakeLines(Center, -W, -W, H, W, -W, H, sColor);
MakeLines(Center, -W, -W, 0, -W, W, 0, sColor);
MakeLines(Center, W, W, 0, W, -W, 0, sColor);
MakeLines(Center, W, W, 0, -W, W, 0, sColor);
MakeLines(Center, -W, W, 0, -W, W, H, sColor);
MakeLines(Center, W, W, 0, W, W, H, sColor);
MakeLines(Center, -W, -W, H, -W, W, H, sColor);
MakeLines(Center, W, W, H, W, -W, H, sColor);
MakeLines(Center, W, W, H, -W, W, H, sColor);
}
}

I took them from the menu jericho bo3 source and it does not work
Last edited by Father Luckeyy ; 12-04-2017 at 09:45 PM. Reason: Staff Note: Added Code spolier

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo