Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

Trying to make an External ESP with GDI+


  • Please log in to reply
1 reply to this topic
Wyvern010
  • Members
  • 24 posts
  • Last active: Jul 11 2016 11:17 PM
  • Joined: 30 Mar 2015

Hi, im tryinh to make an ESP in AHK.

Not using DX3D IN-GAME drawing method but by taking 3d Coords.( me + Enemry) And converting them to 2D coords.

 

i Found A Calculation for it but it mentions Panning ( Pitch, Yaw) but i cant figure out where to put Pitch or Yaw)

it mentions Pan.x, Pan.y Pan.z where to replace them with the Pitch and Yaw?

If this works properly we( every1 who writes "cheats" for games) use this as an external overlay with low detection risk.

 

 

I try to do this one for BF4.

And got this Calculation from:

 

http://freespace.vir...es/3d_to_2d.htm

x := Round(PositionX - xD%ArrayCount% ,2) ;My Position -  Enmey Position
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
		}
    }
}


SnowFlake_FlowSnake
  • Members
  • 845 posts
  • Last active: Jan 24 2016 05:24 PM
  • Joined: 08 Oct 2012

hi

 

is that the full script?


  • Download link of my scripts on Autohotkey.com 2/10/2015 [DOWNLAND]
  • Contact Info:  https://github.com/floowsnaake //  FloowSnaake(A)gmail.com
  • IF you need Help send me a PM,Email or Post on Github

  • Quote by tank  Posted 29 September 2015 - 06:14 PM

  • "Eventually i will find a way to convert the DB back to PHPBB3. but i dont have the bandwidth right now. No one that has tried has had success. It is the Only way i can keep this open is if i could successfully convert it."