Creating an external ESP with GDI+

Pinworm

Well-Known Member
Hey there. So, I am currently trying to make an .esp using AutoHotKey. Not using DX3D IN-GAME drawing method but by taking 3D co-ords (Me + Enemy) and converting them to 2D co-ords. I found a calculation for it, but it mentions panning (pitch, yaw) and I am having some trouble figuring out where to place that.

It mentions Pan.x, Pan.y, and Pan.z. Where should I insert it? If this works properly, I can use this as an external overlay with low detection risk.

Tried this one with BF4.

graphic1.gif

screen.x = x / z * zoom
screen.y = y / z * zoom


Here's where I found the calculation:
http://freespace.virgin.net/hugo.elias/routines/3d_to_2d.htm
x :=Round(PositionX- xD%ArrayCount%,2);MyPosition-EnemyPosition
y :=Round(PositionY- yD%ArrayCount%,2)
z :=Round(PositionZ- zD%ArrayCount%,2)

newx := x*cos(Yaw)- z*sin(Yaw)
newz := x*sin(Yaw)+ z*cos(Yaw)
newy := y*cos(Pitch)- newz*sin(Pitch)

xFinal := newx*cos(Pitch)- newy*sin(Pitch)
zFinal := newy*cos(Pitch)- newz*sin(Pitch)
yFinal := newx*sin(Yaw)+ newy*cos(Pitch)

if zFinal >0
{screenx%ArrayCount%:=Round((xFinal / zFinal)*CalcHorzFOV(40)+CentreX,2)
screeny%ArrayCount%:=Round((yFinal / zFinal)*40+CentreY,2)
tooltip %" yaw "Yaw" pitch "Pitch" x " x " y " y " z " z " NX " newx " NY " newy " NZ " newz " XF " xFinal " YF " yFinal " ZF " zFinal " SX " screenx1 " SY " screeny1 " W "WidthW" H "HeightH,0,0
gosub,OverlayUpdate3}

Edit: If anyone has any ideas. Give me a shout. Please/thanks.
 
Last edited:

Pinworm

Well-Known Member
Also, is there any Source specific changes that need to be made beyond the obvious ones such as changing the window name?
 
Top