1 Corrigindo Erro do DamageMP 15/8/2012, 04:19
Warrior
Ajudante
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:
Um bug simples mais importante!
Creditos
Valentine por fazer
E para min por mostrar para vocês
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
Um bug simples mais importante!
Creditos
Valentine por fazer
E para min por mostrar para vocês