View Single Post
Re: Hi I'm new and have some question !
Old
  (#21)
Pierre-Marie Baty
Roi de France
 
Pierre-Marie Baty's Avatar
 
Status: Offline
Posts: 5,049
Join Date: Nov 2003
Location: 46°43'60N 0°43'0W 0.187A
Default Re: Hi I'm new and have some question ! - 11-03-2004

Hey, my bad, my fault ! I forgotten one line:
the correct code for FREE_PRIVATE() is this one
Code:
   if (pEdict->pvPrivateData != NULL)
	  FREE_PRIVATE (pEdict); // free our predecessor's private data
   pEdict->pvPrivateData = NULL; // fools the private data pointer 
   pEdict->v.frags = 0; // reset his frag count
the last line is needed because the player's frags are stored outside of the private data. Freeing the private data resets the death count and any other statistic, but you also need to reset the frags count which is the only player statistics held in the entvars.



RACC home - Bots-United: beer, babies & bots (especially the latter)
"Learn to think by yourself, else others will do it for you."
  
Reply With Quote