Crosshair in ThirdPerson View

Locked
G-Stuff002
Posts: 55
Joined: Tue Oct 11, 2016 4:22 pm

Crosshair in ThirdPerson View

Post by G-Stuff002 »

Crosshairs are not available in this mode. Is it possible to make like here?: https://www.youtube.com/watch?v=QpBaqVyP0GE

Maybe have a script for this ?
User avatar
Eraser
Posts: 19174
Joined: Fri Dec 01, 2000 8:00 am

Re: Crosshair in ThirdPerson View

Post by Eraser »

You'll need to write a mod for that.
G-Stuff002
Posts: 55
Joined: Tue Oct 11, 2016 4:22 pm

Re: Crosshair in ThirdPerson View

Post by G-Stuff002 »

This guy already have write a mod but i can not find him for downlod. Maybe someone have it?
Ganemi
Posts: 564
Joined: Thu Apr 21, 2005 12:57 pm

Re: Crosshair in ThirdPerson View

Post by Ganemi »

All you would have to do is

if ( cg.renderingThirdPerson ) {
return;
}

disable that line of code in cg_draw.c, line 1931, then compile the cgamex86.dll.

Should even work on online servers that allow cheats.
Locked