'Lil exemple of what i learnt by asking the same question 1 month ago:
Server Sided:
server.cs
function serverCmdGetfruits(%client)
{
commandToClient(%client, 'ReceiveData', %client.apple, %client.kiwi);
}
Client Sided:
client.cs
function clientCmdReceiveData(%apple, %kiwi)
{
echo("You have "@%apple@" apples and "@%kiwi@" kiwis! ");
}
I know you already have been answered but I just want to make sure :P