Please need repair this error please :(

Code:
Errors:
+ Spells/Druid/Book/DruidicSpellBook.cs:
    CS1061: Line 12: 'Server.Items.SpellbookType' does not contain a definition
for 'Druidic' and no extension method 'Druidic' accepting a first argument of ty
pe 'Server.Items.SpellbookType' could be found (are you missing a using directiv
e or an assembly reference?)
+ Spells/Druid/Druid Mobiles/EvilDruid.cs:
    CS0266: Line 141: Cannot implicitly convert type 'Server.IDamageable' to 'Se
rver.Mobile'. An explicit conversion exists (are you missing a cast?)
+ Spells/Reagent.cs:
    CS0847: Line 9: An array initializer of length '17' is expected
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 
All of those errors are pretty self-explanatory. Did you want help with all 3, or 1 of them in particular? It would probably help if you posted the script you were having trouble with also. Hard to troubleshoot what we can't see. ;)
 
ready i repair :D but have this now :(
Code:
Errors:
+ Spells/Druid/Druid Vendor/DruidVendor.cs:
    CS1715: Line 10: 'Server.Mobiles.DruidVendor.SBInfos': type must be 'System.
Collections.Generic.List<Server.Mobiles.SBInfo>' to match overridden member 'Ser
ver.Mobiles.BaseVendor.SBInfos'
    CS0534: Line 7: 'Server.Mobiles.DruidVendor' does not implement inherited ab
stract member 'Server.Mobiles.BaseVendor.SBInfos.get'
+ Spells/Druid/Druid Vendor/SBDruidVendor.cs:
    CS1715: Line 17: 'Server.Mobiles.SBDruidVendor.BuyInfo': type must be 'Syste
m.Collections.Generic.List<Server.Mobiles.GenericBuyInfo>' to match overridden m
ember 'Server.Mobiles.SBInfo.BuyInfo'
    CS0534: Line 7: 'Server.Mobiles.SBDruidVendor' does not implement inherited
abstract member 'Server.Mobiles.SBInfo.BuyInfo.get'
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 
  1. CS1715: Line 10: 'Server.Mobiles.DruidVendor.SBInfos': type must be 'System.
  2. Collections.Generic.List<Server.Mobiles.SBInfo>' to match overridden member 'Ser
  3. ver.Mobiles.BaseVendor.SBInfos' need to look at Your existing vendors ,, their buy clip is different than this 1 which is most likely a runuo script I have had to change a few to get them to work on justuo ,, most likely will need to change in vendor and vendorbuy gump for that particular vendor
 
I need you to tell me where I delete and put it since you just copied and you hit another post friend
 

Attachments

  • DruidVendor.cs
    1.5 KB · Views: 3
  • SBDruidVendor.cs
    1.8 KB · Views: 2
Change "ArrayList" to List<SBInfo>" exactly as the error states.

You know, if you have other vendors, you can look at those files and see what they are supposed to look like. It's fairly straight-forward.
 
ok I looked at what You have and what I have is slitly different Im using Justuo
this is Yours
public class SBDruidVendor : SBInfo
{
private ArrayList m_BuyInfo = new InternalBuyInfo();
private IShopSellInfo m_SellInfo = new InternalSellInfo();

this is Mine
public class SBDruidVendor : SBInfo
{
private readonly List<GenericBuyInfo> m_BuyInfo = new InternalBuyInfo();
private readonly IShopSellInfo m_SellInfo = new InternalSellInfo();
public SBDruidVendor
()

Like Lokai mentioned compare the vendor and the sb vendor to What You have in already ,, is not many changes but if You need more help I can change them and repost but cant garauntee no errors since Im on Justuo
 
more error:

Code:
Errors:
+ Spells/Druid/Druid Vendor/DruidVendor.cs:
    CS0246: Line 9: The type or namespace name 'List' could not be found (are yo
u missing a using directive or an assembly reference?)
+ Spells/Druid/Druid Vendor/SBDruidVendor.cs:
    CS0246: Line 9: The type or namespace name 'List' could not be found (are yo
u missing a using directive or an assembly reference?)
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 

Attachments

  • DruidVendor.cs
    1.5 KB · Views: 1
  • SBDruidVendor.cs
    1.8 KB · Views: 1
more error :(

Code:
Errors:
+ Spells/Druid/Druid Vendor/DruidVendor.cs:
    CS0534: Line 8: 'Server.Mobiles.DruidVendor' does not implement inherited ab
stract member 'Server.Mobiles.BaseVendor.SBInfos.get'
+ Spells/Druid/Druid Vendor/SBDruidVendor.cs:
    CS1715: Line 17: 'Server.Mobiles.SBDruidVendor.BuyInfo': type must be 'Syste
m.Collections.Generic.List<Server.Mobiles.GenericBuyInfo>' to match overridden m
ember 'Server.Mobiles.SBInfo.BuyInfo'
    CS0534: Line 8: 'Server.Mobiles.SBDruidVendor' does not implement inherited
abstract member 'Server.Mobiles.SBInfo.BuyInfo.get'
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 
Here I leave the script to see if they can solve
 

Attachments

  • DruidVendor.cs
    1.5 KB · Views: 2
  • SBDruidVendor.cs
    1.8 KB · Views: 1
DruidVendor.cs
You have
Code:
private readonly List<GenericBuyInfo> m_BuyInfo = new InternalBuyInfo();
private readonly IShopSellInfo m_SellInfo = new InternalSellInfo();
Try
Code:
        private readonly List<SBInfo> m_SBInfos = new List<SBInfo>();
        protected override List<SBInfo> SBInfos
        {
            get
            {
                return this.m_SBInfos;
            }
        }
SBDruidVendor.cs
You have
Code:
private readonly List<GenericBuyInfo> m_BuyInfo = new InternalBuyInfo();
private readonly IShopSellInfo m_SellInfo = new InternalSellInfo();
public SBDruidVendor()
        {
        }

        public override IShopSellInfo SellInfo { get { return m_SellInfo; } }
        public override ArrayList BuyInfo { get { return m_BuyInfo; } }

        public class InternalBuyInfo : ArrayList
Try
Code:
        private List<GenericBuyInfo> m_BuyInfo = new InternalBuyInfo();
        private IShopSellInfo m_SellInfo = new InternalSellInfo();

        public SBDruidVendor()
        {
        }

        public override IShopSellInfo SellInfo { get { return m_SellInfo; } }
        public override List<GenericBuyInfo> BuyInfo { get { return m_BuyInfo; } }

        public class InternalBuyInfo : List<GenericBuyInfo>
 
wazaaaaaaaaaaaaaaa:
Code:
PetrafiedWood'
+ Spells/Druid/Druid Spells/ManaSpringSpell.cs:
    CS0117: Line 21: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/NaturesGraceSpell.cs:
    CS0117: Line 15: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/RestorationSpell.cs:
    CS0117: Line 16: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/SwarmofInsectsSpell.cs:
    CS0117: Line 17: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/TreeOfLifeSpell.cs:
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Vendor/SBDruidVendor.cs:
    CS0246: Line 29: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 41: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
+ Spells/Druid/DruidicSpellBook.cs:
    CS1061: Line 10: 'Server.Items.SpellbookType' does not contain a definition
for 'Druidic' and no extension method 'Druidic' accepting a first argument of ty
pe 'Server.Items.SpellbookType' could be found (are you missing a using directiv
e or an assembly reference?)
+ Spells/Eighth/Earthquake.cs:
    CS1502: Line 95: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, int
, int, int)' has some invalid arguments
    CS1503: Line 95: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Fifth/Paralyze.cs:
    CS1061: Line 87: 'Server.Spells.Fifth.ParalyzeSpell' does not contain a defi
nition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a fir
st argument of type 'Server.Spells.Fifth.ParalyzeSpell' could be found (are you
missing a using directive or an assembly reference?)
+ Spells/Fifth/PoisonField.cs:
    CS0117: Line 200: 'Server.Spells.SpellHelper' does not contain a definition
for 'CanRevealCaster'
+ Spells/First/Clumsy.cs:
    CS1061: Line 56: 'Server.Spells.First.ClumsySpell' does not contain a defini
tion for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a first
argument of type 'Server.Spells.First.ClumsySpell' could be found (are you miss
ing a using directive or an assembly reference?)
+ Spells/First/Feeblemind.cs:
    CS1061: Line 56: 'Server.Spells.First.FeeblemindSpell' does not contain a de
finition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a f
irst argument of type 'Server.Spells.First.FeeblemindSpell' could be found (are
you missing a using directive or an assembly reference?)
+ Spells/First/MagicArrow.cs:
    CS1502: Line 52: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 52: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 65: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 65: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 86: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 86: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/First/Weaken.cs:
    CS1061: Line 56: 'Server.Spells.First.WeakenSpell' does not contain a defini
tion for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a first
argument of type 'Server.Spells.First.WeakenSpell' could be found (are you miss
ing a using directive or an assembly reference?)
+ Spells/Fourth/Curse.cs:
    CS1061: Line 103: 'Server.Spells.Fourth.CurseSpell' does not contain a defin
ition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a firs
t argument of type 'Server.Spells.Fourth.CurseSpell' could be found (are you mis
sing a using directive or an assembly reference?)
+ Spells/Fourth/Lightning.cs:
    CS1502: Line 46: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 46: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 77: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 77: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Fourth/ManaDrain.cs:
    CS1061: Line 86: 'Server.Spells.Fourth.ManaDrainSpell' does not contain a de
finition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a f
irst argument of type 'Server.Spells.Fourth.ManaDrainSpell' could be found (are
you missing a using directive or an assembly reference?)
+ Spells/Mysticism/SpellDefinitions/AnimatedWeaponSpell.cs:
    CS1501: Line 49: No overload for method 'Summon' takes 8 arguments
+ Spells/Mysticism/SpellDefinitions/HailStormSpell.cs:
    CS1502: Line 120: The best overloaded method match for 'Server.Spells.Spell.
GetNewAosDamage(int, int, int, bool, double)' has some invalid arguments
    CS1503: Line 120: Argument 5: cannot convert from 'Server.Mobile' to 'double
'
+ Spells/Mysticism/SpellDefinitions/NetherBoltSpell.cs:
    CS1502: Line 42: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, int
, int, int, Server.Misc.DFAlgorithm)' has some invalid arguments
    CS1503: Line 42: Argument 1: cannot convert from 'Server.Spells.Mystic.Nethe
rBoltSpell' to 'System.TimeSpan'
    CS1503: Line 42: Argument 3: cannot convert from 'double' to 'Server.Mobile'

+ Spells/Mysticism/SpellDefinitions/NetherCycloneSpell.cs:
    CS1502: Line 64: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, int
, int, int, Server.Misc.DFAlgorithm)' has some invalid arguments
    CS1503: Line 64: Argument 1: cannot convert from 'Server.Spells.Mystic.Nethe
rCycloneSpell' to 'System.TimeSpan'
    CS1503: Line 64: Argument 3: cannot convert from 'double' to 'Server.Mobile'

+ Spells/Mysticism/SpellDefinitions/PurgeMagicSpell.cs:
    CS1502: Line 234: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, in
t, int, int, Server.Misc.DFAlgorithm)' has some invalid arguments
    CS1503: Line 234: Argument 3: cannot convert from 'int' to 'Server.Mobile'
+ Spells/Necromancy/BloodOathSpell.cs:
    CS1061: Line 139: 'Server.Spells.Necromancy.BloodOathSpell' does not contain
a definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' acceptin
g a first argument of type 'Server.Spells.Necromancy.BloodOathSpell' could be fo
und (are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/CorpseSkin.cs:
    CS1061: Line 124: 'Server.Spells.Necromancy.CorpseSkinSpell' does not contai
n a definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepti
ng a first argument of type 'Server.Spells.Necromancy.CorpseSkinSpell' could be
found (are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/EvilOmen.cs:
    CS1061: Line 117: 'Server.Spells.Necromancy.EvilOmenSpell' does not contain
a definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting
a first argument of type 'Server.Spells.Necromancy.EvilOmenSpell' could be foun
d (are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/MindRot.cs:
    CS1061: Line 129: 'Server.Spells.Necromancy.MindRotSpell' does not contain a
definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting
a first argument of type 'Server.Spells.Necromancy.MindRotSpell' could be found
(are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/PainSpike.cs:
    CS0117: Line 112: 'Server.Spells.SpellHelper' does not contain a definition
for 'DoLeech'
    CS0103: Line 115: The name 'HarmfulSpell' does not exist in the current cont
ext
+ Spells/Necromancy/PoisonStrike.cs:
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 131: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 131: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Necromancy/Strangle.cs:
    CS0103: Line 152: The name 'HarmfulSpell' does not exist in the current cont
ext
+ Spells/Necromancy/Wither.cs:
    CS1502: Line 137: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 137: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Ninjitsu/ShadowJump.cs:
    CS1501: Line 102: No overload for method 'CheckMulti' takes 4 arguments
+ Spells/Priest/Priest Spells/PriestSpell.cs:
    CS0029: Line 93: Cannot implicitly convert type 'System.DateTime' to 'long'
+ Spells/Priest/Priest Spells/CleanseSpiritSpell.cs:
    CS0117: Line 69: 'Server.Spells.Necromancy.EvilOmenSpell' does not contain a
definition for 'CheckEffect'
+ Spells/Priest/PriestSpellBook.cs:
    CS1061: Line 10: 'Server.Items.SpellbookType' does not contain a definition
for 'Priest' and no extension method 'Priest' accepting a first argument of type
'Server.Items.SpellbookType' could be found (are you missing a using directive
or an assembly reference?)
+ Spells/Second/Harm.cs:
    CS1502: Line 51: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 51: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 62: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 62: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 104: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 104: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Seventh/ChainLightning.cs:
    CS1502: Line 93: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, bool, double)' has some invalid arguments
    CS1503: Line 93: Argument 5: cannot convert from 'Server.IDamageable' to 'do
uble'
    CS1502: Line 113: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 113: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Seventh/FlameStrike.cs:
    CS1502: Line 46: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 46: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 86: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 86: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Seventh/ManaVampire.cs:
    CS1061: Line 91: 'Server.Spells.Seventh.ManaVampireSpell' does not contain a
definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting
a first argument of type 'Server.Spells.Seventh.ManaVampireSpell' could be found
(are you missing a using directive or an assembly reference?)
+ Spells/Seventh/MeteorSwarm.cs:
    CS1502: Line 95: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, bool, double)' has some invalid arguments
    CS1503: Line 95: Argument 5: cannot convert from 'Server.IDamageable' to 'do
uble'
    CS1502: Line 115: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 115: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Sixth/EnergyBolt.cs:
    CS1502: Line 46: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 46: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 59: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 59: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 83: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 83: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Sixth/Explosion.cs:
    CS1502: Line 98: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 98: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 127: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 127: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Sixth/ParalyzeField.cs:
    CS0117: Line 177: 'Server.Spells.SpellHelper' does not contain a definition
for 'CanRevealCaster'
+ Spells/Skill Masteries/BardSpells/Despair.cs:
    CS0103: Line 76: The name 'HarmfulSpell' does not exist in the current conte
xt
+ Spells/Skill Masteries/BardSpells/Tribulation.cs:
    CS0103: Line 77: The name 'HarmfulSpell' does not exist in the current conte
xt
+ Spells/Skill Masteries/NetherBlast.cs:
    CS0117: Line 190: 'Server.Spells.SpellHelper' does not contain a definition
for 'CanRevealCaster'
+ Spells/Third/Fireball.cs:
    CS1502: Line 43: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 43: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 78: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 78: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Third/Poison.cs:
    CS1061: Line 122: 'Server.Spells.Third.PoisonSpell' does not contain a defin
ition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a firs
t argument of type 'Server.Spells.Third.PoisonSpell' could be found (are you mis
sing a using directive or an assembly reference?)
+ Spells/Initializer.cs:
    CS0234: Line 186: The type or namespace name 'HollowReedSpell' does not exis
t in the namespace 'Server.Spells.Druid' (are you missing an assembly reference?
)
    CS0234: Line 188: The type or namespace name 'SpringOfLifeSpell' does not ex
ist in the namespace 'Server.Spells.Druid' (are you missing an assembly referenc
e?)
    CS0234: Line 193: The type or namespace name 'TreefellowSpell' does not exis
t in the namespace 'Server.Spells.Druid' (are you missing an assembly reference?
)
+ Spells/Reagent.cs:
    CS0847: Line 9: An array initializer of length '17' is expected
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 
Lets see here... your druidic reagents need added to Reagent.cs Scripts/Spells/Reagent.cs
And you're using RunUO and not ServUO, aren't you? ServUO has the IDamageable & RunUO does not. The same goes for HarmfulSpell. Or at least an old version of ServUO.
 
reinstals all files and give me this error :

Code:
Errors:
+ Spells/Druid/Druid Mobiles/Druid.cs:
    CS1715: Line 10: 'Server.Mobiles.Druid.SBInfos': type must be 'System.Collec
tions.Generic.List<Server.Mobiles.SBInfo>' to match overridden member 'Server.Mo
biles.BaseVendor.SBInfos'
    CS0534: Line 7: 'Server.Mobiles.Druid' does not implement inherited abstract
member 'Server.Mobiles.BaseVendor.SBInfos.get'
+ Spells/Druid/Druid Mobiles/SBDruid.cs:
    CS1715: Line 17: 'Server.Mobiles.SBDruid.BuyInfo': type must be 'System.Coll
ections.Generic.List<Server.Mobiles.GenericBuyInfo>' to match overridden member
'Server.Mobiles.SBInfo.BuyInfo'
    CS0534: Line 7: 'Server.Mobiles.SBDruid' does not implement inherited abstra
ct member 'Server.Mobiles.SBInfo.BuyInfo.get'
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 
ready but now say this error :

Code:
Errors:
+ Spells/Druid/Druid Mobiles/EvilDruid.cs:
    CS0246: Line 107: The type or namespace name 'PetrafiedWood' could not be fo
und (are you missing a using directive or an assembly reference?)
    CS0246: Line 110: The type or namespace name 'DestroyingAngel' could not be
found (are you missing a using directive or an assembly reference?)
    CS0266: Line 142: Cannot implicitly convert type 'Server.IDamageable' to 'Se
rver.Mobile'. An explicit conversion exists (are you missing a cast?)
+ Spells/Druid/Druid Mobiles/SBDruid.cs:
    CS0246: Line 39: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 57: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
+ Spells/Druid/Druid Spells/Unused/EnchantedGroveSpell.cs:
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
DestroyingAngel'
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
    CS0117: Line 21: 'Server.Spells.Reagent' does not contain a definition for '
SpringWater'
+ Spells/Druid/Druid Spells/Unused/MushroomGatewaySpell.cs:
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
Pumice'
+ Spells/Druid/Druid Spells/Unused/NaturesPassageSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
Pumice'
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
SpringWater'
+ Spells/Druid/Druid Spells/Unused/PackOfBeastSpell.cs:
    CS0117: Line 17: 'Server.Spells.Reagent' does not contain a definition for '
Pumice'
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/Unused/RestorativeSoilSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
Pumice'
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
SpringWater'
+ Spells/Druid/Druid Spells/Unused/SummonFireflySpell.cs:
    CS0117: Line 16: 'Server.Spells.Reagent' does not contain a definition for '
SpringWater'
    CS0117: Line 17: 'Server.Spells.Reagent' does not contain a definition for '
Pumice'
+ Spells/Druid/Druid Spells/BarbedPrisonSpell.cs:
    CS0117: Line 24: 'Server.Spells.Reagent' does not contain a definition for '
SpringWater'
+ Spells/Druid/Druid Spells/BarkSkinSpell.cs:
    CS0117: Line 25: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/BlendWithForestSpell.cs:
    CS0117: Line 17: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/DeadlySporesSpell.cs:
    CS0117: Line 24: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
    CS0117: Line 25: 'Server.Spells.Reagent' does not contain a definition for '
Pumice'
+ Spells/Druid/Druid Spells/ForestKinSpell.cs:
    CS0117: Line 21: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/GraspingRootsSpell.cs:
    CS0117: Line 17: 'Server.Spells.Reagent' does not contain a definition for '
SpringWater'
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
Pumice'
+ Spells/Druid/Druid Spells/HibernateSpell.cs:
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
Pumice'
+ Spells/Druid/Druid Spells/HurricaneSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
Pumice'
+ Spells/Druid/Druid Spells/LureStoneSpell.cs:
    CS0117: Line 21: 'Server.Spells.Reagent' does not contain a definition for '
Pumice'
    CS0117: Line 22: 'Server.Spells.Reagent' does not contain a definition for '
SpringWater'
+ Spells/Druid/Druid Spells/ManaSpringSpell.cs:
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
SpringWater'
    CS0117: Line 21: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/NaturesGraceSpell.cs:
    CS0117: Line 15: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
    CS0117: Line 16: 'Server.Spells.Reagent' does not contain a definition for '
SpringWater'
+ Spells/Druid/Druid Spells/RegrowthSpell.cs:
    CS0117: Line 17: 'Server.Spells.Reagent' does not contain a definition for '
SpringWater'
+ Spells/Druid/Druid Spells/RestorationSpell.cs:
    CS0117: Line 15: 'Server.Spells.Reagent' does not contain a definition for '
SpringWater'
    CS0117: Line 16: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
    CS0117: Line 17: 'Server.Spells.Reagent' does not contain a definition for '
Pumice'
+ Spells/Druid/Druid Spells/SwarmofInsectsSpell.cs:
    CS0117: Line 17: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
Pumice'
+ Spells/Druid/Druid Spells/TreeOfLifeSpell.cs:
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
    CS0117: Line 21: 'Server.Spells.Reagent' does not contain a definition for '
SpringWater'
+ Spells/Druid/Druid Spells/VolcanicEruption.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
Pumice'
+ Spells/Druid/Druid Vendor/SBDruidVendor.cs:
    CS0246: Line 29: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 41: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
+ Spells/Priest/Priest Spells/PriestSpell.cs:
    CS0029: Line 93: Cannot implicitly convert type 'System.DateTime' to 'long'
+ Spells/Priest/Priest Spells/CleanseSpiritSpell.cs:
    CS0117: Line 69: 'Server.Spells.Necromancy.EvilOmenSpell' does not contain a
definition for 'CheckEffect'
+ Spells/Reagent.cs:
    CS0847: Line 9: An array initializer of length '17' is expected
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 
You need to add the druidic reagents to the Reagent.cs
Add them here
Code:
        private static readonly Type[] m_Types = new Type[17]
        {
            typeof(BlackPearl),
            typeof(Bloodmoss),
            typeof(Garlic),
            typeof(Ginseng),
            typeof(MandrakeRoot),
            typeof(Nightshade),
            typeof(SulfurousAsh),
            typeof(SpidersSilk),
            typeof(BatWing),
            typeof(GraveDust),
            typeof(DaemonBlood),
            typeof(NoxCrystal),
            typeof(PigIron),
            typeof(Bone),
            typeof(DragonBlood),
            typeof(FertileDirt),
            typeof(DaemonBone) // Add them after this, but put a , in first.
        };
Then increase the 17 that's at the top to the amount of reagents it now is. Example. if you add 5 new reagents, the 17 becomes 22.
 
Code:
--------------------------------------------------------------------------------

ServUO - [http://www.servuo.com] Version 0.5, Build 6230.26444
Publish 54
Core: Optimizing for 2 processors
RandomImpl: CSPRandom (Software)
Core: Loading config...
Scripts: Compiling C# scripts...Failed with: 21 errors, 0 warnings
Errors:
+ Spells/Druid/Druid Mobiles/EvilDruid.cs:
    CS0246: Line 107: The type or namespace name 'PetrafiedWood' could not be fo
und (are you missing a using directive or an assembly reference?)
    CS0246: Line 110: The type or namespace name 'DestroyingAngel' could not be
found (are you missing a using directive or an assembly reference?)
    CS0266: Line 142: Cannot implicitly convert type 'Server.IDamageable' to 'Se
rver.Mobile'. An explicit conversion exists (are you missing a cast?)
+ Spells/Druid/Druid Mobiles/SBDruid.cs:
    CS0246: Line 39: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 57: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
+ Spells/Druid/Druid Spells/Unused/EnchantedGroveSpell.cs:
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
DestroyingAngel'
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/Unused/PackOfBeastSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/Unused/RestorativeSoilSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/BarkSkinSpell.cs:
    CS0117: Line 25: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/BlendWithForestSpell.cs:
    CS0117: Line 17: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/DeadlySporesSpell.cs:
    CS0117: Line 24: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/ForestKinSpell.cs:
    CS0117: Line 21: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/GraspingRootsSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/HibernateSpell.cs:
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/HurricaneSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/ManaSpringSpell.cs:
    CS0117: Line 21: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/NaturesGraceSpell.cs:
    CS0117: Line 15: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/RestorationSpell.cs:
    CS0117: Line 16: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/SwarmofInsectsSpell.cs:
    CS0117: Line 17: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/TreeOfLifeSpell.cs:
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Vendor/SBDruidVendor.cs:
    CS0246: Line 29: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 41: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
+ Spells/Priest/Priest Spells/PriestSpell.cs:
    CS0029: Line 93: Cannot implicitly convert type 'System.DateTime' to 'long'
+ Spells/Priest/Priest Spells/CleanseSpiritSpell.cs:
    CS0117: Line 69: 'Server.Spells.Necromancy.EvilOmenSpell' does not contain a
definition for 'CheckEffect'
+ Spells/Reagent.cs:
    CS0847: Line 9: An array initializer of length '17' is expected
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 
You need to add the reagents into the lower section of Reagent.cs as well & make sure to number them accordingly. Also, post your EvilDruid.cs please.
 
Code:
Errors:
+ Spells/Druid/Druid Mobiles/EvilDruid.cs:
    CS0246: Line 107: The type or namespace name 'PetrafiedWood' could not be fo
und (are you missing a using directive or an assembly reference?)
    CS0246: Line 110: The type or namespace name 'DestroyingAngel' could not be
found (are you missing a using directive or an assembly reference?)
    CS0266: Line 142: Cannot implicitly convert type 'Server.IDamageable' to 'Se
rver.Mobile'. An explicit conversion exists (are you missing a cast?)
+ Spells/Druid/Druid Mobiles/SBDruid.cs:
    CS0246: Line 39: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 57: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
+ Spells/Druid/Druid Spells/Unused/EnchantedGroveSpell.cs:
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
DestroyingAngel'
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/Unused/PackOfBeastSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/Unused/RestorativeSoilSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/BarkSkinSpell.cs:
    CS0117: Line 25: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/BlendWithForestSpell.cs:
    CS0117: Line 17: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/DeadlySporesSpell.cs:
    CS0117: Line 24: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/ForestKinSpell.cs:
    CS0117: Line 21: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/GraspingRootsSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/HibernateSpell.cs:
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/HurricaneSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/ManaSpringSpell.cs:
    CS0117: Line 21: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/NaturesGraceSpell.cs:
    CS0117: Line 15: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/RestorationSpell.cs:
    CS0117: Line 16: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/SwarmofInsectsSpell.cs:
    CS0117: Line 17: 'Server.Spells.Reagent' does not contain a definition for '
FenMoss'
+ Spells/Druid/Druid Spells/TreeOfLifeSpell.cs:
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Vendor/SBDruidVendor.cs:
    CS0246: Line 29: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 41: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
+ Spells/Priest/Priest Spells/PriestSpell.cs:
    CS0029: Line 93: Cannot implicitly convert type 'System.DateTime' to 'long'
+ Spells/Priest/Priest Spells/CleanseSpiritSpell.cs:
    CS0117: Line 69: 'Server.Spells.Necromancy.EvilOmenSpell' does not contain a
definition for 'CheckEffect'
+ Spells/Reagent.cs:
    CS0246: Line 30: The type or namespace name 'BarbedPrisonSpell' could not be
found (are you missing a using directive or an assembly reference?)
    CS0246: Line 31: The type or namespace name 'BarkSkinSpell' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 32: The type or namespace name 'BlendWithForestSpell' could not
be found (are you missing a using directive or an assembly reference?)
    CS0246: Line 33: The type or namespace name 'DeadlySporesSpell' could not be
found (are you missing a using directive or an assembly reference?)
    CS0246: Line 34: The type or namespace name 'DruidicSpell' could not be foun
d (are you missing a using directive or an assembly reference?)
    CS0246: Line 35: The type or namespace name 'DruidicSpell' could not be foun
d (are you missing a using directive or an assembly reference?)
    CS0246: Line 36: The type or namespace name 'ForestKinSpell' could not be fo
und (are you missing a using directive or an assembly reference?)
    CS0246: Line 37: The type or namespace name 'GraspingRootsSpell' could not b
e found (are you missing a using directive or an assembly reference?)
    CS0246: Line 38: The type or namespace name 'HibernateSpell' could not be fo
und (are you missing a using directive or an assembly reference?)
    CS0246: Line 39: The type or namespace name 'HurricaneSpell' could not be fo
und (are you missing a using directive or an assembly reference?)
    CS0246: Line 41: The type or namespace name 'LureStoneSpell' could not be fo
und (are you missing a using directive or an assembly reference?)
    CS0246: Line 42: The type or namespace name 'ManaSpringSpell' could not be f
ound (are you missing a using directive or an assembly reference?)
    CS0246: Line 43: The type or namespace name 'NaturesGraceSpell' could not be
found (are you missing a using directive or an assembly reference?)
    CS0246: Line 44: The type or namespace name 'RegrowthSpell' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 45: The type or namespace name 'RestorationSpell' could not be
found (are you missing a using directive or an assembly reference?)
    CS0246: Line 46: The type or namespace name 'ShieldOfEarthSpell' could not b
e found (are you missing a using directive or an assembly reference?)
    CS0246: Line 47: The type or namespace name 'SwarmofInsectsSpell' could not
be found (are you missing a using directive or an assembly reference?)
    CS0246: Line 48: The type or namespace name 'TreeOfLifeSpell' could not be f
ound (are you missing a using directive or an assembly reference?)
    CS0246: Line 49: The type or namespace name 'VolcanicEruption' could not be
found (are you missing a using directive or an assembly reference?)
    CS0847: Line 9: An array initializer of length '17' is expected
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 

Attachments

  • EvilDruid.cs
    8.9 KB · Views: 3
  • Reagent.cs
    5.9 KB · Views: 5
Code:
 + Spells/Druid/Druid Spells/BlendWithForestSpell.cs:
    CS0117: Line 17: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/ForestKinSpell.cs:
    CS0117: Line 21: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/GraspingRootsSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/HibernateSpell.cs:
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/HurricaneSpell.cs:
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/TreeOfLifeSpell.cs:
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Vendor/SBDruidVendor.cs:
    CS0246: Line 29: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 41: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
+ Spells/Druid/DruidicSpellBook.cs:
    CS1061: Line 10: 'Server.Items.SpellbookType' does not contain a definition
for 'Druidic' and no extension method 'Druidic' accepting a first argument of ty
pe 'Server.Items.SpellbookType' could be found (are you missing a using directiv
e or an assembly reference?)
+ Spells/Eighth/Earthquake.cs:
    CS1502: Line 95: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, int
, int, int)' has some invalid arguments
    CS1503: Line 95: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Fifth/Paralyze.cs:
    CS1061: Line 87: 'Server.Spells.Fifth.ParalyzeSpell' does not contain a defi
nition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a fir
st argument of type 'Server.Spells.Fifth.ParalyzeSpell' could be found (are you
missing a using directive or an assembly reference?)
+ Spells/Fifth/PoisonField.cs:
    CS0117: Line 200: 'Server.Spells.SpellHelper' does not contain a definition
for 'CanRevealCaster'
+ Spells/First/Clumsy.cs:
    CS1061: Line 56: 'Server.Spells.First.ClumsySpell' does not contain a defini
tion for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a first
argument of type 'Server.Spells.First.ClumsySpell' could be found (are you miss
ing a using directive or an assembly reference?)
+ Spells/First/Feeblemind.cs:
    CS1061: Line 56: 'Server.Spells.First.FeeblemindSpell' does not contain a de
finition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a f
irst argument of type 'Server.Spells.First.FeeblemindSpell' could be found (are
you missing a using directive or an assembly reference?)
+ Spells/First/MagicArrow.cs:
    CS1502: Line 52: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 52: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 65: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 65: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 86: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 86: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/First/Weaken.cs:
    CS1061: Line 56: 'Server.Spells.First.WeakenSpell' does not contain a defini
tion for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a first
argument of type 'Server.Spells.First.WeakenSpell' could be found (are you miss
ing a using directive or an assembly reference?)
+ Spells/Fourth/Curse.cs:
    CS1061: Line 103: 'Server.Spells.Fourth.CurseSpell' does not contain a defin
ition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a firs
t argument of type 'Server.Spells.Fourth.CurseSpell' could be found (are you mis
sing a using directive or an assembly reference?)
+ Spells/Fourth/Lightning.cs:
    CS1502: Line 46: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 46: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 77: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 77: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Fourth/ManaDrain.cs:
    CS1061: Line 86: 'Server.Spells.Fourth.ManaDrainSpell' does not contain a de
finition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a f
irst argument of type 'Server.Spells.Fourth.ManaDrainSpell' could be found (are
you missing a using directive or an assembly reference?)
+ Spells/Mysticism/SpellDefinitions/AnimatedWeaponSpell.cs:
    CS1501: Line 49: No overload for method 'Summon' takes 8 arguments
+ Spells/Mysticism/SpellDefinitions/HailStormSpell.cs:
    CS1502: Line 120: The best overloaded method match for 'Server.Spells.Spell.
GetNewAosDamage(int, int, int, bool, double)' has some invalid arguments
    CS1503: Line 120: Argument 5: cannot convert from 'Server.Mobile' to 'double
'
+ Spells/Mysticism/SpellDefinitions/NetherBoltSpell.cs:
    CS1502: Line 42: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, int
, int, int, Server.Misc.DFAlgorithm)' has some invalid arguments
    CS1503: Line 42: Argument 1: cannot convert from 'Server.Spells.Mystic.Nethe
rBoltSpell' to 'System.TimeSpan'
    CS1503: Line 42: Argument 3: cannot convert from 'double' to 'Server.Mobile'

+ Spells/Mysticism/SpellDefinitions/NetherCycloneSpell.cs:
    CS1502: Line 64: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, int
, int, int, Server.Misc.DFAlgorithm)' has some invalid arguments
    CS1503: Line 64: Argument 1: cannot convert from 'Server.Spells.Mystic.Nethe
rCycloneSpell' to 'System.TimeSpan'
    CS1503: Line 64: Argument 3: cannot convert from 'double' to 'Server.Mobile'

+ Spells/Mysticism/SpellDefinitions/PurgeMagicSpell.cs:
    CS1502: Line 234: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, in
t, int, int, Server.Misc.DFAlgorithm)' has some invalid arguments
    CS1503: Line 234: Argument 3: cannot convert from 'int' to 'Server.Mobile'
