ServUO Version
Publish Unknown
Ultima Expansion
Mondain's Legacy
Server for myself and a few friends. I have found the section that says to replace witt "FALSE", but im unsure where exactly.
private static readonly bool AntiMacroCode = !Core.ML; //Change this to false to disable anti-macro code

do i replace the !core.ML; with FALSE ???

Kinda simple..totally new to this.

Thanks
I did this
private static readonly bool AntiMacroCode = false; //Change this to false to disable anti-macro code
assuming that is all i had to do.
 
Last edited:
Try to not touch expansion core files,inside your server there is a folder called Config,to to Playercaps.cfg and take a look at the bottom,you will see:

C#:
# If true, enables some anti-macro code
# If left to default value, this will be true if the ML era flag is not on.
EnableAntiMacro=True
Just change it to False and give it a try,sould work as intended.
 
Back