So I have a game using panda3d’s Distributed Networking and I somehow want to get a global message across all clients in all zones. How would I send and receive these messages?
If you use Astron, you can send your datagram to channel 10.
You can send a global message using a datagram using the Client-Server Connection model you learn how to use in this article: https://www.panda3d.org/manual/index.php/Client-Server_Connection.
You can do this by using a PyDatagram to send a message to every client. Take a look at this page on the manual: panda3d.org/manual/index.ph … tting_Data