The "arrayname" thing was because of C-Script and is now not needed anymore. Thus you only have to pass the address of the thing you want to send, second parameter is the size in byte you want to send.
Example:
Code:
double TestArray[10];
void send()
{
//Sends all 10 elements of TestArray
enet_sendto(TestArray, sizeof(double) * 10, BROADCAST);
//Send only element 4:
enet_sendto(&(TestArray[4]), sizeof(double) * 1, BROADCAST);
}
ANet - A stable and secure network plugin with multi-zone, unlimited players, voip, server-list features,... (for A7/A8)! get free version