Modcraft - The community dedicated to quality WoW modding!

Wrath of the Lich King Modding => Miscellaneous => Topic started by: saifi0102 on August 10, 2015, 08:10:00 am

Title: [QUESTION] Sending/Receiving data with GlueXML?
Post by: saifi0102 on August 10, 2015, 08:10:00 am
Hi,

I've recently starting editing WoW UI and I was wondering if its possible be send/receive data before the character login? For example to make server info frames on login screen.
Title: Re: [QUESTION] Sending/Receiving data with GlueXML?
Post by: stoneharry on August 10, 2015, 12:11:16 pm
Quote from: "saifi0102"
Hi,

I've recently starting editing WoW UI and I was wondering if its possible be send/receive data before the character login? For example to make server info frames on login screen.

You can communicate quite a lot of data from the server alert panel but you are not guaranteed to receive this data within a set time frame.

The only other way is through invisible login requests where you scan information from the username field. But this is really hacky and you cannot receive data this way.

Receiving information through the alert panel is receive only as well, and it is not called again until a client restart after being populated.

Your best option is just not to try and do communication from the login screen, why do you need to?
Title: Re: [QUESTION] Sending/Receiving data with GlueXML?
Post by: saifi0102 on August 11, 2015, 10:02:53 am
Well I'm already modifying FrameXML and have a way to send/receive data through AIO/CAIO for additional features so I was wondering if I could add some stuff to the login screen. I'll take a look at what you said and see if I can create a way to send/receive in GlueXML.
Title: Re: [QUESTION] Sending/Receiving data with GlueXML?
Post by: stoneharry on August 11, 2015, 01:43:13 pm
Quote from: "saifi0102"
Well I'm already modifying FrameXML and have a way to send/receive data through AIO/CAIO for additional features so I was wondering if I could add some stuff to the login screen. I'll take a look at what you said and see if I can create a way to send/receive in GlueXML.

Basically: No. The GlueXML is not the same as the FrameXML.

You could potentially using a custom module but then it becomes quite complicated.