I was wondering if there was a way to make a custom message to a player like server_message something like this.
this->PChar->pushPacket(new CServerMessagePacket("custom message hello player"));
is there a way to make a custom message in the server
Re: is there a way to make a custom message in the server
Look at packet_system.cpp, SmallPacket0xB5 function. That should get you started.
-- Whasf
-
- Developer
- Posts: 707
- Joined: Sun Jul 22, 2012 12:11 am
Re: is there a way to make a custom message in the server
If you only want it sent to one player, you need to construct a chat packet and push that to the player.