View Single Post
Re: Something about msecval
Old
  (#36)
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: Something about msecval - 03-02-2004

then how about this instead:
Code:
void pfnSetClientMaxspeed (const edict_t *pEdict, float fNewMaxspeed)
{
   // update this client's max speed (Counter-Strike 1.5 doesn't do it right)
   ((edict_t *) pEdict)->v.maxspeed = fNewMaxspeed;
   (*g_engfuncs.pfnSetClientMaxspeed) (pEdict, fNewMaxspeed);
}



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