Author Topic: Send message to party via Easyuo  (Read 3700 times)

0 Members and 1 Guest are viewing this topic.

Offline decloTopic starter

  • Jr. Member
  • **
  • Posts: 90
  • Activity:
    0%
  • Reputation Power: 2
  • declo has no influence.
  • Respect: +16
  • Referrals: 1
    • View Profile
Send message to party via Easyuo
« on: December 10, 2020, 01:03:56 PM »
0
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!

Offline TrailMyx

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13301
  • Activity:
    0%
  • Reputation Power: 154
  • TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!
  • Gender: Male
  • Viper!
  • Respect: +1349
  • Referrals: 33
    • View Profile
    • ScriptUO
Re: Send message to party via Easyuo
« Reply #1 on: December 10, 2020, 01:25:04 PM »
0
You can probably find the information you need if you pick at this script:

http://www.scriptuo.com/index.php?topic=15840.30
Please read the ScriptUO site RULES
Come play RIFT with me!

Offline The Ghost

  • Elite
  • *
  • *
  • Posts: 1917
  • Activity:
    0%
  • Reputation Power: 25
  • The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.
  • Respect: +245
  • Referrals: 0
    • View Profile
Re: Send message to party via Easyuo
« Reply #2 on: December 11, 2020, 08:11:49 PM »
0
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
« Last Edit: December 11, 2020, 08:14:04 PM by The Ghost »

Offline TrailMyx

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13301
  • Activity:
    0%
  • Reputation Power: 154
  • TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!
  • Gender: Male
  • Viper!
  • Respect: +1349
  • Referrals: 33
    • View Profile
    • ScriptUO
Re: Send message to party via Easyuo
« Reply #3 on: December 14, 2020, 07:51:52 AM »
0
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.
Please read the ScriptUO site RULES
Come play RIFT with me!

Offline decloTopic starter

  • Jr. Member
  • **
  • Posts: 90
  • Activity:
    0%
  • Reputation Power: 2
  • declo has no influence.
  • Respect: +16
  • Referrals: 1
    • View Profile
Re: Send message to party via Easyuo
« Reply #4 on: December 18, 2020, 04:30:45 AM »
0
Thank you!!

Tags: