Update for NWN:EE 37-14

Update for NWN:EE 37-14.  Updated NWNxEE.  Full compile.  Updated release archive.
This commit is contained in:
Jaysyn904
2025-01-21 07:45:16 -05:00
parent 9bbad998cd
commit 09e58d82a4
240 changed files with 25040 additions and 1117 deletions

14
_module/nss/on_pubsub.nss Normal file
View File

@@ -0,0 +1,14 @@
/// @ingroup redis
/// @brief Script to handle PubSub event
/// @{
/// @file on_pubsub.nss
#include "nwnx_redis_ps"
void main()
{
struct NWNX_Redis_PubSubMessageData data = NWNX_Redis_GetPubSubMessageData();
WriteTimestampedLogEntry("Pubsub Event: channel=" + data.channel +
" message=" + data.message);
}
/// @}