[Dev] Chat / Message Client Packet ?
Hello Ragezone,
i wanna try to send a Server -> Client or Local -> Client Packet to show some Chat / Message like this
i cant find any opcode / packet for this .....
https://www.imageupload.co.uk/image/Dvue
how it works ? i just wanna write message / chat like this in any colour
or this one ? with packed ?? i cant find any opcode ....
https://i.epvpimg.com/n1vBcab.gif
edit:
Code:
[S -> C][3076]
0E 00 ................
01 ................
13 00 ................
41 00 76 00 61 00 69 00 6C 00 61 00 62 00 6C 00 A.v.a.i.l.a.b.l.
65 00 20 00 43 00 6F 00 6D 00 6D 00 61 00 6E 00 e...C.o.m.m.a.n.
64 00 73 00 3A 00 d.s.:...........
01 ................
4A 4A FF FF JJ..............
Also a Special Global from Cronos ?
Code:
[S -> C][3076]
0E 00 ................
02 (Chat Size ??) ................
49 00 I...............
4C 00 6F 00 72 00 64 00 53 00 61 00 62 00 72 00 L.o.r.d.S.a.b.r.
61 00 3A 00 57 00 54 00 53 00 20 00 53 00 45 00 a.:.W.T.S...S.E.
41 00 4C 00 20 00 4F 00 46 00 20 00 56 00 45 00 A.L...O.F...V.E.
4E 00 55 00 53 00 20 00 53 00 50 00 45 00 41 00 N.U.S...S.P.E.A.
52 00 20 00 2B 00 30 00 20 00 38 00 30 00 25 00 R...+.0...8.0.%.
20 00 53 00 54 00 41 00 54 00 20 00 46 00 55 00 ..S.T.A.T...F.U.
4C 00 4C 00 20 00 42 00 4C 00 55 00 45 00 20 00 L.L...B.L.U.E...
50 00 4D 00 20 00 4D 00 45 00 20 00 57 00 49 00 P.M...M.E...W.I.
54 00 48 00 20 00 4F 00 46 00 46 00 45 00 52 00 T.H...O.F.F.E.R.
20 00 ................
01 ................
AC DC 15 00 (Colour Code) ................
Re: [Dev] Chat / Message Client Packet ?
I'm also looking into these extra client chat features. It amazes me how people add these to their clients. If someone knowledgeable works on one of these in the development section, open source or allows people to make their own addons for it and is completely free I'll sticky it.
Otherwise, if you know how to add these sorts of things into the client and wanna let us less knowledgeable people know how to add these let us know! :)
Re: [Dev] Chat / Message Client Packet ?
maybe it's the regular 0x7025 opcode but with different type ?
1 = ALL CHAT, 2 = PRIVATE CHAT , 3 = GM CHAT , 4 = PARTY CHAT , 5 = GUILD CHAT ,11 = UNION CHAT
there is a space between 5 ~ 11 try them maybe ? , you can change color code if found one i guess so
there is also type of 13 for npc (never tried it b4)
and for commands you may use "Fetch .. Next " method for listing commands from a table or smth
-- edit --
the weird thing is that server sends chat color too ://
maybe it's another type or another opcode with it's own type and parameters for the color
not sure if that really doesn't exists in vsro 188 only or implemented by someone from another client version.
Re: [Dev] Chat / Message Client Packet ?
The System from Cronos is 100% a new Packet inject via sro_client -> xxx.dll becuse he can change the Chat Colour and the Chat Size also the CharName is in the Message String ( Message = new string (CharName + Message) also the ( Chat System and the Extra Size Global have the same OpCode / Packet )
i try to find a way todo this : if you start the Cronos Client it shows something like "Cronos Libary"
I think we need todo the same: add a new Client Packet -> Inject to sro_client.exe and then ( if item used ingame / Server Guard / Filter / send the Client Packet ) bla bla bla xD
my english is over900 xD
@NourAyman no its not this packet about the Type: it has some hidden chat types (Type: 10 = (ASK) ) if you disable the Alchemy you can use Type: 16 for some Custom Infos but.....
Re: [Dev] Chat / Message Client Packet ?
Any one have news? Looks very interesting but as you said before this won't be able with an custom dll i think....
Maybe there is someone out who can help to create such dll?
Re: [Dev] Chat / Message Client Packet ?
Re: [Dev] Chat / Message Client Packet ?
Quote:
static void WriteChat(ChatGroup group, wchar_t* message, uint32_t color)
Writes a message to chatbox with specified group and color.
from sro++ by Iwa13 :D
Re: [Dev] Chat / Message Client Packet ?
Re: [Dev] Chat / Message Client Packet ?