下面是引用 andyt0621 於 2013-09-01 13:28 發表的 :
... ... ...
正常的ZP都有寫變成喪屍之後會移除槍械..
而且會BLOCK掉喪屍撿槍..
你的ZP為什麼會在重生時有槍 ?
andy大 我記得移除武器後,就可以省略掉槍的問題了。
殭屍檢槍的問題,要去查看一下Ham_Touch的 函數內容
如果是殭屍就取代返回..這樣殭屍就撿不到槍了。
移除所有武器的話,要用到fakemeta or fun .inc 模塊內的
// fakemeta .inc
stock fm_strip_user_weapons(index) {
new ent = fm_create_entity("player_weaponstrip");
if (!pev_valid(ent))
return 0;
dllfunc(DLLFunc_Spawn, ent);
dllfunc(DLLFunc_Use, ent, index);
engfunc(EngFunc_RemoveEntity, ent);
return 1;
}
// fun .inc
strip_user_weapon(index);
移除後當然要給小刀...(必備)。