Modernization Fixes & Updates to Default Values (#3)
This commit is contained in:
parent
445eddff68
commit
dcf64091b1
768 changed files with 10507 additions and 14196 deletions
|
|
@ -69,11 +69,11 @@ namespace Server.Spells.Third
|
|||
}
|
||||
else
|
||||
{
|
||||
//double total = Caster.Skills[SkillName.Magery].Value + Caster.Skills[SkillName.Poisoning].Value;
|
||||
//double total = Caster.Skills.Magery.Value + Caster.Skills.Poisoning.Value;
|
||||
|
||||
#region Dueling
|
||||
|
||||
double total = Caster.Skills[SkillName.Magery].Value;
|
||||
double total = Caster.Skills.Magery.Value;
|
||||
|
||||
if (Caster is PlayerMobile pm)
|
||||
{
|
||||
|
|
@ -83,12 +83,12 @@ namespace Server.Spells.Third
|
|||
}
|
||||
else
|
||||
{
|
||||
total += pm.Skills[SkillName.Poisoning].Value;
|
||||
total += pm.Skills.Poisoning.Value;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
total += Caster.Skills[SkillName.Poisoning].Value;
|
||||
total += Caster.Skills.Poisoning.Value;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ namespace Server.Spells.Third
|
|||
{
|
||||
Caster.SendLocalizedMessage(502831); // Cannot teleport to that spot.
|
||||
}
|
||||
else if (Region.Find(to, map).GetRegion(typeof(HouseRegion)) != null)
|
||||
else if (Region.Find(to, map).IsPartOf<HouseRegion>())
|
||||
{
|
||||
Caster.SendLocalizedMessage(502829); // Cannot teleport to that spot.
|
||||
}
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ namespace Server.Spells.Third
|
|||
}
|
||||
else
|
||||
{
|
||||
int level = (int)(from.Skills[SkillName.Magery].Value * 0.8) - 4;
|
||||
int level = (int)(from.Skills.Magery.Value * 0.8) - 4;
|
||||
|
||||
if (level >= cont.RequiredSkill &&
|
||||
!(cont is TreasureMapChest chest && chest.Level > 2))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue