Hello again. I´m back very soon with another problem. But the same thing ^^

Thanks to you i know how to send variable arrays and entity pointers. Now i´m trying to send an String Array and what happens? Right! ..nothing grin

What i want is to send my TEXT* object... or better the strings from it.

The definiton:

Code:
TEXT* playerlist =	
{
	pos_x = 560;
	pos_y = 25;
	font = "Arial#16b"; 
	strings = 6;
	flags = SHOW;
}



That works really great so far. But now i need to know how to send this. Whenever a new client joins, i´m doing a namecheck to avoid double names. If everything is correct i´m copying the name into the text string with his id.

Code:
str_cpy((playerlist.pstring)[id], namelog);



Now the server is fine. Next i want to send the whole playerlist to all clients to refresh the names. I tried it with send_array but nothing happens.

Code:
enet_send_array("playerlist",0,5,BROADCAST);



Then i tried it with an event.

Code:
enet_svsend_event(16, playerlist, sizeof(playerlist)+4, BROADCAST);



After trying with different "get" methods in the receive function i everytime get wrong characters. Even if i´m creating String Array or char array, copying the playerlist into those.

numbers are no problems anymore i think. But Strings... please help grin

THank you very much