Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. if ( Settings::Esp::esp_Size )
  2. {
  3. if (Settings::Esp::esp_Size)
  4. {
  5. if (Settings::Esp::esp_Style == 0)
  6. {
  7. }
  8. else if (Settings::Esp::esp_Style == 1)
  9. {
  10. if (!Settings::Esp::esp_Outline)
  11. {
  12. g_pRender->DrawBox(x, y, Width, Height, EspVisibleColor);
  13. }
  14. else if (Settings::Esp::esp_Outline)
  15. {
  16. g_pRender->DrawOutlineBox(x, y, Width, Height, EspVisibleColor);
  17. }
  18. }
  19. else if (Settings::Esp::esp_Style >= 2)
  20. {
  21. if (!Settings::Esp::esp_Outline)
  22. {
  23. g_pRender->DrawCoalBox(x, y, Width, Height, EspVisibleColor);
  24. }
  25. else if (Settings::Esp::esp_Outline)
  26. {
  27. g_pRender->DrawOutlineCoalBox(x, y, Width, Height, EspVisibleColor);
  28. }
  29. }
  30. }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement