in rare cases a player cant move after driving a galleon. can someone show me a simple command script for an emergeny-selfdismount for a player?

i'm in hurry due my dog needs to go to the vet.

thanks for your help
 
First off I hope your dog is okay!

Secondly there already exists a [dismount command, however it is a targeted GM command, you can look at it though and see how it is done and apply it to the playermobile that calls the command.

The command is located in Commands.cs
 
Something like this should work. Add it to a command.

Code:
if ( m.Player && m.Mounted )
   {
		IMount mount = (IMount)m.Mount;
		mount.Rider = null;
   }
 
Since that is brought up. I just tried using the new boat system today. How the heck do you get off them? Can't find a board to click on like old boats is there a new way? lol
 
Mouse
Mouse control of the boats is introduced with the Ultima Online: High Seas booster pack. To control the boat using the mouse, double-click on the ship's wheel and you enter the mouse driving mode with the system message:

You are now piloting this vessel.
To exit the mouse driving mode, double-click on yourself. The ship’s owner can also seize the ship's control from another passenger at any time.
 
Back