Page 1 of 1

[CSGO/any] DataTable warning suppression

Posted: Fri Apr 07, 2017 12:04 am
by VinciT
I'm using m_flVelocityModifier instead of m_flLaggedMovementValue because it doesn't modify the fall velocity.
The problem is, as soon as I set it to anything higher than 1.0, the server console starts getting spammed by DataTable warnings:

Code: Select all

DataTable warning: player: Out-of-range value (2.000000) in SendPropFloat 'm_flVelocityModifier', clamping.

Is there a way to suppress these warnings?

Re: [CSGO/any] DataTable warning suppression

Posted: Fri Apr 07, 2017 7:55 pm
by decompile
I know theres an Sourcemod extension which suppreses console messages, so it should be def possible.

Re: [CSGO/any] DataTable warning suppression

Posted: Sun Apr 09, 2017 9:32 am
by Ayuto
Data table warnings are probably sent via DataTable_Warning (engine function). So, the easiest way is probably to hook that function and completely block it from executing.