下面是引用 andyt0621 于 2011-01-20 21:41 发表的 : 你是指想把第一只丧尸设为bot吗0.0(可以放sma上来吗
fnGetBot() { static iAlive, id iAlive = 0 for (id = 1; id <= g_maxplayers; id++) { if (g_isalive[id] && g_isbot[id]) iAlive++ } return iAlive; }
下面是引用 andyt0621 于 2011-01-20 21:58 发表的 : 找 Single Infection Mode or Nemesis Mode把下面id = fnGetRandomAlive(random_num(1, iPlayersnum))换成 id = fnGetRandomAlive(random_num(1, fnGetBot()))然后在插件的任何位置加上..复制程式 fnGetBot() { static iAlive, id iAlive = 0 for (id = 1; id <= g_maxplayers; id++) { if (g_isalive[id] && g_isbot[id]) iAlive++ } return iAlive; } 你试看看..只有改在Infection
id = fnGetRandomAlive(random_num(1, fnGetBot()))