ServUO Version
Publish Unknown
Ultima Expansion
Renaissance
Greetings everyone! Does anyone perchance know how to disable the World Save message in RunUO, such that the world saves but the players do not see it. have been searching but cannot find the script it is in.

Thanks in advance!
 
Greetings everyone! Does anyone perchance know how to disable the World Save message in RunUO, such that the world saves but the players do not see it. have been searching but cannot find the script it is in.

Thanks in advance!
I think you would just change true to false. I could be wrong but would make sense. where it says false it would normally say true in Broadcast.

code:
if (message)

            {

                Broadcast(0x35, false, "World save complete. The entire process took {0:F1} seconds.", watch.Elapsed.TotalSeconds);

            }
 
I think you would just change true to false. I could be wrong but would make sense. where it says false it would normally say true in Broadcast.

code:
if (message)

            {

                Broadcast(0x35, false, "World save complete. The entire process took {0:F1} seconds.", watch.Elapsed.TotalSeconds);

            }


Thank you! I think that will do it.
 
Back