superyu1337 / radarflow2

A web radar for CS2 utilizing memflow
46 stars 11 forks source link

cant get it to run #50

Closed Zzzeeroo closed 1 month ago

Zzzeeroo commented 1 month ago

Hello I get this error

error[E0425]: cannot find value m_bIsScoped in module cs2dumper::client::C_CSPlayerPawnBase --> src/dma/context/mod.rs:106:77 106 batcher.read_into(pawn + cs2dumper::client::C_CSPlayerPawnBase::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);
error[E0425]: cannot find value dwGameEntitySystem_getHighestEntityIndex in module cs2dumper::offsets::client_dll --> src/dma/threaddata/mod.rs:175:91 175 let highest_index_addr = (self.game_ent_sys + cs2dumper::offsets::client_dll::dwGameEntitySystem_getHighestEntityIndex as u64).into(); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: dwGameEntitySystem_highestEntityIndex

::: src/dma/cs2dumper/offsets_mod.rs:13:13 | 13 | pub const dwGameEntitySystem_highestEntityIndex: usize = 0x1510; | ---------------------------------------------------------------- similarly named constant dwGameEntitySystem_highestEntityIndex defined here

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

Please help me I am very new to this and would like to have this fixed

Zzzeeroo commented 1 month ago

Okay i fixed most of the errors but i still get this one please help me,

error[E0425]: cannot find value m_bIsScoped in module cs2dumper::client::C_CSPlayerPawnBase --> src/dma/context/mod.rs:106:77 106 batcher.read_into(pawn + cs2dumper::client::C_CSPlayerPawnBase::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 1 previous error

Screenshot_20240921_221551