OP

mimi

Initiate
ServUO Version
Publish 57
Ultima Expansion
Endless Journey
Please tell me how to change the upper limit of Faster Casting.
I wish change to 6.
Please help me....
 
You want make Faster Casting max = 6. Me show how. Go to Scripts/Spells/Base/Spell.cs. Find line with:

C#:
// Faster casting cap of 2 (if not using the protection spell)
// Faster casting cap of 0 (if using the protection spell)
// Paladin spells are subject to a faster casting cap of 4
// Paladins with magery of 70.0 or above are subject to a faster casting cap of 2

int fcMax = 4;
if (CastSkill == SkillName.Magery || CastSkill == SkillName.Necromancy || CastSkill == SkillName.Mysticism ||
   (CastSkill == SkillName.Chivalry && (m_Caster.Skills[SkillName.Magery].Value >= 70.0 || m_Caster.Skills[SkillName.Mysticism].Value >= 70.0)))
{
    fcMax = 2;
}

You want ALL cap 6? Change fcMax like this:

C#:
int fcMax = 6;

If need only some skills, tweak block above. But for all, just set 6. Keep rest code same. Restart server after. Dat all. Bash bug if come back.

Me done.
 

Active Shards

Donations

Total amount
$0.00
Goal
$500.00
Back