Hello,
here is a "trick" to send events with payload using the standard Network Event Sender.
In the map action, you normally put your event name.
exemple 1 : myEvent will generate TCP.myEvent with 2 strings in the payload. The first one is the ip of the sender, the second one is always "withoutRelease". You won't be able to get rid of those 2 strings without modifying the code of the network event sender, but you can add some others.
exemple 2 : {eg.globals.someVar} will generate TCP.someEvent if eg.globals.someVar=="someEvent". you still get the 2 strings in the payload
exemple 3 (here is the trick !) : {"payload someData\npayload someOtherData\nEventSuffix"} will generate TCP.EventSuffix with 4 strings in the payload. You still get the one with the ip of the sender and "withoutRelease", but the third and fourth strings of the payload will be "someData" and "someOtherData".
Regards,
