How to add hud stats to your hack

社区服务
高级搜索
猴岛论坛CSGO反恐精英CS作弊器交流讨论How to add hud stats to your hack
发帖 回复
倒序阅读 最近浏览的帖子最近浏览的版块
3个回复

How to add hud stats to your hack

楼层直达
作弊辅导员_h

ZxID:1019634

等级: 元老
定做作弊器
举报 只看楼主 使用道具 楼主   发表于: 2007-07-25 0
client.cpp
find this: Code:

void hudDrawInfoTexts

somewhere in body add following: Code:

if(cvar.pr0hud)
    {
        PlayerInfo& r = vPlayers[me.ent->index];
        int hudstats_x = cvar.stats_x;
        int hudstats_y = cvar.stats_y;

      ColorEntry* clr = colorList.get(5);
        DrawHudString(hudstats_x,hudstats_y      ,clr->r,clr->g,clr->b,  "name of your hack");
        DrawHudString(hudstats_x,hudstats_y+15  ,clr->r,clr->g,clr->b,  "Kill$: [%d]  H$: [%d]  Percent: (%4.1f )",r.frags,me.headshots,me.hspercent);
        DrawHudString(hudstats_x,hudstats_y+30  ,clr->r,clr->g,clr->b,  "Spread: [%f]",me.spread.spreadvar);
      net_status_s ns;
      gEngfuncs.pNetAPI->Status(&ns);

      static float ping = ns.latency * 1000;
      static StopTimer pingTimer;
      if(!pingTimer.running())
      {
        pingTimer.countdown(1);
        ping = ns.latency * 1000;
      }
      //char tmp[255];
      //sprintf(tmp, "Ping: %4.0f", ping);
      ColorEntry* clrp = colorList.get(16);
      DrawHudString(hudstats_x,hudstats_y+60  ,clr->r,clr->g,clr->b,  "Ping: %4.0f", ping);
      SYSTEMTIME SysTime;
      GetLocalTime(&SysTime);
      if (SysTime.wHour>12)  SysTime.wHour-=12;

      char* formatstring  = "%d:%d:%d";

      DrawHudString(hudstats_x,hudstats_y+45      ,clr->r,clr->g,clr->b,  formatstring, SysTime.wHour, SysTime.wMinute,SysTime.wSecond);
      GetLocalTime(&SysTime);
      if(SysTime.wMonth==1)
      {
        DrawHudString(hudstats_x+153,hudstats_y+45      ,clr->r,clr->g,clr->b,"January");
      }
      if(SysTime.wMonth==2)
      {
        DrawHudString(hudstats_x+153,hudstats_y+45      ,clr->r,clr->g,clr->b,"February");
      }
      if(SysTime.wMonth==3)
      {
        DrawHudString(hudstats_x+153,hudstats_y+45      ,clr->r,clr->g,clr->b,"March");
      }
      if(SysTime.wMonth==4)
      {
        DrawHudString(hudstats_x+153,hudstats_y+45      ,clr->r,clr->g,clr->b,"April");
      }
      if(SysTime.wMonth==5)
      {
        DrawHudString(hudstats_x+153,hudstats_y+45      ,clr->r,clr->g,clr->b,"May");
      }
      if(SysTime.wMonth==6)
      {
        DrawHudString(hudstats_x+153,hudstats_y+45      ,clr->r,clr->g,clr->b,"June");
      }
      if(SysTime.wMonth==7)
      {
        DrawHudString(hudstats_x+153,hudstats_y+45      ,clr->r,clr->g,clr->b,"July");
      }
      if(SysTime.wMonth==8)
      {
        DrawHudString(hudstats_x+153,hudstats_y+45      ,clr->r,clr->g,clr->b,"August");
      }
      if(SysTime.wMonth==9)
      {
          DrawHudString(hudstats_x+153,hudstats_y+45      ,clr->r,clr->g,clr->b,"September");
      }
      if(SysTime.wMonth==10)
      {
        DrawHudString(hudstats_x+153,hudstats_y+45      ,clr->r,clr->g,clr->b,"October");
      }
      if(SysTime.wMonth==11)
      {
        DrawHudString(hudstats_x+153,hudstats_y+45      ,clr->r,clr->g,clr->b,"November");
      }
      if(SysTime.wMonth==12)
      {
        DrawHudString(hudstats_x+153,hudstats_y+45      ,clr->r,clr->g,clr->b,"December");
      }
        GetLocalTime(&SysTime);
        if(SysTime.wDayOfWeek==1)
      {
          DrawHudString(hudstats_x+66,hudstats_y+45      ,clr->r,clr->g,clr->b,"Monday");
      }
      if(SysTime.wDayOfWeek==2)
      {
        DrawHudString(hudstats_x+66,hudstats_y+45      ,clr->r,clr->g,clr->b,"Tuesday");
      }
      if(SysTime.wDayOfWeek==3)
      {
        DrawHudString(hudstats_x+66,hudstats_y+45      ,clr->r,clr->g,clr->b,"Wednesday");
      }
      if(SysTime.wDayOfWeek==4)
      {
        DrawHudString(hudstats_x+66,hudstats_y+45      ,clr->r,clr->g,clr->b,"Thursday");
      }
      if(SysTime.wDayOfWeek==5)
      {
        DrawHudString(hudstats_x+66,hudstats_y+45      ,clr->r,clr->g,clr->b,"Friday");
      }
      if(SysTime.wDayOfWeek==6)
      {
        DrawHudString(hudstats_x+66,hudstats_y+45      ,clr->r,clr->g,clr->b,"Saturday");
      }
      if(SysTime.wDayOfWeek==0)
      {
        DrawHudString(hudstats_x+66,hudstats_y+45      ,clr->r,clr->g,clr->b,"Sunday");
      }
  }

you can costumize it to the way you want it by removing adding stuff
i don't have proper ping code so ur ping is gonna be different then they would be in your tab so if you want you can remove pointless code
Register your cvars!
密码被盗,请联系cscheat取回
o14547

ZxID:1189454

等级: 下士
举报 只看该作者 沙发   发表于: 2007-09-06 0
看不懂啊
maolichuan

ZxID:1228180

等级: 上等兵
举报 只看该作者 板凳   发表于: 2007-09-09 0
es11

ZxID:1258960

等级: 新兵
举报 只看该作者 地板   发表于: 2007-09-12 0
大佬呢~~这个东西看的头晕
« 返回列表
发帖 回复