Are you using it on the newest ServUO svn? A lot of changes have been made to houses with the new clients and the way they update items around them.
 
No, I just grabbed the download from this post. Do I need to update then? I suppose this is more difficult then copy/paste right?


**** Found download to a client in this very thread, still doesn't work

7.0.49.62
 
Last edited:
Thanks for the headsup Hammerhand! 'm dumb. I didn't change the datapath, everything appears to be working just fine NOW.

Thanks for listening to a rambling fool!
 
Last edited:
Alright HammerHand. As if you don't have enough to do, I decided to try out OWLTR. :) I'm coming across a few errors I can't fix. There are some abstract functions that aren't implemented. Stack trace is below:


Errors:
+ Customs/[ServUO.com]-OWLTR 4.0 for ServUO/OWLTR 4.0 for ServUO/Modified/Services/BulkOrders/LargeCarpenterBODKeep.cs:
CS0840: Line 15: 'Server.Engines.BulkOrders.LargeCarpenterBOD.BODType.get' must declare a body because it is not marked abstract or extern. Automatically implemented properties must define both get and set accessors.
+ Customs/[ServUO.com]-OWLTR 4.0 for ServUO/OWLTR 4.0 for ServUO/Modified/Services/BulkOrders/LargeFletcherBODKeep.cs:
CS0534: Line 13: 'Server.Engines.BulkOrders.LargeFletcherBOD' does not implement inherited abstract member 'Server.Engines.BulkOrders.LargeBOD.BODType.get'
+ Customs/[ServUO.com]-OWLTR 4.0 for ServUO/OWLTR 4.0 for ServUO/Modified/Services/BulkOrders/SmallCarpenterBODKeep.cs:
CS0534: Line 13: 'Server.Engines.BulkOrders.SmallCarpenterBOD' does not implement inherited abstract member 'Server.Engines.BulkOrders.SmallBOD.BODType.get'
+ Customs/[ServUO.com]-OWLTR 4.0 for ServUO/OWLTR 4.0 for ServUO/Modified/Services/BulkOrders/SmallFletcherBODKeep.cs:
CS0534: Line 13: 'Server.Engines.BulkOrders.SmallFletcherBOD' does not implement inherited abstract member 'Server.Engines.BulkOrders.SmallBOD.BODType.get'
+ Customs/[ServUO.com]-OWLTR 4.0 for ServUO/OWLTR 4.0 for ServUO/New/MuleKeep.cs:
CS0115: Line 80: 'Server.Mobiles.Mule.OnBeforeTame()': no suitable method found to override
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.

This really is impressive HH. Congratualtions for an awesome release.
 
ServUO has the new (OSI version) for the BODs, so those may not be usable. I'll have to try & see what can be done there. As for the Mule error, you may be missing the BaseCreature.cs merge. Right after the IngoreYoung, you should have this.
Code:
        public virtual bool IgnoreYoungProtection { get { return false; } }

        //daat99 OWLTR start - On Before (Re) Tame methods
        public virtual void OnBeforeTame()
        {
        }

        public virtual void OnBeforeReTame()
        {
        }
        //daat99 OWLTR start - On Before (Re) Tame methods

        public override bool OnBeforeDeath()
 
How about this? It can't find the namespace daat99?

