Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.86 KB | None | 0 0
  1. int VertLine;
  2.         int HorzLine;       // Corner Box
  3.         //bool IsVis = GameUtils::IsVisible(hackManager.pLocal(), pEntity, (int)CSGOHitboxID::Chest);  da dream
  4.         int xd = Menu::Window.VisualsTab.OptionsBox.GetIndex();
  5.         if (Menu::Window.VisualsTab.OptionsBox.GetIndex() == 1)
  6.         {
  7.             VertLine = (((float)size.w) * (0.2f));
  8.             HorzLine = (((float)size.h) * (0.2f));
  9.         }
  10.         if (Menu::Window.VisualsTab.OptionsBox.GetIndex() == 2)
  11.         {
  12.             VertLine = (((float)size.w) * (1.0f));
  13.             HorzLine = (((float)size.h) * (1.0f));
  14.         }
  15.  
  16.         Render::Clear(size.x, size.y - 1, VertLine, 1, Color(10, 10, 10, 150));
  17.         Render::Clear(size.x + size.w - VertLine, size.y - 1, VertLine, 1, Color(10, 10, 10, 150));
  18.         Render::Clear(size.x, size.y + size.h - 1, VertLine, 1, Color(10, 10, 10, 150));
  19.         Render::Clear(size.x + size.w - VertLine, size.y + size.h - 1, VertLine, 1, Color(10, 10, 10, 150));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement