I liked what you guys did with the dispels and have been trying to replicate it myself.
[snapback]33372[/snapback]
Simply increase the max caster level by +20 for the dispels. For instance, normal Dispel Magic has its max caster level set at 10 so I just changed it to 30:
Here is the lines I changed from Dispel Magic:
//--------------------------------------------------------------------------
// Dispel Magic is capped at caster level 10
//--------------------------------------------------------------------------
if(nCasterLevel > 30)
{
nCasterLevel = 30;
}
There is no comprehensive list of altered GS spells but for the most part it was just the Dispels and banned spells. There was a modification to Bard Song and Mo sent me the script awhile back but I'll have to crack open my old computer to find it.
-420