--------------------------------------------------------------------------------
ServUO - [https://www.servuo.com] Version 0.5, Build 6505.20276
Core: Optimizing for 8 64-bit processors
RandomImpl: CSPRandom (Software)
Core: Loading config...
Scripts: Compiling C# scripts...Failed with: 6 errors, 0 warnings
Errors:
+ Services/ChampionSystem/ChampionSpawn.cs:
CS0246: Line 9: The type or namespace name 'daat99' could not be found (are you missing a using directive or an assembly reference?)
+ Services/Craft/Core/Repair.cs:
CS0246: Line 5: The type or namespace name 'daat99' could not be found (are you missing a using directive or an assembly reference?)
+ Services/Craft/DefTinkering.cs:
CS0246: Line 6: The type or namespace name 'daat99' could not be found (are you missing a using directive or an assembly reference?)
+ Services/PointsSystems/CleanUpBritanniaData.cs:
CS0246: Line 8: The type or namespace name 'daat99' could not be found (are you missing a using directive or an assembly reference?)
+ Services/Revamped Dungeons/Covetous Void Spawn/VoidPoolController.cs:
CS0246: Line 10: The type or namespace name 'daat99' could not be found (are you missing a using directive or an assembly reference?)
+ Services/XmlSpawner/XmlSpawner Core/XmlQuest/XmlQuestPointsRewards.cs:
CS0246: Line 6: The type or namespace name 'daat99' could not be found (are you 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.
[doublepost=1509192001][/doublepost]I just switched over the virtual functions to regular old functions. I figured there is no need for the inheritance in this case.
[doublepost=1509194677][/doublepost]Any ideas?
 
I fixed that error by moving my scripts over to my customs directory. Not sure what the issue was. Now I have this to deal with:




I
+ Services/BulkOrders/Rewards/Rewards.cs:
CS0118: Line 731: 'Server.Items.SturdyShovel' is a 'type' but is used like a 'variable'
CS1502: Line 731: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback)' has some invalid arguments
CS1503: Line 731: Argument 2: cannot convert from 'Server.Items.SturdyShovel' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 732: 'Server.Items.SturdyPickaxe' is a 'type' but is used like a 'variable'
CS1502: Line 732: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback)' has some invalid arguments
CS1503: Line 732: Argument 2: cannot convert from 'Server.Items.SturdyPickaxe' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 733: 'Server.Items.SturdyShovel' is a 'type' but is used like a 'variable'
CS1502: Line 733: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback)' has some invalid arguments
CS1503: Line 733: Argument 2: cannot convert from 'Server.Items.SturdyShovel' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 734: 'Server.Items.SturdyPickaxe' is a 'type' but is used like a 'variable'
CS1502: Line 734: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback)' has some invalid arguments
CS1503: Line 734: Argument 2: cannot convert from 'Server.Items.SturdyPickaxe' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 735: 'Server.Items.ProspectorsTool' is a 'type' but is used like a 'variable'
CS1502: Line 735: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback)' has some invalid arguments
CS1503: Line 735: Argument 2: cannot convert from 'Server.Items.ProspectorsTool' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 736: 'Server.Items.PowderOfTemperament' is a 'type' but is used like a 'variable'
CS1502: Line 736: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback)' has some invalid arguments
CS1503: Line 736: Argument 2: cannot convert from 'Server.Items.PowderOfTemperament' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 736: 'Server.Items.GargoylesPickaxe' is a 'type' but is used like a 'variable'
CS1502: Line 736: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback)' has some invalid arguments
CS1503: Line 736: Argument 2: cannot convert from 'Server.Items.GargoylesPickaxe' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 737: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 737: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 737: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 737: 'Server.Items.GargoylesPickaxe' is a 'type' but is used like a 'variable'
CS1502: Line 737: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback)' has some invalid arguments
CS1503: Line 737: Argument 2: cannot convert from 'Server.Items.GargoylesPickaxe' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 738: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 738: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 738: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 738: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 738: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 738: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 739: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 739: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 739: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 740: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 740: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 740: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 740: 'Server.Items.ColoredAnvil' is a 'type' but is used like a 'variable'
CS1502: Line 740: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback)' has some invalid arguments
CS1503: Line 740: Argument 2: cannot convert from 'Server.Items.ColoredAnvil' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 741: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 741: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 741: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 742: 'Server.Items.ColoredAnvil' is a 'type' but is used like a 'variable'
CS1502: Line 742: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback)' has some invalid arguments
CS1503: Line 742: Argument 2: cannot convert from 'Server.Items.ColoredAnvil' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 742: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 742: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 742: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 743: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 743: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 743: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0103: Line 744: The name 'AncientHammer' does not exist in the current context
CS0118: Line 745: 'Server.Items.GargoylesPickaxe' is a 'type' but is used like a 'variable'
CS1502: Line 745: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback)' has some invalid arguments
CS1503: Line 745: Argument 2: cannot convert from 'Server.Items.GargoylesPickaxe' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0103: Line 746: The name 'AncientHammer' does not exist in the current context
CS0118: Line 747: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 747: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 747: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 748: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 748: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 748: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0103: Line 749: The name 'AncientHammer' does not exist in the current context
CS0118: Line 750: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 750: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 750: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0103: Line 751: The name 'AncientHammer' does not exist in the current context
CS0118: Line 752: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 752: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 752: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 753: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 753: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 753: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 754: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 754: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 754: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 755: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 755: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 755: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 756: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 756: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 756: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 757: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 757: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 757: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
CS0118: Line 758: 'Server.Items.RunicHammer' is a 'type' but is used like a 'variable'
CS1502: Line 758: The best overloaded method match for 'Server.Engines.BulkOrders.RewardItem.RewardItem(int, Server.Engines.BulkOrders.ConstructCallback, int)' has some invalid arguments
CS1503: Line 758: Argument 2: cannot convert from 'Server.Items.RunicHammer' to 'Server.Engines.BulkOrders.ConstructCallback'
+ Skills/AnimalTaming.cs:
CS1061: Line 421: 'Server.Mobiles.BaseCreature' does not contain a definition for 'OnBeforeTame' and no extension method 'OnBeforeTame' accepting a first argument of type 'Server.Mobiles.BaseCreature' could be found (are you missing a using directive or an assembly reference?)
+ Skills/Mining.cs:
[doublepost=1509198657][/doublepost]And....

CS1729: Line 156: 'Server.Engines.BulkOrders.SmallSmithBOD' does not contain a constructor that takes 7 arguments
CS1729: Line 158: 'Server.Engines.BulkOrders.SmallTailorBOD' does not contain a constructor that takes 7 arguments

Suggestions?
 
Last edited:
I'm not sure on most of those, but the Taming one is easy. Simple missed edit.
line 421 should look like so
Code:
                                m_Creature.OnBeforeTame(); //daat99 on before tame
                                if (m_Creature is GreaterDragon)
[doublepost=1509200779][/doublepost]Those must be the ones from OWLTR. *sigh* Just shoot me.. Obviously the BOD rewards part isn't compatible with the latest ServUO because of the new OSI BOD crap.
 
the function its asking for takes a weight, a callback, and a type. Can't you just supply a callback?
Because right now all you are passing is a weight and a type.
[doublepost=1509265078][/doublepost]So there is no fix for this? If so, I'm going to revert my server to my backup. Sucks, I spent like 4 hours merging all of OWLTR.
[doublepost=1509277041][/doublepost]Ok. I'm going to assume so and revert my shard.
 
Hey Hammerhand, I broke it again.....

BOD System wasn't working, [abod returns in game message that it's not a valid command. Reading forum posts I see a few folks have recompiled to get BOD system working.

I recompile and during process I receive

[article]
Press any key to continue . . .
Could Not Find X:\UOSERVER\[ServUO.com]-Clean ServUO Pub 54 with OWLTR 4 and Ani
mal BODs\ServUO.exe

X:\UOSERVER\[ServUO.com]-Clean ServUO Pub 54 with OWLTR 4 and Animal BODs>C:\Win
dows\Microsoft.NET\Framework\v4.0.30319\csc.exe /win32icon:"X:\UOSERVER\[ServUO.
com]-Clean ServUO Pub 54 with OWLTR 4 and Animal BODs\Server\servuo.ico" /r:"X:\
UOSERVER\[ServUO.com]-Clean ServUO Pub 54 with OWLTR 4 and Animal BODs\Ultima.dl
l" /target:exe /out:"X:\UOSERVER\[ServUO.com]-Clean ServUO Pub 54 with OWLTR 4 a
nd Animal BODs\ServUO.exe" /recurse:"X:\UOSERVER\[ServUO.com]-Clean ServUO Pub 5
4 with OWLTR 4 and Animal BODs\Server\*.cs" /d:ServUO /d:NEWTIMERS /nowarn:0618
/debug /nologo /optimize /unsafe
Server\Network\Packets.cs(305,32): error CS0246: The type or namespace name
'BuyItemState' could not be found (are you missing a using directive or
an assembly reference?)
Server\Network\Packets.cs(334,36): error CS0246: The type or namespace name
'BuyItemState' could not be found (are you missing a using directive or
an assembly reference?)
Server\Network\Packets.cs(385,44): error CS0246: The type or namespace name
'BuyItemState' could not be found (are you missing a using directive or
an assembly reference?)
Server\Network\Packets.cs(416,56): error CS0246: The type or namespace name
'SellItemState' could not be found (are you missing a using directive or
an assembly reference?)
Server\Interfaces.cs(32,37): error CS0246: The type or namespace name
'BuyItemResponse' could not be found (are you missing a using directive
or an assembly reference?)
Server\Interfaces.cs(33,38): error CS0246: The type or namespace name
'SellItemResponse' could not be found (are you missing a using directive
or an assembly reference?)

Done!

Press any key to continue . . .
[/article]

Packets.cs is attached
 

Attachments

  • Packets.cs
    111.2 KB · Views: 1