+ Spells/Necromancy/BloodOathSpell.cs:
    CS1061: Line 139: 'Server.Spells.Necromancy.BloodOathSpell' does not contain
a definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' acceptin
g a first argument of type 'Server.Spells.Necromancy.BloodOathSpell' could be fo
und (are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/CorpseSkin.cs:
    CS1061: Line 124: 'Server.Spells.Necromancy.CorpseSkinSpell' does not contai
n a definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepti
ng a first argument of type 'Server.Spells.Necromancy.CorpseSkinSpell' could be
found (are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/EvilOmen.cs:
    CS1061: Line 117: 'Server.Spells.Necromancy.EvilOmenSpell' does not contain
a definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting
a first argument of type 'Server.Spells.Necromancy.EvilOmenSpell' could be foun
d (are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/MindRot.cs:
    CS1061: Line 129: 'Server.Spells.Necromancy.MindRotSpell' does not contain a
definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting
a first argument of type 'Server.Spells.Necromancy.MindRotSpell' could be found
(are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/PainSpike.cs:
    CS0117: Line 112: 'Server.Spells.SpellHelper' does not contain a definition
for 'DoLeech'
    CS0103: Line 115: The name 'HarmfulSpell' does not exist in the current cont
ext
+ Spells/Necromancy/PoisonStrike.cs:
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 131: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 131: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Necromancy/Strangle.cs:
    CS0103: Line 152: The name 'HarmfulSpell' does not exist in the current cont
ext
+ Spells/Necromancy/Wither.cs:
    CS1502: Line 137: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 137: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Ninjitsu/ShadowJump.cs:
    CS1501: Line 102: No overload for method 'CheckMulti' takes 4 arguments
+ Spells/Priest/Priest Spells/PriestSpell.cs:
    CS0029: Line 93: Cannot implicitly convert type 'System.DateTime' to 'long'
+ Spells/Priest/Priest Spells/CleanseSpiritSpell.cs:
    CS0117: Line 69: 'Server.Spells.Necromancy.EvilOmenSpell' does not contain a
definition for 'CheckEffect'
+ Spells/Priest/PriestSpellBook.cs:
    CS1061: Line 10: 'Server.Items.SpellbookType' does not contain a definition
for 'Priest' and no extension method 'Priest' accepting a first argument of type
'Server.Items.SpellbookType' could be found (are you missing a using directive
or an assembly reference?)
+ Spells/Second/Harm.cs:
    CS1502: Line 51: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 51: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 62: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 62: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 104: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 104: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Seventh/ChainLightning.cs:
    CS1502: Line 93: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, bool, double)' has some invalid arguments
    CS1503: Line 93: Argument 5: cannot convert from 'Server.IDamageable' to 'do
uble'
    CS1502: Line 113: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 113: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Seventh/FlameStrike.cs:
    CS1502: Line 46: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 46: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 86: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 86: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Seventh/ManaVampire.cs:
    CS1061: Line 91: 'Server.Spells.Seventh.ManaVampireSpell' does not contain a
definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting
a first argument of type 'Server.Spells.Seventh.ManaVampireSpell' could be found
(are you missing a using directive or an assembly reference?)
+ Spells/Seventh/MeteorSwarm.cs:
    CS1502: Line 95: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, bool, double)' has some invalid arguments
    CS1503: Line 95: Argument 5: cannot convert from 'Server.IDamageable' to 'do
uble'
    CS1502: Line 115: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 115: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Sixth/EnergyBolt.cs:
    CS1502: Line 46: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 46: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 59: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 59: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 83: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 83: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Sixth/Explosion.cs:
    CS1502: Line 98: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 98: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 127: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 127: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Sixth/ParalyzeField.cs:
    CS0117: Line 177: 'Server.Spells.SpellHelper' does not contain a definition
for 'CanRevealCaster'
+ Spells/Skill Masteries/BardSpells/Despair.cs:
    CS0103: Line 76: The name 'HarmfulSpell' does not exist in the current conte
xt
+ Spells/Skill Masteries/BardSpells/Tribulation.cs:
    CS0103: Line 77: The name 'HarmfulSpell' does not exist in the current conte
xt
+ Spells/Skill Masteries/NetherBlast.cs:
    CS0117: Line 190: 'Server.Spells.SpellHelper' does not contain a definition
for 'CanRevealCaster'
+ Spells/Third/Fireball.cs:
    CS1502: Line 43: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 43: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 78: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 78: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Third/Poison.cs:
    CS1061: Line 122: 'Server.Spells.Third.PoisonSpell' does not contain a defin
ition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a firs
t argument of type 'Server.Spells.Third.PoisonSpell' could be found (are you mis
sing a using directive or an assembly reference?)
+ Spells/Initializer.cs:
    CS0234: Line 186: The type or namespace name 'HollowReedSpell' does not exis
t in the namespace 'Server.Spells.Druid' (are you missing an assembly reference?
)
    CS0234: Line 188: The type or namespace name 'SpringOfLifeSpell' does not ex
ist in the namespace 'Server.Spells.Druid' (are you missing an assembly referenc
e?)
    CS0234: Line 193: The type or namespace name 'TreefellowSpell' does not exis
t in the namespace 'Server.Spells.Druid' (are you missing an assembly reference?
)
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
[doublepost=1489103449][/doublepost]I am trying to pass the druid system from runuo to SerVuo but I think it gives a lot of error ... will they have one that does not have many mistakes
 
The issue with the PetrafiedWood is simple. In Reagent.cs its spelled PetrifiedWood, so you'll need to change one or the other. For the DruidicSpellBook issue, you need to add Druidic into SpellBook.cs. You may also need to add the Druidic spells into SpellRegistry.cs & possibly SpellHelper.cs as well.
SpellRegistry.cs
Code:
            #region Stygian Abyss
            "Mystic",
            #endregion
            #region TOL
            "SkillMasteries", //Add a , here
            #endregion
           "Druidic"
SpellHelper.cs
Code:
using Server.Targeting;
using Server.Spells.SkillMasteries;
using Server.Spells.Spellweaving;
using Server.Spells.Druid;
 
Last edited:
I have reviewed everything from head to toe There I leave the complete spell to see if the error......
 

Attachments

  • Spells.rar
    509.5 KB · Views: 6
Last edited:
Looks like the biggest issue at this time is in SpellBook.cs. For the PetrafiedWood error, just change the ones in Reagent.cs from PetrifiedWood to PetrafiedWood (2 total entries).
[doublepost=1489108270][/doublepost]Try this SpellBook.cs & see if it helps with the errors.
 

Attachments

  • Spellbook.cs
    31.6 KB · Views: 3
1 more

Code:
Errors:
+ Items/Equipment/Spellbooks/Spellbook.cs:
    CS0246: Line 340: The type or namespace name 'TargetedSpellEventArgs' could
not be found (are you missing a using directive or an assembly reference?)
    CS0111: Line 478: Type 'Server.Items.Spellbook' already defines a member cal
led 'FindMystic' with the same parameter types
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 
Try this one. I missed a renaming for line 478. As for the line 340 error, I commented out that section. Not sure if you actually need it or not, its for the Enhanced Client. If it is needed, then we'll have to dig farther.
 

Attachments

  • Spellbook.cs
    32.9 KB · Views: 2
10000 error more :(

Code:
PetrafiedWood'
+ Spells/Druid/Druid Spells/Unused/PackOfBeastSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/Unused/RestorativeSoilSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/BarkSkinSpell.cs:
    CS0117: Line 25: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/BlendWithForestSpell.cs:
    CS0117: Line 17: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/ForestKinSpell.cs:
    CS0117: Line 21: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/GraspingRootsSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/HibernateSpell.cs:
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/HurricaneSpell.cs:
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/TreeOfLifeSpell.cs:
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Vendor/SBDruidVendor.cs:
    CS0246: Line 29: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 41: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
+ Spells/Eighth/Earthquake.cs:
    CS1502: Line 95: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, int
, int, int)' has some invalid arguments
    CS1503: Line 95: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Fifth/Paralyze.cs:
    CS1061: Line 87: 'Server.Spells.Fifth.ParalyzeSpell' does not contain a defi
nition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a fir
st argument of type 'Server.Spells.Fifth.ParalyzeSpell' could be found (are you
missing a using directive or an assembly reference?)
+ Spells/Fifth/PoisonField.cs:
    CS0117: Line 200: 'Server.Spells.SpellHelper' does not contain a definition
for 'CanRevealCaster'
+ Spells/First/Clumsy.cs:
    CS1061: Line 56: 'Server.Spells.First.ClumsySpell' does not contain a defini
tion for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a first
argument of type 'Server.Spells.First.ClumsySpell' could be found (are you miss
ing a using directive or an assembly reference?)
+ Spells/First/Feeblemind.cs:
    CS1061: Line 56: 'Server.Spells.First.FeeblemindSpell' does not contain a de
finition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a f
irst argument of type 'Server.Spells.First.FeeblemindSpell' could be found (are
you missing a using directive or an assembly reference?)
+ Spells/First/MagicArrow.cs:
    CS1502: Line 52: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 52: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 65: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 65: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 86: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 86: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/First/Weaken.cs:
    CS1061: Line 56: 'Server.Spells.First.WeakenSpell' does not contain a defini
tion for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a first
argument of type 'Server.Spells.First.WeakenSpell' could be found (are you miss
ing a using directive or an assembly reference?)
+ Spells/Fourth/Curse.cs:
    CS1061: Line 103: 'Server.Spells.Fourth.CurseSpell' does not contain a defin
ition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a firs
t argument of type 'Server.Spells.Fourth.CurseSpell' could be found (are you mis
sing a using directive or an assembly reference?)
+ Spells/Fourth/Lightning.cs:
    CS1502: Line 46: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 46: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 77: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 77: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Fourth/ManaDrain.cs:
    CS1061: Line 86: 'Server.Spells.Fourth.ManaDrainSpell' does not contain a de
finition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a f
irst argument of type 'Server.Spells.Fourth.ManaDrainSpell' could be found (are
you missing a using directive or an assembly reference?)
+ Spells/Mysticism/SpellDefinitions/AnimatedWeaponSpell.cs:
    CS1501: Line 49: No overload for method 'Summon' takes 8 arguments
+ Spells/Mysticism/SpellDefinitions/HailStormSpell.cs:
    CS1502: Line 120: The best overloaded method match for 'Server.Spells.Spell.
GetNewAosDamage(int, int, int, bool, double)' has some invalid arguments
    CS1503: Line 120: Argument 5: cannot convert from 'Server.Mobile' to 'double
'
+ Spells/Mysticism/SpellDefinitions/NetherBoltSpell.cs:
    CS1502: Line 42: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, int
, int, int, Server.Misc.DFAlgorithm)' has some invalid arguments
    CS1503: Line 42: Argument 1: cannot convert from 'Server.Spells.Mystic.Nethe
rBoltSpell' to 'System.TimeSpan'
    CS1503: Line 42: Argument 3: cannot convert from 'double' to 'Server.Mobile'

+ Spells/Mysticism/SpellDefinitions/NetherCycloneSpell.cs:
    CS1502: Line 64: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, int
, int, int, Server.Misc.DFAlgorithm)' has some invalid arguments
    CS1503: Line 64: Argument 1: cannot convert from 'Server.Spells.Mystic.Nethe
