superyu1337/radarflow2

cannot find value in module ...C_CSPlayerPawnBase

Closed this issue · 1 comments

error[E0425]: cannot find value `m_bIsScoped` in module `cs2dumper::client::C_CSPlayerPawnBase`
   --> src/dma/context/mod.rs:106:77
    |
106 | ...wnBase::m_bIsScoped, &mut is_scoped);
    |            ^^^^^^^^^^^ not found in `cs2dumper::client::C_CSPlayerPawnBase`
    |
help: consider importing this constant
    |
1   + use crate::dma::cs2dumper::client::C_CSPlayerPawn::m_bIsScoped;
    |
help: if you import `m_bIsScoped`, refer to it directly
    |
106 -             batcher.read_into(pawn + cs2dumper::client::C_CSPlayerPawnBase::m_bIsScoped, &mut is_scoped);
106 +             batcher.read_into(pawn + m_bIsScoped, &mut is_scoped);
    |

For more information about this error, try `rustc --explain E0425`.
error: could not compile `radarflow` (bin "radarflow") due to previous error

I checked that the values ​​exist and are correctly defined. What is the reason for the error?

Try the development branch, I still need to merge it into master sometime soon.