Guest User

hack.cpp

a guest
Jun 21st, 2014
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.26 KB | None | 0 0
  1. #include "Hacks.h"
  2.  
  3.  
  4. int MenuIndex = 0;
  5.  
  6. D3DCOLOR fontRed = D3DCOLOR_ARGB(255, 255, 0, 0);
  7. D3DCOLOR fontGreen = D3DCOLOR_ARGB(255, 0, 255, 0);
  8. D3DCOLOR fontBlue = D3DCOLOR_ARGB(255, 0, 0, 255);
  9. D3DCOLOR fontWhight = D3DCOLOR_ARGB(255, 255, 255, 255);
  10. D3DCOLOR fontBlack = D3DCOLOR_ARGB(255, 0, 0, 0);
  11.  
  12.  
  13.  
  14. void Hacks::CreateFont(IDirect3DDevice9 *d3dDevice, std::string choiceFont)
  15. {
  16.     D3DXCreatFont(d3dDevice, 20, 0, FW_BOLD, 0, FALSE, DEFAULT_CHARSET,
  17.         OUT_DEFAULT_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH | FF_DONTCARE
  18.         choiceFont.c_str(), &Font);
  19.  
  20.  
  21. };
  22.  
  23. void Hacks::IntitiulizeMenuItems()
  24. {
  25.     hack[WALLHACK].name = " WALLHACK";
  26.     hack[Color_Aim_Bot].name = " COLOR Aim BOT";
  27.     hack[Cross_Air].name = " CROSS Air";
  28.     hack[Auto_fire].name = " Trigger Bot";
  29.     hack[Close].name = " CLOSE";
  30.     hack[Close].on = true;
  31. }
  32.  
  33. void Hacks::Draw_Text(LPCSTR TextToDraw, int x, int y, D3DCOLOR Color)
  34. {
  35.  
  36.  
  37.  
  38.  
  39. }
  40.  
  41.  
  42. void Hacks::DrawMenu(IDirect3DDevice9 *d3dDevice)
  43. {
  44.  
  45.  
  46.  
  47.  
  48.  
  49. }
  50.  
  51. void Hacks::DrawfilledRectangle(int x, int y, int w, int h, D3DCOLOR color, IDirect3DDevice9 *d3dDevice)
  52. {
  53.  
  54.  
  55.  
  56. }
  57.  
  58. void Hacks::DrawBordurBox(int x, int y, int w, int h, int thickness, D3DCOLOR color, IDirect3DDevice9 *d3dDevice)
  59. {
  60.  
  61.  
  62.  
  63.  
  64. }
  65.  
  66. void Hacks::KeybourdInput()
  67. {
  68.  
  69.  
  70.  
  71.  
  72. }
Add Comment
Please, Sign In to add comment