你把
zp_zclass_dash_2.sma 内的
new const zclass_name[] = { "达叔丧尸" } //丧尸名称
new const zclass_info[] = { "能够设置捕捉陷阱" } //类型说明
new const zclass_model[] = { "zombie_source" } //人物模组
new const zclass_clawmodel[] = { "v_knife_zombie.mdl" } //手的模组
const zclass_health = 2800 //血量(HP)
const zclass_speed = 200 //移动速度
const Float:zclass_gravity = 1.5 //承受重力
const Float:zclass_knockback = 0.8 //被击退的数值
改成
new const zclass_name[] = { "暗影芭比" } // 丧尸名称
new const zclass_info[] = { "能够设置捕捉陷阱" } // 类型说明
new const zclass_model[] = { "speed_zombi_host" } // 人物模组
new const zclass_clawmodel[] = { "v_knife_zombi_mm.mdl" } // 手的模组
const zclass_health = 1000 // 血量(HP)
const zclass_speed = 250 // 移动速度
const Float:zclass_gravity = 0.7 // 承受重力
const Float:zclass_knockback = 1.25 // 被击退的数值
便可了- -""