ScriptUO

Ultima Online Fan Board => General UO Chat => Topic started by: declo on December 10, 2020, 01:03:56 PM

Title: Send message to party via Easyuo
Post by: declo on December 10, 2020, 01:03:56 PM
How do you send a simple one line message to everyone in your party via easyuo?

Could not find a event macro that appeared to work for this.

Thank you!
Title: Re: Send message to party via Easyuo
Post by: TrailMyx on December 10, 2020, 01:25:04 PM
You can probably find the information you need if you pick at this script:

http://www.scriptuo.com/index.php?topic=15840.30
Title: Re: Send message to party via Easyuo
Post by: The Ghost on December 11, 2020, 08:11:49 PM
it the same in game symbol
http://wiki.easyuo.com/index.php?title=Msg

It simple
msg  \ HEY  ; Guild
msg  | HEY; Alliance
msg  / HEY ; Party


lot of good info here
http://wiki.easyuo.com/index.php?title=Documentation
Title: Re: Send message to party via Easyuo
Post by: TrailMyx on December 14, 2020, 07:51:52 AM
One thing to point out when using the MSG command is that you need to end the statement with a "$".  I specifically remember not doing that originally and upon carefully reading the help section that Ghost linked, it is there.  So in Ghost's example you would:

Code: easyuo
  1. msg  \ HEY$  ; Guild
  2. msg  | HEY$ ; Alliance
  3. msg / HEY$ ; Party
  4.  

"$" just stands for a carriage return.  In other places in EUO, it acts more like a newline allowing you to break up a string into separate lines for use in a Text control for the UI.
Title: Re: Send message to party via Easyuo
Post by: declo on December 18, 2020, 04:30:45 AM
Thank you!!