rCycloneSpell' to 'System.TimeSpan'
    CS1503: Line 64: Argument 3: cannot convert from 'double' to 'Server.Mobile'

+ Spells/Mysticism/SpellDefinitions/PurgeMagicSpell.cs:
    CS1502: Line 234: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, in
t, int, int, Server.Misc.DFAlgorithm)' has some invalid arguments
    CS1503: Line 234: Argument 3: cannot convert from 'int' to 'Server.Mobile'
+ Spells/Necromancy/BloodOathSpell.cs:
    CS1061: Line 139: 'Server.Spells.Necromancy.BloodOathSpell' does not contain
a definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' acceptin
g a first argument of type 'Server.Spells.Necromancy.BloodOathSpell' could be fo
und (are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/CorpseSkin.cs:
    CS1061: Line 124: 'Server.Spells.Necromancy.CorpseSkinSpell' does not contai
n a definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepti
ng a first argument of type 'Server.Spells.Necromancy.CorpseSkinSpell' could be
found (are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/EvilOmen.cs:
    CS1061: Line 117: 'Server.Spells.Necromancy.EvilOmenSpell' does not contain
a definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting
a first argument of type 'Server.Spells.Necromancy.EvilOmenSpell' could be foun
d (are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/MindRot.cs:
    CS1061: Line 129: 'Server.Spells.Necromancy.MindRotSpell' does not contain a
definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting
a first argument of type 'Server.Spells.Necromancy.MindRotSpell' could be found
(are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/PainSpike.cs:
    CS0117: Line 112: 'Server.Spells.SpellHelper' does not contain a definition
for 'DoLeech'
    CS0103: Line 115: The name 'HarmfulSpell' does not exist in the current cont
ext
+ Spells/Necromancy/PoisonStrike.cs:
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 131: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 131: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Necromancy/Strangle.cs:
    CS0103: Line 152: The name 'HarmfulSpell' does not exist in the current cont
ext
+ Spells/Necromancy/Wither.cs:
    CS1502: Line 137: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 137: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Ninjitsu/ShadowJump.cs:
    CS1501: Line 102: No overload for method 'CheckMulti' takes 4 arguments
+ Spells/Priest/Priest Spells/PriestSpell.cs:
    CS0029: Line 93: Cannot implicitly convert type 'System.DateTime' to 'long'
+ Spells/Priest/Priest Spells/CleanseSpiritSpell.cs:
    CS0117: Line 69: 'Server.Spells.Necromancy.EvilOmenSpell' does not contain a
definition for 'CheckEffect'
+ Spells/Second/Harm.cs:
    CS1502: Line 51: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 51: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 62: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 62: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 104: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 104: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Seventh/ChainLightning.cs:
    CS1502: Line 93: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, bool, double)' has some invalid arguments
    CS1503: Line 93: Argument 5: cannot convert from 'Server.IDamageable' to 'do
uble'
    CS1502: Line 113: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 113: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Seventh/FlameStrike.cs:
    CS1502: Line 46: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 46: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 86: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 86: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Seventh/ManaVampire.cs:
    CS1061: Line 91: 'Server.Spells.Seventh.ManaVampireSpell' does not contain a
definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting
a first argument of type 'Server.Spells.Seventh.ManaVampireSpell' could be found
(are you missing a using directive or an assembly reference?)
+ Spells/Seventh/MeteorSwarm.cs:
    CS1502: Line 95: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, bool, double)' has some invalid arguments
    CS1503: Line 95: Argument 5: cannot convert from 'Server.IDamageable' to 'do
uble'
    CS1502: Line 115: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 115: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Sixth/EnergyBolt.cs:
    CS1502: Line 46: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 46: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 59: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 59: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 83: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 83: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Sixth/Explosion.cs:
    CS1502: Line 98: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 98: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 127: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 127: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Sixth/ParalyzeField.cs:
    CS0117: Line 177: 'Server.Spells.SpellHelper' does not contain a definition
for 'CanRevealCaster'
+ Spells/Skill Masteries/BardSpells/Despair.cs:
    CS0103: Line 76: The name 'HarmfulSpell' does not exist in the current conte
xt
+ Spells/Skill Masteries/BardSpells/Tribulation.cs:
    CS0103: Line 77: The name 'HarmfulSpell' does not exist in the current conte
xt
+ Spells/Skill Masteries/NetherBlast.cs:
    CS0117: Line 190: 'Server.Spells.SpellHelper' does not contain a definition
for 'CanRevealCaster'
+ Spells/Third/Fireball.cs:
    CS1502: Line 43: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 43: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 78: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 78: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Third/Poison.cs:
    CS1061: Line 122: 'Server.Spells.Third.PoisonSpell' does not contain a defin
ition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a firs
t argument of type 'Server.Spells.Third.PoisonSpell' could be found (are you mis
sing a using directive or an assembly reference?)
+ Spells/Initializer.cs:
    CS0234: Line 186: The type or namespace name 'HollowReedSpell' does not exis
t in the namespace 'Server.Spells.Druid' (are you missing an assembly reference?
)
    CS0234: Line 188: The type or namespace name 'SpringOfLifeSpell' does not ex
ist in the namespace 'Server.Spells.Druid' (are you missing an assembly referenc
e?)
    CS0234: Line 193: The type or namespace name 'TreefellowSpell' does not exis
t in the namespace 'Server.Spells.Druid' (are you missing an assembly reference?
)
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 
Change the PetrafiedWood in Reagent.cs to PetrifiedWood
lines 28 and 226
[doublepost=1489145988][/doublepost]Also try this SpellHelper.cs
[doublepost=1489146452][/doublepost]For the Initializer.cs error, try this one. I remember having to comment those 3 spells out since there were no spells for them.
 

Attachments

  • SpellHelper.cs
    33.5 KB · Views: 2
  • Initializer.cs
    14.1 KB · Views: 2
nothing friend :(

Code:
    CS0246: Line 110: The type or namespace name 'DestroyingAngel' could not be
found (are you missing a using directive or an assembly reference?)
    CS0117: Line 140: 'System.DateTime' does not contain a definition for 'UTCNo
w'
    CS0117: Line 146: 'System.DateTime' does not contain a definition for 'UTCNo
w'
+ Spells/Druid/Druid Spells/Unused/EnchantedGroveSpell.cs:
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
DestroyingAngel'
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/Unused/PackOfBeastSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/Unused/RestorativeSoilSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/BarkSkinSpell.cs:
    CS0117: Line 25: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/BlendWithForestSpell.cs:
    CS0117: Line 17: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/ForestKinSpell.cs:
    CS0117: Line 21: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/GraspingRootsSpell.cs:
    CS0117: Line 18: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/HibernateSpell.cs:
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/HurricaneSpell.cs:
    CS0117: Line 19: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Spells/TreeOfLifeSpell.cs:
    CS0117: Line 20: 'Server.Spells.Reagent' does not contain a definition for '
PetrafiedWood'
+ Spells/Druid/Druid Vendor/SBDruidVendor.cs:
    CS0246: Line 29: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 41: The type or namespace name 'PetrafiedWood' could not be fou
nd (are you missing a using directive or an assembly reference?)
+ Spells/Eighth/Earthquake.cs:
    CS1502: Line 95: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, int
, int, int)' has some invalid arguments
    CS1503: Line 95: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Fifth/Paralyze.cs:
    CS1061: Line 87: 'Server.Spells.Fifth.ParalyzeSpell' does not contain a defi
nition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a fir
st argument of type 'Server.Spells.Fifth.ParalyzeSpell' could be found (are you
missing a using directive or an assembly reference?)
+ Spells/Fifth/PoisonField.cs:
    CS0117: Line 200: 'Server.Spells.SpellHelper' does not contain a definition
for 'CanRevealCaster'
+ Spells/First/Clumsy.cs:
    CS1061: Line 56: 'Server.Spells.First.ClumsySpell' does not contain a defini
tion for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a first
argument of type 'Server.Spells.First.ClumsySpell' could be found (are you miss
ing a using directive or an assembly reference?)
+ Spells/First/Feeblemind.cs:
    CS1061: Line 56: 'Server.Spells.First.FeeblemindSpell' does not contain a de
finition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a f
irst argument of type 'Server.Spells.First.FeeblemindSpell' could be found (are
you missing a using directive or an assembly reference?)
+ Spells/First/MagicArrow.cs:
    CS1502: Line 52: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 52: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 65: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 65: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 86: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 86: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/First/Weaken.cs:
    CS1061: Line 56: 'Server.Spells.First.WeakenSpell' does not contain a defini
tion for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a first
argument of type 'Server.Spells.First.WeakenSpell' could be found (are you miss
ing a using directive or an assembly reference?)
+ Spells/Fourth/Curse.cs:
    CS1061: Line 103: 'Server.Spells.Fourth.CurseSpell' does not contain a defin
ition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a firs
t argument of type 'Server.Spells.Fourth.CurseSpell' could be found (are you mis
sing a using directive or an assembly reference?)
+ Spells/Fourth/Lightning.cs:
    CS1502: Line 46: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 46: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 77: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 77: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Fourth/ManaDrain.cs:
    CS1061: Line 86: 'Server.Spells.Fourth.ManaDrainSpell' does not contain a de
finition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a f
irst argument of type 'Server.Spells.Fourth.ManaDrainSpell' could be found (are
you missing a using directive or an assembly reference?)
+ Spells/Mysticism/SpellDefinitions/AnimatedWeaponSpell.cs:
    CS1501: Line 49: No overload for method 'Summon' takes 8 arguments
+ Spells/Mysticism/SpellDefinitions/HailStormSpell.cs:
    CS1502: Line 120: The best overloaded method match for 'Server.Spells.Spell.
GetNewAosDamage(int, int, int, bool, double)' has some invalid arguments
    CS1503: Line 120: Argument 5: cannot convert from 'Server.Mobile' to 'double
'
+ Spells/Mysticism/SpellDefinitions/NetherBoltSpell.cs:
    CS1502: Line 42: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, int
, int, int, Server.Misc.DFAlgorithm)' has some invalid arguments
    CS1503: Line 42: Argument 1: cannot convert from 'Server.Spells.Mystic.Nethe
rBoltSpell' to 'System.TimeSpan'
    CS1503: Line 42: Argument 3: cannot convert from 'double' to 'Server.Mobile'

+ Spells/Mysticism/SpellDefinitions/NetherCycloneSpell.cs:
    CS1502: Line 64: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, int
, int, int, Server.Misc.DFAlgorithm)' has some invalid arguments
    CS1503: Line 64: Argument 1: cannot convert from 'Server.Spells.Mystic.Nethe
rCycloneSpell' to 'System.TimeSpan'
    CS1503: Line 64: Argument 3: cannot convert from 'double' to 'Server.Mobile'

+ Spells/Mysticism/SpellDefinitions/PurgeMagicSpell.cs:
    CS1502: Line 234: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(System.TimeSpan, Server.Mobile, Server.Mobile, double, int, int, in
t, int, int, Server.Misc.DFAlgorithm)' has some invalid arguments
    CS1503: Line 234: Argument 3: cannot convert from 'int' to 'Server.Mobile'
+ Spells/Necromancy/BloodOathSpell.cs:
    CS1061: Line 139: 'Server.Spells.Necromancy.BloodOathSpell' does not contain
a definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' acceptin
g a first argument of type 'Server.Spells.Necromancy.BloodOathSpell' could be fo
und (are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/CorpseSkin.cs:
    CS1061: Line 124: 'Server.Spells.Necromancy.CorpseSkinSpell' does not contai
n a definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepti
ng a first argument of type 'Server.Spells.Necromancy.CorpseSkinSpell' could be
found (are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/EvilOmen.cs:
    CS1061: Line 117: 'Server.Spells.Necromancy.EvilOmenSpell' does not contain
a definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting
a first argument of type 'Server.Spells.Necromancy.EvilOmenSpell' could be foun
d (are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/MindRot.cs:
    CS1061: Line 129: 'Server.Spells.Necromancy.MindRotSpell' does not contain a
definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting
a first argument of type 'Server.Spells.Necromancy.MindRotSpell' could be found
(are you missing a using directive or an assembly reference?)
+ Spells/Necromancy/PainSpike.cs:
    CS0117: Line 112: 'Server.Spells.SpellHelper' does not contain a definition
for 'DoLeech'
    CS0103: Line 115: The name 'HarmfulSpell' does not exist in the current cont
ext
+ Spells/Necromancy/PoisonStrike.cs:
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 131: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 131: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Necromancy/Strangle.cs:
    CS0103: Line 152: The name 'HarmfulSpell' does not exist in the current cont
ext
+ Spells/Necromancy/Wither.cs:
    CS1502: Line 137: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 137: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Ninjitsu/ShadowJump.cs:
    CS1501: Line 102: No overload for method 'CheckMulti' takes 4 arguments
+ Spells/Priest/Priest Spells/PriestSpell.cs:
    CS0029: Line 93: Cannot implicitly convert type 'System.DateTime' to 'long'
+ Spells/Priest/Priest Spells/CleanseSpiritSpell.cs:
    CS0117: Line 69: 'Server.Spells.Necromancy.EvilOmenSpell' does not contain a
definition for 'CheckEffect'
+ Spells/Second/Harm.cs:
    CS1502: Line 51: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 51: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 62: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 62: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 104: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 104: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Seventh/ChainLightning.cs:
    CS1502: Line 93: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, bool, double)' has some invalid arguments
    CS1503: Line 93: Argument 5: cannot convert from 'Server.IDamageable' to 'do
uble'
    CS1502: Line 113: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 113: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Seventh/FlameStrike.cs:
    CS1502: Line 46: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 46: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 86: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 86: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Seventh/ManaVampire.cs:
    CS1061: Line 91: 'Server.Spells.Seventh.ManaVampireSpell' does not contain a
definition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting
a first argument of type 'Server.Spells.Seventh.ManaVampireSpell' could be found
(are you missing a using directive or an assembly reference?)
+ Spells/Seventh/MeteorSwarm.cs:
    CS1502: Line 95: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, bool, double)' has some invalid arguments
    CS1503: Line 95: Argument 5: cannot convert from 'Server.IDamageable' to 'do
uble'
    CS1502: Line 115: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 115: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Sixth/EnergyBolt.cs:
    CS1502: Line 46: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 46: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 59: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 59: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 83: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 83: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Sixth/Explosion.cs:
    CS1502: Line 98: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 98: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 127: The best overloaded method match for 'Server.Spells.SpellH
elper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int
)' has some invalid arguments
    CS1503: Line 127: Argument 2: cannot convert from 'Server.IDamageable' to 'S
