连续扔雷的代码实现

社区服务
高级搜索
猴岛论坛CSGO反恐精英连续扔雷的代码实现
发帖 回复
倒序阅读 最近浏览的帖子最近浏览的版块
5个回复

连续扔雷的代码实现

楼层直达
xujun123

ZxID:1226164

等级: 中将
岛国霸王花
举报 只看楼主 使用道具 楼主   发表于: 2007-12-31 0
连续扔雷的代码实现
void HeFire(float frametime, struct usercmd_s *usercmd, int active)
{
static int hegrenade_fire=0;
static int he_buy=0;
static int has_hegrenade=0;



if( !he_fire )return;



// hegrenade auto buy
if( !has_hegrenade && playerItems.money >= 300 && he_buy==0)
{
  he_buy=1;
  gEngfuncs.pfnClientCmd("buyequip");
}
if( he_buy )
{
  he_buy++;
  if(he_buy>he_buy_wait)
  {
  gEngfuncs.pfnClientCmd("menuselect 4");
  has_hegrenade=1;
  he_buy=0;
  }
}



// hegrenade auto select
if( has_hegrenade && currentWeaponID != WEAPON_HE )
{
  gEngfuncs.pfnClientCmd("slot4");
}



// hegrenade auto through out
if( currentWeaponID == WEAPON_HE && !hegrenade_fire)
{
  usercmd->buttons |= IN_ATTACK;
  hegrenade_fire=1;
}
if( hegrenade_fire )
{
  hegrenade_fire++;
  if( hegrenade_fire>2 )
  {
  usercmd->buttons &= ~IN_ATTACK;
  hegrenade_fire=0;
  has_hegrenade=0;
  }
}

}
---------------------------------------------------------------------
cyzme12300

ZxID:1181660

等级: 少将
跌倒了,爬起来再哭
举报 只看该作者 沙发   发表于: 2007-12-31 0
真的吗?好使吗?下来看看
跌倒了,爬起来再哭
lao_5

ZxID:1180944

等级: 元老
猴岛变的我都不认识了...

举报 只看该作者 板凳   发表于: 2007-12-31 0
LZ基本是骗子...
mayicaoren

ZxID:1294193

等级: 新兵
举报 只看该作者 地板   发表于: 2008-01-01 0
这参数也不对啊 无法运行的参数啊 你真是250
CHAOYUEWD

ZxID:1193581

等级: 上士
举报 只看该作者 4楼  发表于: 2008-01-01 0
怎么用啊
flyhe1122

ZxID:1200321

等级: 中士
举报 只看该作者 5楼  发表于: 2008-03-29 0
怎么用啊楼主?
« 返回列表
发帖 回复