C++ Pubg Esp Box

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üye
Katılım
2 Eyl 2017
Mesajlar
19
Tepki puanı
2
Yaş
30
8 HİZMET YILI
Bu kodu UnkownCheats'da bir konuda gördüm kodu anladım fakat buraya "BaseAddress" gönderemiyorum. c# da esp yaptım base adresi ayrıştırıp gönderebiliyorum fakat c++ da yeni olduğum için aynı işlemi bunda yapamadım ?
DWORD Team 'da bu konuyla benimle yardımlaşak birisi varmı ?

PHP:
DWORD UWorld = PUGB::get().read<DWORD>(BaseAddress + 0x34F8CB8);
    DWORD GameInstance = PUGB::get().read<DWORD>(UWorld + 0x140);
    DWORD ULocalPlayer = PUGB::get().read<DWORD>(GameInstance + 0x38);
    DWORD ULocalPlayerPosition = PUGB::get().read<DWORD>(ULocalPlayer + 0x70); //Probably some type of coordinates, but should lead to x/y/z or smthin to count M from enemy
    DWORD ViewPortClient = PUGB::get().read<DWORD>(ULocalPlayer + 0x58);
    DWORD PWorld = PUGB::get().read<DWORD>(ViewPortClient + 0x80);
    DWORD ULevel = PUGB::get().read<DWORD>(PWorld + 0x30);
    int EntityCount = PUGB::get().read<int>(ULevel + 0xA8);  // This part probably needed for ESP, I suppose this total player count?
    DWORD EntityList = PUGB::get().read<DWORD>(ULevel + 0xA0); // From here I can start counting for each player data?!
 
    for (int i = 0; i < EntityCount; i++)
    {
        DWORD CurrentActor = EntityList + (i * 0x8); // each player in list - stored as name or what?
        float ActorHP = PUGB::get().read<float>(CurrentActor + 0x1008); // Probably int or float?
        DWORD APawn = PUGB::get().read<DWORD>(CurrentActor + 0x168); //Dont know what that this is
        int PlayerState = PUGB::get().read<int>(APawn + 0x3c0); // Probably dead/alive etc. maybe in-car?! Sounds more like int
        DWORD RootComponent = PUGB::get().read<DWORD>(CurrentActor + 0x180); //Dont know what that this is
        float ActorLocation = PUGB::get().read<float>(RootComponent + 0x1A0); //Probably some type of coordinates, but should lead to x/y/z or smthin
    }
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üst