盾排闭合不攻击的代码

社区服务
高级搜索
猴岛论坛CSGO反恐精英CS作弊器交流讨论盾排闭合不攻击的代码
发帖 回复
倒序阅读 最近浏览的帖子最近浏览的版块
0个回复

盾排闭合不攻击的代码

楼层直达
莎仕芘亞

ZxID:1171401

等级: 元老
猴岛国防部部长

举报 只看楼主 使用道具 楼主   发表于: 2007-06-27 0


Open up aimbot.cpp

find this

Code:

else
      if(!GetAimingTeam(ax))
   {
      r.visible = true;
   }

Now:

Below that function you just located, add the following.

Code:


if(vPlayers[ax].getEnt()->curstate.sequence == 97 || vPlayers[ax].getEnt()->curstate.sequence == 98){
         
         r.visible = false;

      }

Save aimbot.cpp and recompile.

Last edited by bmp on Sun Jan 23, 2005 1:51 pm; edited 4 times in total


Toggable Shield retention

Code:

else
      if(!GetAimingTeam(ax))
   {
      r.visible = true;
   }

Now:

Below that function you just located, add the following.

Code:

if(cvar.shieldretention){
if(vPlayers[ax].getEnt()->curstate.sequence == 97 || vPlayers[ax].getEnt()->curstate.sequence == 98){
         
         r.visible = false;

      }}

Cvar.cpp

Code:

REGISTER_CVAR_INT(shieldretention, 1)

Cvar.h

Code:
 
int shieldretention;

« 返回列表
发帖 回复