14-02-2007, 09:17 PM
Server Side
Has this not been noticed before?
Find:
Change that to:
Has this not been noticed before?
Find:
Code:
Case SPELL_TYPE_ADDSP
Call MapMsg(GetPlayerMap(Index), GetPlayerName(Index) & " casts " & Trim(Spell(SpellNum).Name) & " on " & GetPlayerName(n) & ".", BrightBlue)
Call SetPlayerMP(n, GetPlayerSP(n) + Spell(SpellNum).Data1)
Call SendMP(n)
Code:
Case SPELL_TYPE_ADDSP
Call MapMsg(GetPlayerMap(Index), GetPlayerName(Index) & " casts " & Trim(Spell(SpellNum).Name) & " on " & GetPlayerName(n) & ".", BrightBlue)
Call SetPlayerSP(n, GetPlayerSP(n) + Spell(SpellNum).Data1)
Call SendSP(n)