Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. void Glow::glowOthers() {
  2.  
  3. DWORD glowObject = pLocalPlayer->getGlowObject();
  4.  
  5. for (int i = 0; i < 300; i++) {
  6.  
  7. DWORD entity = pMemory->Read<int>(Client + Offsets::dwEntityList + ((i - 1) * 16));
  8.  
  9. if (!pEntity->isDormant(entity)) {
  10.  
  11. pMemory->Write<float>(glowObject + (i * 0x38) + 0x4, 1.f);
  12. pMemory->Write<float>(glowObject + (i * 0x38) + 0x10, 1.f);
  13. pMemory->Write<bool>(glowObject + (i * 0x38) + 0x24, true);
  14. pMemory->Write<bool>(glowObject + (i * 0x38) + 0x25, false);
  15. pMemory->Write<bool>(glowObject + (i * 0x38) + 0x2C, false);
  16.  
  17. }
  18. }
  19. }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement