[已解決了問題]

Home Home
引用 | 編輯 fuworm21so
2010-06-09 18:05
樓主
推文 x0
[已解決了問題]

獻花 x0
引用 | 編輯 a7811311622
2010-06-10 00:22
1樓
  
這就只是原碼排序的問題而已…
打開ZP 4.3 主插件的SMA後,尋找:
複製程式
 
 // Last human or not an infection round 
 if (g_survround || g_nemround || g_swarmround || g_plagueround || fnGetHumans() == 1) 
  return HAM_IGNORED; // human is killed 


複製程式
 
  // Does human armor need to be reduced before infecting? 
 if (get_pcvar_num(cvar_humanarmor)) 
 { 
  // Get victim armor 
  static Float:armor 
  pev(victim, pev_armorvalue, armor) 
   
  // Block the attack if he has some 
  if (armor > 0.0) 
  { 
   emit_sound(victim, CHAN_BODY, sound_armorhit, 1.0, ATTN_NORM, 0, PITCH_NORM) 
   set_pev(victim, pev_armorvalue, floatmax(0.0, armor - damage)) 
   return HAM_SUPERCEDE; 
  } 
 } 

這兩大段…之後…
交換過來即可…
不要懷疑… 

獻花 x2
引用 | 編輯 Abcdzxc555
2010-06-10 15:40
2樓
  
下面是引用 a7811311622 於 2010-06-10 00:22 發表的 : 到引言文
這就只是原碼排序的問題而已…
打開ZP 4.3 主插件的SMA後,尋找:
[code]
 // Last human or not an infection round
 if (g_survround || g_nemround || g_swarmround || g_plagueround || fnGetHumans() == 1)
.......

很強大表情 表情

獻花 x0
引用 | 編輯 fuworm21so
2010-06-10 17:13
3樓
  
什麼意思是交換過來即可呢= ?

我是香港人..有點不明白..

如果修改好了..那麼人類跟倖存者的護甲也沒有問題了嗎?..

表情

獻花 x0
引用 | 編輯 Abcdzxc555
2010-06-10 19:46
4樓
  
下面是引用 fuworm21so 於 2010-06-10 17:13 發表的 : 到引言文
什麼意思是交換過來即可呢= ?

我是香港人..有點不明白..

如果修改好了..那麼人類跟倖存者的護甲也沒有問題了嗎?..

表情

就是修改好了就行了表情

獻花 x0
引用 | 編輯 fuworm21so
2010-06-10 20:22
5樓
  
[已解決了問題]

獻花 x0