Quando um jogador usa uma magia em área que afeta MP, a magia que você mesmo soltou lhe afeta.
Abra o servidor
1 - No modCombat, procure por:
2 - Desça até achar:
3 - Substitua por:
Créditos:
Valentine
Abra o servidor
1 - No modCombat, procure por:
- Código:
Case SPELL_TYPE_HEALHP, SPELL_TYPE_HEALMP, SPELL_TYPE_DAMAGEMP
2 - Desça até achar:
- Código:
For i = 1 To Player_HighIndex
If IsPlaying(i) Then
If GetPlayerMap(i) = GetPlayerMap(index) Then
If isInRange(AoE, x, y, GetPlayerX(i), GetPlayerY(i)) Then
SpellPlayer_Effect VitalType, increment, i, Vital, spellNum
DidCast = True
End If
End If
End If
Next
3 - Substitua por:
- Código:
For i = 1 To Player_HighIndex
If IsPlaying(i) Then
If i <> index Then
If GetPlayerMap(i) = GetPlayerMap(index) Then
If isInRange(AoE, x, y, GetPlayerX(i), GetPlayerY(i)) Then
SpellPlayer_Effect VitalType, increment, i, Vital, spellNum
DidCast = True
End If
End If
End If
End If
Next
Créditos:
Valentine