OldSchoolHack

Registrieren / Anmelden Deutsch

[TUT] CSS Extern Radar + bunnyhop

icon Thema: [TUT] CSS Extern Radar + bunnyhop

Anmeldungsdatum: Mär 2011

Beiträge: 127

Benutzer-Bewertung:

1 positiv
0 negativ
also ich hab des jetzt mal mit dem herausfinden welche spieler wirklich da sind probiert...
CPP Code:
  1. for(int q = 1; q <= 64; q++)
  2. {
  3. int tempAdress = PlayerBasePointer + 0x140*q;
  4. ReadProcessMemory(hProcess, (LPVOID) (tempAdress + Player_hp_off), &players[q].hp, 4, NULL);
  5. ReadProcessMemory(hProcess, (LPVOID) (tempAdress + Player_name_off), &players[q].name, 128, NULL);
  6. ReadProcessMemory(hProcess, (LPVOID) (tempAdress + Player_team_off), &players[q].team, 4, NULL);
  7. ReadProcessMemory(hProcess, (LPVOID) (tempAdress + Player_x_off), &players[q].x, 4, NULL);
  8. ReadProcessMemory(hProcess, (LPVOID) (tempAdress + Player_y_off), &players[q].y, 4, NULL);
  9. ReadProcessMemory(hProcess, (LPVOID) (tempAdress + Player_z_off), &players[q].z, 4, NULL);
  10. ReadProcessMemory(hProcess, (LPVOID) (tempAdress + Player_pitch_off), &players[q].pitch, 4, NULL);
  11. ReadProcessMemory(hProcess, (LPVOID) (tempAdress + Player_yaw_off), &players[q].yaw, 4, NULL);
  12. ReadProcessMemory(hProcess, (LPVOID) (tempAdress + Player_angle_off), &players[q].angle, 4, NULL);
  13. if((players[q].team != 0) && (players[q].hp != 0) && (players[q].pitch != 0) && (players[q].yaw != 0))
  14. {
  15. printf("%d ",q);
  16. printf("%s \t",players[q].name);
  17. printf("%d \t",players[q].team);
  18. printf("%d \t",players[q].x);
  19. printf("%d \t",players[q].y);
  20. printf("%d \t",players[q].z);
  21. printf("%d \n\n",players[q].hp);
  22. }
  23. }
jedoch wurden mir immernoch alle player angezeigt-.-
fehlt da was oder geht das so nicht, weil so hattest du es ja gesagt:
Zitat
spieler die nicht mehr existieren, hp, pitch und team auf != 0 prüfen