Actually I think the bod command for OWLTR is [owltrbod, not [abod. As for the packets issue, I honestly have no clue unless the recompile didn't go right.
 
I figured it out by looking in the AnimalBODCore.cs

[abodtoggle needed to be run, that's the command I was looking for.
 
Last edited:
"Those must be the ones from OWLTR. *sigh* Just shoot me.. Obviously the BOD rewards part isn't compatible with the latest ServUO because of the new OSI BOD crap."

HH, any luck getting the BOD rewards compatible with the newest ServUO?
 
I haven't had the chance to even start yet. I'm dealing with a bone bruise in the underside of my ankle bone & cant use braces or crutches... and work in a hotel. So......... about the only thing I'm doing once I get off work & icing my ankle & wimpering & hoping it will just fall off. But I do plan on trying soon.
 
Awe man. Sorry to hear that. I hope you feel better soon! Quick question though, I feel stupid for not knowing this, but what is a BOD and BOB and what do they stand for?

If its any consolation I'm sick. I woke up last night in the middle of the night projectile vomiting. :-(
 
So i just realized something. Per the current repo there are other factors in basearmor to consider for listing armor stats when mouse hovers over and also what values are calculated. I'm not getting errors however the values for the new refined stats are not working. I think i either did a bad merge or didn't account for the new system. @Hammerhand or anyone else have a working basearmor for this by chance?
 
I use this it doesn't work



Scripts: Compiling C# scripts...Failed with: 74 errors, 0 warnings
Errors:
+ Custom/OWLTR 4.0 for ServUO/MasterStorage/MasterStorage.cs:
CS0101: Line 27: The namespace 'Daat99MasterLooterSystem' already contains a definition for 'MasterLooterBackpack'
+ Custom/OWLTR 4.0 for ServUO/Modified/Services/BulkOrders/LargeBOD.cs:
CS1519: Line 274: Invalid token 'else' in class, struct, or interface member declaration
CS1519: Line 276: Invalid token '(' in class, struct, or interface member declaration
CS1518: Line 280: Expected class, delegate, enum, interface, or struct
CS1518: Line 293: Expected class, delegate, enum, interface, or struct
CS1022: Line 294: Type or namespace definition, or end-of-file expected
+ Items/Addons/ColoredAnvil.cs:
CS0101: Line 7: The namespace 'Server.Items' already contains a definition for 'ColoredAnvil'
+ Items/Addons/MiningCart.cs:
CS0101: Line 9: The namespace 'Server.Items' already contains a definition for 'MiningCartType'
CS0101: Line 17: The namespace 'Server.Items' already contains a definition for 'MiningCart'
CS0101: Line 376: The namespace 'Server.Items' already contains a definition for 'MiningCartDeed'
+ Items/Artifacts/Equipment/Armor/GlovesOfMining.cs:
CS0101: Line 7: The namespace 'Server.Items' already contains a definition for 'LeatherGlovesOfMining'
CS0101: Line 134: The namespace 'Server.Items' already contains a definition for 'StuddedGlovesOfMining'
CS0101: Line 254: The namespace 'Server.Items' already contains a definition for 'RingmailGlovesOfMining'
CS0101: Line 511: The namespace 'Server.Items' already contains a definition for 'BaseGlovesOfMining'
+ Items/Consumables/CommodityDeed.cs:
CS0101: Line 6: The namespace 'Server.Items' already contains a definition for 'ICommodity'
CS0101: Line 100: The namespace 'Server.Items' already contains a definition for 'CommodityDeed'
CS0102: Line 314: The type 'Server.Items.CommodityDeed' already contains a definition for 'InternalTarget'
+ Items/Containers/SalvageBag.cs:
CS0101: Line 9: The namespace 'Server.Items' already contains a definition for 'SalvageBag'
CS0102: Line 318: The type 'Server.Items.SalvageBag' already contains a definition for 'SalvageAllEntry'
CS0102: Line 343: The type 'Server.Items.SalvageBag' already contains a definition for 'SalvageIngotsEntry'
CS0102: Line 368: The type 'Server.Items.SalvageBag' already contains a definition for 'SalvageClothEntry'
+ Items/Equipment/Armor/ArmorEnums.cs:
CS0101: Line 5: The namespace 'Server.Items' already contains a definition for 'ArmorDurabilityLevel'
CS0101: Line 15: The namespace 'Server.Items' already contains a definition for 'ArmorProtectionLevel'
CS0101: Line 25: The namespace 'Server.Items' already contains a definition for 'ArmorBodyType'
CS0101: Line 36: The namespace 'Server.Items' already contains a definition for 'ArmorMaterialType'
CS0101: Line 51: The namespace 'Server.Items' already contains a definition for 'ArmorMeditationAllowance'
+ Items/Equipment/Armor/BaseArmor.cs:
CS0101: Line 15: The namespace 'Server.Items' already contains a definition for 'BaseArmor'
CS0102: Line 342: The type 'Server.Items.BaseArmor' already contains a definition for 'UnBlessEntry'
CS0102: Line 1589: The type 'Server.Items.BaseArmor' already contains a definition for 'SaveFlag'
CS0102: Line 1637: The type 'Server.Items.BaseArmor' already contains a definition for 'SetFlag'
+ Items/Equipment/Clothing/BaseClothing.cs:
CS0101: Line 11: The namespace 'Server.Items' already contains a definition for 'IArcaneEquip'
CS0101: Line 18: The namespace 'Server.Items' already contains a definition for 'BaseClothing'
CS0102: Line 328: The type 'Server.Items.BaseClothing' already contains a definition for 'UnBlessEntry'
CS0102: Line 1454: The type 'Server.Items.BaseClothing' already contains a definition for 'SaveFlag'
CS0102: Line 1488: The type 'Server.Items.BaseClothing' already contains a definition for 'SetFlag'
+ Items/Equipment/Jewelry/BaseJewel.cs:
CS0101: Line 9: The namespace 'Server.Items' already contains a definition for 'GemType'
CS0101: Line 23: The namespace 'Server.Items' already contains a definition for 'BaseJewel'
CS0102: Line 109: The type 'Server.Items.BaseJewel' already contains a definition for 'UnBlessEntry'
+ Items/Equipment/Weapons/BaseRanged.cs:
CS0101: Line 17: The namespace 'Server.Items' already contains a definition for 'BaseRanged'
+ Items/Equipment/Weapons/BaseWeapon.cs:
CS0101: Line 31: The namespace 'Server.Items' already contains a definition for 'ISlayer'
CS0101: Line 37: The namespace 'Server.Items' already contains a definition for 'BaseWeapon'
CS0102: Line 257: The type 'Server.Items.BaseWeapon' already contains a definition for 'UnBlessEntry'
CS0102: Line 870: The type 'Server.Items.BaseWeapon' already contains a definition for 'ResetEquipTimer'
CS0102: Line 4033: The type 'Server.Items.BaseWeapon' already contains a definition for 'SaveFlag'
CS0102: Line 4088: The type 'Server.Items.BaseWeapon' already contains a definition for 'SetFlag'
CS0101: Line 6154: The namespace 'Server.Items' already contains a definition for 'CheckSlayerResult'
+ Items/Resource/Board.cs:
CS0101: Line 6: The namespace 'Server.Items' already contains a definition for 'BaseWoodBoard'
CS0101: Line 123: The namespace 'Server.Items' already contains a definition for 'Board'
CS0101: Line 158: The namespace 'Server.Items' already contains a definition for 'HeartwoodBoard'
CS0101: Line 192: The namespace 'Server.Items' already contains a definition for 'BloodwoodBoard'
CS0101: Line 226: The namespace 'Server.Items' already contains a definition for 'FrostwoodBoard'
CS0101: Line 260: The namespace 'Server.Items' already contains a definition for 'OakBoard'
CS0101: Line 294: The namespace 'Server.Items' already contains a definition for 'AshBoard'
CS0101: Line 328: The namespace 'Server.Items' already contains a definition for 'YewBoard'
+ Items/Resource/Granite.cs:
CS0101: Line 5: The namespace 'Server.Items' already contains a definition for 'BaseGranite'
CS0101: Line 94: The namespace 'Server.Items' already contains a definition for 'Granite'
CS0101: Line 122: The namespace 'Server.Items' already contains a definition for 'DullCopperGranite'
CS0101: Line 150: The namespace 'Server.Items' already contains a definition for 'ShadowIronGranite'
CS0101: Line 178: The namespace 'Server.Items' already contains a definition for 'CopperGranite'
CS0101: Line 206: The namespace 'Server.Items' already contains a definition for 'BronzeGranite'
CS0101: Line 234: The namespace 'Server.Items' already contains a definition for 'GoldGranite'
CS0101: Line 262: The namespace 'Server.Items' already contains a definition for 'AgapiteGranite'
CS0101: Line 290: The namespace 'Server.Items' already contains a definition for 'VeriteGranite'
CS0101: Line 318: The namespace 'Server.Items' already contains a definition for 'ValoriteGranite'
+ Items/Resource/Hides.cs:
CS0101: Line 5: The namespace 'Server.Items' already contains a definition for 'BaseHides'
CS0101: Line 129: The namespace 'Server.Items' already contains a definition for 'Hides'
CS0101: Line 179: The namespace 'Server.Items' already contains a definition for 'SpinedHides'
CS0101: Line 232: The namespace 'Server.Items' already contains a definition for 'HornedHides'
CS0101: Line 285: The namespace 'Server.Items' already contains a definition for 'BarbedHides'
+ Items/Resource/Ingots.cs:
CS0101: Line 5: The namespace 'Server.Items' already contains a definition for 'BaseIngot'
CS0101: Line 169: The namespace 'Server.Items' already contains a definition for 'IronIngot'
CS0101: Line 204: The namespace 'Server.Items' already contains a definition for 'DullCopperIngot'
CS0101: Line 241: The namespace 'Server.Items' already contains a definition for 'ShadowIronIngot'
CS0101: Line 278: The namespace 'Server.Items' already contains a definition for 'CopperIngot'
CS0101: Line 315: The namespace 'Server.Items' already contains a definition for 'BronzeIngot'
CS0101: Line 352: The namespace 'Server.Items' already contains a definition for 'GoldIngot'
CS0101: Line 389: The namespace 'Server.Items' already contains a definition for 'AgapiteIngot'
CS0101: Line 426: The namespace 'Server.Items' already contains a definition for 'VeriteIngot'
CS0101: Line 463: The namespace 'Server.Items' already contains a definition for 'ValoriteIngot'
+ Items/Resource/Leathers.cs:
CS0101: Line 5: The namespace 'Server.Items' already contains a definition for 'BaseLeather'
CS0101: Line 129: The namespace 'Server.Items' already contains a definition for 'Leather'
CS0101: Line 164: The namespace 'Server.Items' already contains a definition for 'SpinedLeather'
CS0101: Line 201: The namespace 'Server.Items' already contains a definition for 'HornedLeather'
CS0101: Line 238: The namespace 'Server.Items' already contains a definition for 'BarbedLeather'
+ Items/Resource/Log.cs:
CS0101: Line 6: The namespace 'Server.Items' already contains a definition for 'BaseLog'
CS0101: Line 112: The namespace 'Server.Items' already contains a definition for 'Log'
CS0101: Line 156: The namespace 'Server.Items' already contains a definition for 'HeartwoodLog'
CS0101: Line 198: The namespace 'Server.Items' already contains a definition for 'BloodwoodLog'
CS0101: Line 240: The namespace 'Server.Items' already contains a definition for 'FrostwoodLog'
CS0101: Line 282: The namespace 'Server.Items' already contains a definition for 'OakLog'
CS0101: Line 324: The namespace 'Server.Items' already contains a definition for 'AshLog'
CS0101: Line 366: The namespace 'Server.Items' already contains a definition for 'YewLog'
+ Items/Resource/Ore.cs:
CS0101: Line 8: The namespace 'Server.Items' already contains a definition for 'BaseOre'
CS0102: Line 188: The type 'Server.Items.BaseOre' already contains a definition for 'InternalTarget'
CS0101: Line 438: The namespace 'Server.Items' already contains a definition for 'IronOre'
CS0101: Line 484: The namespace 'Server.Items' already contains a definition for 'DullCopperOre'
CS0101: Line 525: The namespace 'Server.Items' already contains a definition for 'ShadowIronOre'
CS0101: Line 566: The namespace 'Server.Items' already contains a definition for 'CopperOre'
CS0101: Line 607: The namespace 'Server.Items' already contains a definition for 'BronzeOre'
CS0101: Line 648: The namespace 'Server.Items' already contains a definition for 'GoldOre'
CS0101: Line 689: The namespace 'Server.Items' already contains a definition for 'AgapiteOre'
CS0101: Line 730: The namespace 'Server.Items' already contains a definition for 'VeriteOre'
CS0101: Line 771: The namespace 'Server.Items' already contains a definition for 'ValoriteOre'
+ Items/Resource/Scales.cs:
CS0101: Line 5: The namespace 'Server.Items' already contains a definition for 'BaseScales'
CS0101: Line 101: The namespace 'Server.Items' already contains a definition for 'RedScales'
CS0101: Line 135: The namespace 'Server.Items' already contains a definition for 'YellowScales'
CS0101: Line 171: The namespace 'Server.Items' already contains a definition for 'BlackScales'
CS0101: Line 207: The namespace 'Server.Items' already contains a definition for 'GreenScales'
CS0101: Line 243: The namespace 'Server.Items' already contains a definition for 'WhiteScales'
CS0101: Line 279: The namespace 'Server.Items' already contains a definition for 'BlueScales'
+ Items/Tools/BaseRunicTool.cs:
CS0101: Line 6: The namespace 'Server.Items' already contains a definition for 'BaseRunicTool'
+ Items/Tools/ProspectorsTool.cs:
CS0101: Line 7: The namespace 'Server.Items' already contains a definition for 'ProspectorsTool'
CS0102: Line 234: The type 'Server.Items.ProspectorsTool' already contains a definition for 'InternalTarget'
+ Items/Tools/RunicDovetailSaw.cs:
CS0101: Line 6: The namespace 'Server.Items' already contains a definition for 'RunicDovetailSaw'
+ Items/Tools/RunicFletcherTool.cs:
CS0101: Line 6: The namespace 'Server.Items' already contains a definition for 'RunicFletcherTool'
+ Items/Tools/RunicHammer.cs:
CS0101: Line 7: The namespace 'Server.Items' already contains a definition for 'RunicHammer'
+ Items/Tools/RunicSewingKit.cs:
CS0101: Line 6: The namespace 'Server.Items' already contains a definition for 'RunicSewingKit'
+ Misc/CharacterCreation.cs:
CS0101: Line 11: The namespace 'Server.Misc' already contains a definition for 'CharacterCreation'
CS0102: Line 1445: The type 'Server.Misc.CharacterCreation' already contains a definition for 'BadStartMessage'
+ Misc/ResourceInfo.cs:
CS0101: Line 6: The namespace 'Server.Items' already contains a definition for 'CraftResource'
CS0101: Line 40: The namespace 'Server.Items' already contains a definition for 'CraftResourceType'
CS0101: Line 49: The namespace 'Server.Items' already contains a definition for 'CraftAttributeInfo'
CS0101: Line 907: The namespace 'Server.Items' already contains a definition for 'CraftResourceInfo'
CS0101: Line 973: The namespace 'Server.Items' already contains a definition for 'CraftResources'
CS0101: Line 1241: The namespace 'Server.Items' already contains a definition for 'OreInfo'
+ Mobiles/AI/SpeedInfo.cs:
CS0101: Line 8: The namespace 'Server' already contains a definition for 'SpeedInfo'
+ Mobiles/Normal/BaseCreature.cs:
CS0101: Line 44: The namespace 'Server.Mobiles' already contains a definition for 'FightMode'
CS0101: Line 55: The namespace 'Server.Mobiles' already contains a definition for 'OrderType'
CS0101: Line 76: The namespace 'Server.Mobiles' already contains a definition for 'FoodType'
CS0101: Line 89: The namespace 'Server.Mobiles' already contains a definition for 'PackInstinct'
CS0101: Line 102: The namespace 'Server.Mobiles' already contains a definition for 'ScaleType'
CS0101: Line 115: The namespace 'Server.Mobiles' already contains a definition for 'MeatType'
CS0101: Line 122: The namespace 'Server.Mobiles' already contains a definition for 'HideType'
CS0101: Line 145: The namespace 'Server.Mobiles' already contains a definition for 'DamageStore'
CS0101: Line 166: The namespace 'Server.Mobiles' already contains a definition for 'FriendlyNameAttribute'
CS0101: Line 196: The namespace 'Server.Mobiles' already contains a definition for 'BaseCreature'
CS0102: Line 421: The type 'Server.Mobiles.BaseCreature' already contains a definition for 'DeleteTimer'
CS0102: Line 1104: The type 'Server.Mobiles.BaseCreature' already contains a definition for 'Allegiance'
CS0102: Line 3561: The type 'Server.Mobiles.BaseCreature' already contains a definition for 'TameEntry'
CS0102: Line 3676: The type 'Server.Mobiles.BaseCreature' already contains a definition for 'TeachResult'
CS0102: Line 5043: The type 'Server.Mobiles.BaseCreature' already contains a definition for 'DeathAdderCharmTarget'
CS0102: Line 5302: The type 'Server.Mobiles.BaseCreature' already contains a definition for 'FKEntry'
CS0101: Line 7378: The namespace 'Server.Mobiles' already contains a definition for 'LoyaltyTimer'
+ Mobiles/NPCs/BaseVendor.cs:
CS0101: Line 26: The namespace 'Server.Mobiles' already contains a definition for 'VendorShoeType'
CS0101: Line 35: The namespace 'Server.Mobiles' already contains a definition for 'BaseVendor'
CS0102: Line 130: The type 'Server.Mobiles.BaseVendor' already contains a definition for 'BulkOrderInfoEntry'
CS0101: Line 2275: The namespace 'Server.ContextMenus' already contains a definition for 'VendorBuyEntry'
CS0101: Line 2292: The namespace 'Server.ContextMenus' already contains a definition for 'VendorSellEntry'
CS0101: Line 2312: The namespace 'Server' already contains a definition for 'IShopSellInfo'
CS0101: Line 2333: The namespace 'Server' already contains a definition for 'IBuyItemInfo'
+ Mobiles/NPCs/Bowyer.cs:
CS0101: Line 8: The namespace 'Server.Mobiles' already contains a definition for 'Bowyer'
+ Mobiles/NPCs/Carpenter.cs:
CS0101: Line 7: The namespace 'Server.Mobiles' already contains a definition for 'Carpenter'
+ Mobiles/PlayerMobile.cs:
CS0101: Line 55: The namespace 'Server.Mobiles' already contains a definition for 'PlayerFlag'
CS0101: Line 91: The namespace 'Server.Mobiles' already contains a definition for 'NpcGuild'
CS0101: Line 108: The namespace 'Server.Mobiles' already contains a definition for 'SolenFriendship'
CS0101: Line 116: The namespace 'Server.Mobiles' already contains a definition for 'PlayerMobile'
CS0102: Line 202: The type 'Server.Mobiles.PlayerMobile' already contains a definition for 'CountAndTimeStamp'
CS0102: Line 2430: The type 'Server.Mobiles.PlayerMobile' already contains a definition for 'CancelRenewInventoryInsuranceGump'
CS0102: Line 2769: The type 'Server.Mobiles.PlayerMobile' already contains a definition for 'ContextCallback'
CS0102: Line 2771: The type 'Server.Mobiles.PlayerMobile' already contains a definition for 'CallbackEntry'
CS0102: Line 4870: The type 'Server.Mobiles.PlayerMobile' already contains a definition for 'PlayerPropertiesEventHandler'
CS0102: Line 4874: The type 'Server.Mobiles.PlayerMobile' already contains a definition for 'PlayerPropertiesEventArgs'
CS0102: Line 6059: The type 'Server.Mobiles.PlayerMobile' already contains a definition for 'ChampionTitleInfo'
CS0102: Line 6064: The type 'Server.Mobiles.PlayerMobile.ChampionTitleInfo' already contains a definition for 'TitleInfo'
+ Services/BulkOrders/Books/BOBGump.cs:
CS0101: Line 10: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'BOBGump'
CS0102: Line 749: The type 'Server.Engines.BulkOrders.BOBGump' already contains a definition for 'SetPricePrompt'
+ Services/BulkOrders/Books/BOBLargeEntry.cs:
CS0101: Line 5: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'BOBLargeEntry'
+ Services/BulkOrders/Books/BOBSmallEntry.cs:
CS0101: Line 5: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'BOBSmallEntry'
+ Services/BulkOrders/Books/BODType.cs:
CS0101: Line 5: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'BODType'
+ Services/BulkOrders/LargeBODs/LargeBOD.cs:
CS0101: Line 8: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'LargeBOD'
+ Services/BulkOrders/LargeBODs/LargeBODAcceptGump.cs:
CS0101: Line 7: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'LargeBODAcceptGump'
+ Services/BulkOrders/LargeBODs/LargeBODGump.cs:
CS0101: Line 11: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'LargeBODGump'
+ Services/BulkOrders/LargeBODs/LargeBulkEntry.cs:
CS0101: Line 6: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'LargeBulkEntry'
+ Services/BulkOrders/LargeBODs/LargeSmithBOD.cs:
CS0101: Line 7: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'LargeSmithBOD'
+ Services/BulkOrders/LargeBODs/LargeTailorBOD.cs:
CS0101: Line 6: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'LargeTailorBOD'
+ Services/BulkOrders/Rewards/Rewards.cs:
CS0101: Line 8: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'ConstructCallback'
CS0101: Line 10: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'RewardType'
CS0101: Line 48: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'RewardItem'
CS0101: Line 114: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'RewardGroup'
CS0101: Line 168: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'RewardCalculator'
CS0101: Line 311: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'SmithRewardCalculator'
CS0101: Line 662: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'TailorRewardCalculator'
+ Services/BulkOrders/SmallBODs/SmallBOD.cs:
CS0101: Line 9: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'SmallBOD'
+ Services/BulkOrders/SmallBODs/SmallBODAcceptGump.cs:
CS0101: Line 7: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'SmallBODAcceptGump'
+ Services/BulkOrders/SmallBODs/SmallBODGump.cs:
CS0101: Line 10: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'SmallBODGump'
+ Services/BulkOrders/SmallBODs/SmallBulkEntry.cs:
CS0101: Line 8: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'SmallBulkEntry'
+ Services/BulkOrders/SmallBODs/SmallSmithBOD.cs:
CS0101: Line 8: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'SmallSmithBOD'
+ Services/BulkOrders/SmallBODs/SmallTailorBOD.cs:
CS0101: Line 7: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'SmallTailorBOD'
+ Services/BulkOrders/BulkMaterialType.cs:
CS0101: Line 7: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'BulkMaterialType'
CS0101: Line 29: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'BulkGenericType'
CS0101: Line 37: The namespace 'Server.Engines.BulkOrders' already contains a definition for 'BGTClassifier'
+ Services/ChampionSystem/ChampionSpawn.cs:
CS0101: Line 11: The namespace 'Server.Engines.CannedEvil' already contains a definition for 'ChampionSpawn'
CS0101: Line 1461: The namespace 'Server.Engines.CannedEvil' already contains a definition for 'ChampionSpawnRegion'
CS0101: Line 1499: The namespace 'Server.Engines.CannedEvil' already contains a definition for 'IdolOfTheChampion'
+ Services/ChampionSystem/ChampionSpawnType.cs:
CS0101: Line 6: The namespace 'Server.Engines.CannedEvil' already contains a definition for 'ChampionSpawnType'
CS0101: Line 26: The namespace 'Server.Engines.CannedEvil' already contains a definition for 'ChampionSpawnInfo'
+ Services/Craft/Core/CraftGump.cs:
CS0101: Line 9: The namespace 'Server.Engines.Craft' already contains a definition for 'CraftGump'
CS0102: Line 23: The type 'Server.Engines.Craft.CraftGump' already contains a definition for 'CraftPage'
+ Services/Craft/Core/CraftItem.cs:
CS0101: Line 21: The namespace 'Server.Engines.Craft' already contains a definition for 'ConsumeType'
CS0101: Line 28: The namespace 'Server.Engines.Craft' already contains a definition for 'ICraftable'
CS0101: Line 41: The namespace 'Server.Engines.Craft' already contains a definition for 'CraftItem'
CS0102: Line 1892: The type 'Server.Engines.Craft.CraftItem' already contains a definition for 'InternalTimer'
+ Services/Craft/Core/Repair.cs:
CS0101: Line 13: The namespace 'Server.Engines.Craft' already contains a definition for 'Repair'
CS0102: Line 31: The type 'Server.Engines.Craft.Repair' already contains a definition for 'InternalTarget'
+ Services/Craft/Core/Resmelt.cs:
CS0101: Line 7: The namespace 'Server.Engines.Craft' already contains a definition for 'SmeltResult'
CS0101: Line 14: The namespace 'Server.Engines.Craft' already contains a definition for 'Resmelt'
CS0102: Line 35: The type 'Server.Engines.Craft.Resmelt' already contains a definition for 'InternalTarget'
+ Services/Craft/DefBlacksmithy.cs:
CS0101: Line 17: The namespace 'Server.Engines.Craft' already contains a definition for 'SmithRecipes'
CS0101: Line 71: The namespace 'Server.Engines.Craft' already contains a definition for 'DefBlacksmithy'
CS0102: Line 238: The type 'Server.Engines.Craft.DefBlacksmithy' already contains a definition for 'InternalTimer'
CS0101: Line 1096: The namespace 'Server.Engines.Craft' already contains a definition for 'ForgeAttribute'
CS0101: Line 1099: The namespace 'Server.Engines.Craft' already contains a definition for 'AnvilAttribute'
+ Services/Craft/DefBowFletching.cs:
CS0101: Line 7: The namespace 'Server.Engines.Craft' already contains a definition for 'BowRecipes'
CS0101: Line 28: The namespace 'Server.Engines.Craft' already contains a definition for 'DefBowFletching'
+ Services/Craft/DefCarpentry.cs:
CS0101: Line 7: The namespace 'Server.Engines.Craft' already contains a definition for 'CarpRecipes'
CS0101: Line 42: The namespace 'Server.Engines.Craft' already contains a definition for 'DefCarpentry'
+ Services/Craft/DefInscription.cs:
CS0101: Line 12: The namespace 'Server.Engines.Craft' already contains a definition for 'DefInscription'
CS0102: Line 137: The type 'Server.Engines.Craft.DefInscription' already contains a definition for 'Reg'
+ Services/Craft/DefMasonry.cs:
CS0101: Line 13: The namespace 'Server.Engines.Craft' already contains a definition for 'DefMasonry'
CS0102: Line 84: The type 'Server.Engines.Craft.DefMasonry' already contains a definition for 'InternalTimer'
+ Services/Craft/DefTailoring.cs:
CS0101: Line 6: The namespace 'Server.Engines.Craft' already contains a definition for 'TailorRecipe'
CS0101: Line 45: The namespace 'Server.Engines.Craft' already contains a definition for 'DefTailoring'
+ Services/Craft/DefTinkering.cs:
CS0101: Line 9: The namespace 'Server.Engines.Craft' already contains a definition for 'TinkerRecipes'
CS0101: Line 29: The namespace 'Server.Engines.Craft' already contains a definition for 'DefTinkering'
CS0101: Line 820: The namespace 'Server.Engines.Craft' already contains a definition for 'TrapCraft'
CS0102: Line 880: The type 'Server.Engines.Craft.TrapCraft' already contains a definition for 'ContainerTarget'
CS0101: Line 939: The namespace 'Server.Engines.Craft' already contains a definition for 'DartTrapCraft'
CS0101: Line 956: The namespace 'Server.Engines.Craft' already contains a definition for 'PoisonTrapCraft'
CS0101: Line 973: The namespace 'Server.Engines.Craft' already contains a definition for 'ExplosionTrapCraft'
+ Services/Harvest/HarvestSystem.cs:
CS0101: Line 8: The namespace 'Server.Engines.Harvest' already contains a definition for 'HarvestSystem'
CS0101: Line 536: The namespace 'Server' already contains a definition for 'IChopable'
CS0101: Line 542: The namespace 'Server' already contains a definition for 'FurnitureAttribute'
+ Services/Harvest/HarvestVein.cs:
CS0101: Line 5: The namespace 'Server.Engines.Harvest' already contains a definition for 'HarvestVein'
+ Services/XmlSpawner/XMLSpawner Extras/XmlSockets/XmlSocketItems/BagOfResources.cs:
CS0101: Line 16: The namespace 'Server.Items' already contains a definition for 'BagOfResources'
+ Skills/AnimalTaming.cs:
CS0101: Line 23: The namespace 'Server.SkillHandlers' already contains a definition for 'AnimalTaming'
CS0102: Line 124: The type 'Server.SkillHandlers.AnimalTaming' already contains a definition for 'InternalTarget'
CS0102: Line 277: The type 'Server.SkillHandlers.AnimalTaming.InternalTarget' already contains a definition for 'InternalTimer'
+ Skills/Lumberjacking.cs:
CS0101: Line 7: The namespace 'Server.Engines.Harvest' already contains a definition for 'Lumberjacking'
+ Skills/Mining.cs:
CS0101: Line 8: The namespace 'Server.Engines.Harvest' already contains a definition for 'Mining'
+ Spells/Base/Spell.cs:
CS0101: Line 29: The namespace 'Server.Spells' already contains a definition for 'Spell'
CS0102: Line 69: The type 'Server.Spells.Spell' already contains a definition for 'DelayedDamageContextWrapper'
CS0102: Line 1184: The type 'Server.Spells.Spell' already contains a definition for 'AnimTimer'
CS0102: Line 1223: The type 'Server.Spells.Spell' already contains a definition for 'CastTimer'
+ VendorInfo/GenericSell.cs:
CS0101: Line 7: The namespace 'Server.Mobiles' already contains a definition for 'GenericSellInfo'
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 
Almost all of those errors are from duplicate files. (already contains a definition for) means exactly that. You've either merged them wrong or you just added the owltr files into your server.
 
Hmm?

I check for instruction I don't see any lol.

I've done messed around I just want the token thing, and it kept asking for datt99 cause I had error, and it wouldn't make the token thing work, and I've messed around with it, and done a bunch of things so what was I suppose to be doing?
 
Hi guys... how can i merge these filese? i have to do file to file manually?

Owlter is "plug and play" (after marging) or i have to adapt\fix something?
 
Pre merged has been tried in the past, but with the changes that occur on a regular basis, its pretty much pointless. The only files you really cant/shouldn't use a merging program with are the large ones. ie: PlayerMobile.cs, BaseCreature.cs, BaseWeapon.cs & BaseArmor.cs. Those are best done "by hand" as in carefully going through the OWLTR file, finding the changed sections & then copy/paste those into the stock file in the correct place. Its a pain, but in the end its worth it. I'm currently working on fixing an issue with the new OWLTR BODs not liking the new BOD system. I may just end up removing them, but keeping the rewards (if I can get those to work). Just requires time. :(
[doublepost=1511001990][/doublepost]WinMerge is usually whats used for merging files & its free.
http://winmerge.org/?lang=en
 
mmm sorry.... if ive file in owltr folder to merge called: imnoobsorry.cs and the same file in my servuo shard folders... i have to overwrite or i have to merge? (complete my file with your).

Im not able to merge, how can i do?
 
You need to merge the files. Overwriting causes major errors. The files that need merged into ServUO are in the folder named Modified. Download & use WinMerge for the merging. Merging is fairly easy for most of the files, just not the large ones. Just go to the Documentation tab on the WinMerge website to see how its done.
 
It was until the new OSI/Broadsword BODs, now the OWLTR BODs like throwing errors. I've got to take (find) the time to try & fix it.
 
That is a lot of views, I wonder if modding basearmor is really required for armor changes to take affect. I can't seem to get this right, no compile errors, but the changes break the newest distro basearmor so it doesn't calculate the values right.
 
Back