|
发表于 2007-12-6 23:32:22
|
显示全部楼层
|阅读模式
来自 中国–江苏–无锡–宜兴市
比如
[PHP]new const Float:p_heal[3] = {3.0,2.0,1.0} // Healing Wave (skill 1)
new const Float:p_hex[3] = {0.1,0.2,0.3} // Hex (skill 2)
new const p_serpent[3] = {1,2,3} // Serpent Ward (skill 3)
new const Float:p_concoction[11] = {0.01, 0.02, 0.03, 0.04, 0.06, 0.08, 0.10, 0.15, 0.20, 0.25, 0.30} // Unstable Concoction (Skill 4)
[/PHP]
修该第六族的守卫为3条是
new const p_serpent[3] = {1,2,3} // Serpent Ward
那请问地8族的穿刺如何减弱
[PHP]new const Float:p_impale[3] = {0.15,0.30,0.45} // Impale (skill 1)
new const Float:p_spiked[3] = {0.1,0.15,0.2} // Spiked Carapace (skill 2)
new const Float:p_carrion[3] = {0.15,0.30,0.45} // Carrion Beetle (skill 3)
new const Float:p_orb[11] = {0.01, 0.05, 0.10, 0.15, 0.20, 0.25, 0.30, 0.35, 0.40, 0.45, 0.50} // Orb of Annihilation (Skill 4)[/PHP]
是不是可一修改技能`比如
new const Float:p_impale[3] = {0.15,0.30,0.45} // Impale (skill 1)
我改成这样new const Float:p_impale[3] = {[color="Red"]0.10,0.20,0.30} // Impale (skill 1)
这样有没减弱的效果 |
|