Added Erdlu Animal Companion

Added Erdlu Animal Companion & NWNxEE.
This commit is contained in:
Jaysyn904
2021-07-17 11:20:01 -04:00
parent f01fa4bd76
commit 552f1686c8
143 changed files with 24397 additions and 34 deletions

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);
}
/// @}