Advertisement
fqrmix

Untitled

Jan 25th, 2017
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.75 KB | None | 0 0
  1.                         char *pointerToHealth, HealthToDraw[255];
  2.                         pointerToHealth = itoa(pEntity->Health, HealthToDraw, 10);
  3.                         int HealthColor[3]; // 0 - r, 1 - g, 2 - b
  4.                         if (pEntity->Health <= 100 && pEntity->Health > 50)
  5.                         {
  6.                             HealthColor[0] = 0;
  7.                             HealthColor[1] = 255;
  8.                             HealthColor[2] = 0;
  9.                         }
  10.                         if (pEntity->Health <= 50 && pEntity->Health > 25)
  11.                         {
  12.                             HealthColor[0] = 255;
  13.                             HealthColor[1] = 153;
  14.                             HealthColor[2] = 0;
  15.                         }
  16.                         if (pEntity->Health <= 25 && pEntity->Health >= 1)
  17.                         {
  18.  
  19.                             HealthColor[0] = 255;
  20.                             HealthColor[1] = 0;
  21.                             HealthColor[2] = 0;
  22.                         }
  23.                         DrawShadowString(HealthToDraw, W2S[0], W2S[1], HealthColor[0], HealthColor[1], HealthColor[2], pFont);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement