Full Version : Two Errors on fresh install 2.0 RC1
xmlspawner >>Troubleshooting >>Two Errors on fresh install 2.0 RC1


<< Prev | Next >>

Kjeldoran- 09-15-2007
Fresh install of RunUO 2.0 RC1.
Just installed the XmlSpawner and get these errors:

CODE

RunUO - [www.runuo.com] Version 2.0, Build 2357.32527
Core: Running on .NET Framework Version 2.0.50727
Core: Optimizing for 2 processors
Scripts: Compiling C# scripts...failed (2 errors, 0 warnings)
Errors:
+ Custom/XmlQuest/XmlQuestHolder.cs:
   CS0117: Line 352: 'Server.Network.NetState' does not contain a definition fo
r 'IsPost6017'
   CS0246: Line 353: The type or namespace name 'ContainerContent6017' could no
t be found (are you missing a using directive or an assembly reference?)
   CS1502: Line 353: The best overloaded method match for 'Server.Mobile.Send(S
erver.Network.Packet)' has some invalid arguments
   CS1503: Line 353: Argument '1': cannot convert from 'ContainerContent6017' t
o 'Server.Network.Packet'
+ Custom/PacketHandlerOverrides.cs:
   CS0117: Line 48: 'Server.Network.PacketHandlers' does not contain a definiti
on for 'Register6017'
   CS0117: Line 56: 'Server.Network.PacketHandlers' does not contain a definiti
on for 'Register6017'
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.



I have already uncomment the #define RunUO2RC1 in the XmlSpawner2.cs

I know very little about setting up a server, I'm trying to run a local server to be able to help on the server I staff for.

Thanks

ArteGordon- 09-15-2007
with RC1 you will need to comment out two other lines as well.

At the top of XmlQuestHolder.cs, and PacketHandlerOverrides.cs you will need to comment out this line

CODE

#define CLIENT6017


so that it looks like

CODE

//#define CLIENT6017


This is because RC1 does not support the most recent UO Clients (6.0.1.7+). If you upgrade to the latest SVN or get the upcoming RC2 release which will have 6.0.1.7+ client support, then dont comment out those lines.