-
Автор темы
- #1
Код:
float evo::weapon_t::get_spread( bool secondary ) {
firing_data spread_data;
_driver.read( reinterpret_( this ) + weapon_data::spread, spread_data );
// xref: https://github.com/censored/cs2-rage/sdk/weapon/weapon.hpp#L75
// thats a ghetto method
return spread_data.data[ secondary ? 10 ];
}