suenasd321
|
分享:
▲
▼
bb_classes65.sma到修改 例如:(我的)
// Classic Zombie Attributes new const zclass1_name[] = { "法蘭克" } new const zclass1_info[] = { "能力平均" } new const zclass1_model[] = { "pc_zombi_host" } new const zclass1_clawmodel[] = { "v_knife_pc_zombi" } const zclass1_health = 4000 const zclass1_speed = 250 const Float:zclass1_gravity = 0.8 const zclass1_adminflags = ADMIN_ALL
// Fast Zombie Attributes new const zclass2_name[] = { "小殭屍" } new const zclass2_info[] = { "速度快" } new const zclass2_model[] = { "tank_zombi_host" } new const zclass2_clawmodel[] = { "v_knife_nemesis" } const zclass2_health = 3000 const zclass2_speed = 310 const Float:zclass2_gravity = 0.8 const zclass2_adminflags = ADMIN_ALL
// Jumper Zombie Attributes new const zclass3_name[] = { "莎拉" } new const zclass3_info[] = { "跳躍力高" } new const zclass3_model[] = { "speed_zombi_host" } new const zclass3_clawmodel[] = { "v_knife_speed_zombi" } const zclass3_health = 2500 const zclass3_speed = 285 const Float:zclass3_gravity = 0.4 const zclass3_adminflags = ADMIN_ALL
// Tanker Zombie Attributes new const zclass4_name[] = { "達叔" } new const zclass4_info[] = { "血量高" } new const zclass4_model[] = { "heavy_zombi_host" } new const zclass4_clawmodel[] = { "v_knife_heavy_zombi" } const zclass4_health = 6000 const zclass4_speed = 230 const Float:zclass4_gravity = 0.9 const zclass4_adminflags = ADMIN_ALL
// Tanker Zombie Attributes new const zclass5_name[] = { "喪屍王" } new const zclass5_info[] = { "速度極快" } new const zclass5_model[] = { "tank_zombi_origin" } new const zclass5_clawmodel[] = { "v_knife_nemesis" } const zclass5_health = 5000 const zclass5_speed = 400 const Float:zclass5_gravity = 0.7 const zclass5_adminflags = ADMIN_LEVEL_A
// Tanker Zombie Attributes new const zclass6_name[] = { "進化達叔" } new const zclass6_info[] = { "血量極高" } new const zclass6_model[] = { "heavy_zombi_origin" } new const zclass6_clawmodel[] = { "v_knife_heavy_zombi" } const zclass6_health = 8000 const zclass6_speed = 300 const Float:zclass6_gravity = 0.8 const zclass6_adminflags = ADMIN_BAN
|