__forceinline CUserCmd* GetUserCmd( int sequence_number ) {
return util::get_method< CUserCmd*( __thiscall* )( decltype( this ), int, int ) >( this, GETUSERCMD )( this, -1, sequence_number );
}
CRASH HERE:
auto next_command_number = g_cl.m_cmd->m_command_number + 1;
auto user_cmd = g_csgo.m_input->GetUserCmd( next_command_number );
memcpy( user_cmd, g_cl.m_cmd, sizeof( CUserCmd ) );
user_cmd->m_command_number = next_command_number;