I've been trying to send a table (about 300 items inside containing sub-tables, numbers and strings - that is dungeon map generated on server computer) to the client computer:
Code: Select all
SendData(clientID,ArrayToStr(maze))Code: Select all
maze=ReceiveData(connectionID,#RECEIVEALL)
maze=StrToTable(maze)Code: Select all
ForEach(maze,DebugPrint)The received table is not correct - what am I doing wrong?0 0
Thanks