• In anticipation of the possible announcement of Civilization 7, we have decided to already create the Civ7 forum. For more info please check the forum here .

NetSyncTools - MP Compatible Custom UIs

Results from a SP game

Code:
> Events.GameMessageChat.Add(function (ifromPlayer, iToPlayer, sText, iTargetType) print(string.format("Chat - from: %i, to: %i, type: %i, txt: %s", ifromPlayer, iToPlayer, iTargetType, sText)) end)
function: 5EAE2000
> Network.SendChat("{x=100, y=200, z=300}", -1, -1)
 WorldView: Chat - from: 0, to: -1, type: -2, txt: {x=100, y=200, z=300}
> Network.SendChat("{x=100, y=200, z=300}", 21, 21)
 WorldView: Chat - from: 0, to: 21, type: -3, txt: {x=100, y=200, z=300}
 
Top Bottom