ScriptUO

Official ScriptUO EasyUO Scripts => Scripting Chat => Topic started by: bearman on January 16, 2011, 02:20:08 PM

Title: Sending messages
Post by: bearman on January 16, 2011, 02:20:08 PM
please can someone tell me how I would send a guild and alliance message?
I've tried using msg and \this is a message but it just says it local.

Thanks for all your help.
Title: Re: Sending messages
Post by: dxrom on January 16, 2011, 02:47:57 PM
From what I would understand of event macros... No, not at this moment. But do not quote me at that, I am merely a lurker, just now learning about scripting. But if I remember correctly, this issue was brought up in 2005 and according to the documentation, a packet structure for guild/global/alliance/party chat has yet to be implemented.
Title: Re: Sending messages
Post by: Dixie Wrecked on January 16, 2011, 03:10:12 PM
please can someone tell me how I would send a guild and alliance message?
I've tried using msg and \this is a message but it just says it local.

Thanks for all your help.

I just tested this and it worked for guild messages (I don't know the character to start alliance messages, but I assume it would work as well):
Code: [Select]
msg \test$
halt

it's result was:
[guild][char name]: test
Title: Re: Sending messages
Post by: dxrom on January 16, 2011, 03:43:02 PM
please can someone tell me how I would send a guild and alliance message?
I've tried using msg and \this is a message but it just says it local.

Thanks for all your help.

I just tested this and it worked for guild messages (I don't know the character to start alliance messages, but I assume it would work as well):
Code: [Select]
msg \test$
halt

it's result was:
[guild][char name]: test

Oh! Interesting, I completely ruled out the msg function and just straight to event macros. I stand corrected :)
Title: Re: Sending messages
Post by: bearman on January 16, 2011, 03:52:53 PM
I tried that but I had other stuff going on on the line I'll give it a go.  :)
Title: Re: Sending messages
Post by: bearman on January 16, 2011, 07:29:02 PM
it worked thank you for your time.