Popup dialog help.

07/26/2010 18:48 _DreadNought_#1
Well,
I know that a few servers, take Impule's for example when you login you get a popup dialog. When Ali's/Impule's/Kinshi's proxy turns the aimbot on a dialog pop's up and says some crap :) I want to know what the ID of that is so I can make this work
Code:
client.Send(new GamePackets.Message("Test", System.Drawing.Color.Gray, GamePackets.Message.Popup));
Where 'Popup' is defined it looks like
Code:
Popup = [COLOR="Red"]1002[/COLOR],
That bit in red is what I need the correct value/id/type/whatever you wonna call it and for a bonus if anyone feels up to it, make a action happen if the user hits 'Ok'

Thanks,
Eliminationn
07/30/2010 19:21 _DreadNought_#2
#Bump

My friend Fang took a pic of it for me: [Only registered and activated users can see links. Click Here To Register...] Need that asap.
07/30/2010 19:58 Arcо#3
Why not log it?
07/30/2010 20:15 _DreadNought_#4
Meh. I suck with packet loggers...fang has tryed every single chat type from 0-5000 and still going. Nothing. is it even a chattype? if not what is it?
07/30/2010 20:24 -impulse-#5
It is not a chat type.

It is a npc reply(0x7F0) of witch type is 6. The client will answer back with 0x7F0 or 0x7EF.

On OK the OptionID will be 0 and on Cancel the OptionID will be 255.
07/30/2010 20:29 _DreadNought_#6
Okay, so what is it?
07/30/2010 20:29 -Fáng-#7
Quote:
Originally Posted by -impulse- View Post
It is not a chat type.
Confirmed that... I tried 0 - 10000 using this code:
Code:
int count = 0;
                                    while (count >= 0)
                                    {
                                        CSocket.Send(CoPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "Welcome to Conquer Online: New Dawn.", count));
                                        CSocket.Send(CoPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "Count: " + count, 2000));
                                        Thread.Sleep(100);
                                        count++;
                                    }
It's not a chat type.


EDIT:
Thanks Impluse =]
Works perfectly.
07/30/2010 20:40 _DreadNought_#8
Answer Found, Massive thanks to impulse.

#Request close.
08/01/2010 12:22 Arcо#9
So what patch was the popup implemented?
08/01/2010 17:23 _DreadNought_#10
around 5165 I think, maybe 5095.
08/01/2010 17:26 CptSky#11
Maybe it was always implemented :) Arco, just try the packet.
08/02/2010 00:18 Arcо#12
Yeah I did try it, and I couldn't get it to work, so that's why I asked if it was even in 5065 or lower. But right now I'm thinking it wasn't implemented till later.