ServUO Version
Publish 57
Ultima Expansion
Age Of Shadows
reference.png

Hey, Forum

I am fairly new to ServUO but can comprehend c# codes and edit them

I've searched through Scripts directory to find where to configure 'allow carrying objects while gate travel', but no luck so far

Care to give me a direction or an answer?

Thank you.
 
Should be able to fix it by commenting out the following in Moongate.cs

C#:
            else if (m.Holding != null)
            {
                m.SendLocalizedMessage(1071955); // You cannot teleport while dragging an object.
            }
There are a few other spots something simular to this can be found such as PublicMoongate.cs in case you wanted to change that as well.
 
Should be able to fix it by commenting out the following in Moongate.cs

C#:
            else if (m.Holding != null)
            {
                m.SendLocalizedMessage(1071955); // You cannot teleport while dragging an object.
            }
There are a few other spots something simular to this can be found such as PublicMoongate.cs in case you wanted to change that as well.
Thank you so much!
 
Back