Thread: Fix Error Spam
View Single Post
Visual77
Veteran Member
Join Date: Jan 2009
Old 07-15-2017 , 17:50   Re: [PAID][TF2] Fix Error Spam on Premium Mod
Reply With Quote #6

Try follow logic. Lookup line 784. VelLastTime.
Search for VelLastTime decleration, line 109 to be exact.

Code:
new Float:VelLastTime[32][3];
You have 33 slots. Array limit is for 32 slots. Set array limit to 65+1 and it will never error again.

Code:
new Float:VelLastTime[MAXPLAYERS+1][3];

Last edited by Visual77; 07-15-2017 at 17:51.
Visual77 is offline