20-08-2006, 12:36 PM
Alright, so i was fiddling around with the basics and i noticed that the spell level requirement was not set by the 'level' req in the spell editor at all, it was infact taking the requirement from the vital mod (or appearing to do so anyhow)! Pfft!
Little bit of searching and it was an easy fix indeed. Server side:
Find:
and replace it with:
Thats it fixed. Easy peasy
,
It shouldnt have any side effects at all, but please feel free to point out anything wrong with doing this. Seems to work perfectly to me but you never know!
Toodles~
Edit: Slightly optimized, hrhr
Little bit of searching and it was an easy fix indeed. Server side:
Find:
Code:
Function GetSpellReqLevel(ByVal Index As Long, ByVal SpellNum As Long)
GetSpellReqLevel = Spell(SpellNum).Data - Int(GetClassMAGI(GetPlayerClass(Index)) / 4)
End Function
and replace it with:
Code:
Function GetSpellReqLevel(ByVal Index As Long, ByVal SpellNum As Long)
GetSpellReqLevel = Spell(SpellNum).LevelReq
End Function
Thats it fixed. Easy peasy

It shouldnt have any side effects at all, but please feel free to point out anything wrong with doing this. Seems to work perfectly to me but you never know!
Toodles~
Edit: Slightly optimized, hrhr