NPC Code:
function onActionserverside(){
clientr.itm = {{5,2},{"test"}};
clientr.itm[0][1] = 9;
echo(clientr.itm[0][1] @"|||"@ clientr.itm);
}
//#CLIENTSIDE
function onCreated(){
triggeraction(0,0,"serverside","WtfTest");
}
I get these results:
9|||"5,2","test,"
The string is never modified, but if I access clientr.itm[0][1], it claims its whatever I changed it to.... Very annoying, I can't really finish my item system without this working...