RunUO - [https://github.com/runuo/] Version 2.6.0.5203
Core: Running on .NET Framework Version 4.0.30319
Core: Optimizing for 8 64-bit processors
Core: Server garbage collection mode enabled
RandomImpl: CSPRandom (Software)
Scripts: Compiling C# scripts...failed (3 errors, 0 warnings)
Errors:
+ Custom/XmlQuest/XmlQuestHolder.cs:
CS0115: Line 491: 'Server.Items.XmlQuestHolder.OnAdded(object)' : aucune mét
hode appropriée n'a été trouvée pour la substitution
+ Custom/XmlQuest/XmlQuestToken.cs:
CS0115: Line 556: 'Server.Items.XmlQuestToken.OnAdded(object)' : aucune méth
ode appropriée n'a été trouvée pour la substitution
CS0115: Line 94: 'Server.Items.XmlQuestTokenPack.OnAdded(object)' : aucune m
éthode appropriée n'a été trouvée pour la substitution
+ Custom/XmlQuest/XmlQuestBook.cs:
CS0115: Line 181: 'Server.Items.XmlQuestBook.OnAdded(object)' : aucune métho
de appropriée n'a été trouvée pour la substitution
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.


if anyone know how to repair this, it be great. the most recent files i found got xmlspawner 2.1 2.2 and orb 2.2.
the 3 make the same errors.
 
I believe it is referring to (object) needing changed to what your core uses though I'm not sure since it's not in English and my phone won't translate for some reason. Some servers use IEntity, some object, etc. See which one your server version uses and change it appropriately.
 
I believe it is referring to (object) needing changed to what your core uses though I'm not sure since it's not in English and my phone won't translate for some reason. Some servers use IEntity, some object, etc. See which one your server version uses and change it appropriately.
Mine was saying no override found for those objects. I changed
C#:
public override void
to
C#:
public void
and that worked. Don't know how buggy that will make it hahah
 
Back