erver.Mobile'
+ Spells/Sixth/ParalyzeField.cs:
    CS0117: Line 177: 'Server.Spells.SpellHelper' does not contain a definition
for 'CanRevealCaster'
+ Spells/Skill Masteries/BardSpells/Despair.cs:
    CS0103: Line 76: The name 'HarmfulSpell' does not exist in the current conte
xt
+ Spells/Skill Masteries/BardSpells/Tribulation.cs:
    CS0103: Line 77: The name 'HarmfulSpell' does not exist in the current conte
xt
+ Spells/Skill Masteries/NetherBlast.cs:
    CS0117: Line 190: 'Server.Spells.SpellHelper' does not contain a definition
for 'CanRevealCaster'
+ Spells/Third/Fireball.cs:
    CS1502: Line 43: The best overloaded method match for 'Server.Spells.Spell.C
heckHSequence(Server.Mobile)' has some invalid arguments
    CS1503: Line 43: Argument 1: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 57: The best overloaded method match for 'Server.Spells.Spell.G
etNewAosDamage(int, int, int, Server.Mobile)' has some invalid arguments
    CS1503: Line 57: Argument 4: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
    CS1502: Line 78: The best overloaded method match for 'Server.Spells.SpellHe
lper.Damage(Server.Spells.Spell, Server.Mobile, double, int, int, int, int, int)
' has some invalid arguments
    CS1503: Line 78: Argument 2: cannot convert from 'Server.IDamageable' to 'Se
rver.Mobile'
+ Spells/Third/Poison.cs:
    CS1061: Line 122: 'Server.Spells.Third.PoisonSpell' does not contain a defin
ition for 'HarmfulSpell' and no extension method 'HarmfulSpell' accepting a firs
t argument of type 'Server.Spells.Third.PoisonSpell' could be found (are you mis
sing a using directive or an assembly reference?)
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 
*sigh* Looks like the entire Druid system need completely overhauled. They have the one reagent named 2 different ways, which doesn't help & so much has changed between RunUO & ServUO, its going to take a bit of work. I'll see if I can fix all this. If I can, I'll just release the revamped system on here.
 
I have a compiling system so far. Going to add some more spells I found from another druid system, then test it all out (if my head doesn't explode first). :D
 
I'm thinking more along the lines of Mr Clean.. I'm only trying to combine 2 different old Druid spell systems into one AND make it work with ServUO. My apt may get redecorated with my thinking bits..
 
It compiles in its current state. Just need to add 9 or so more spells to various areas and set them all up like the ones already in. If I run into trouble at that point, I'll scream.. or post the problem (while screaming). For right now though, I'm going to lay down for a bit. The headache is unfortunately, very real.
 
Back