I was trying to send a Boolean wich was set to false to another user with sendObject(). But it came out out true at the other end.
I'm not sure if this is due to my own scripting , but when I send it as a String ("false"), and at the recieving end a script like:
if (obj.var=="false")
{
do_this();
}
else // "true"
{
do_that();
}
...,it worked fine.
I'm curiuos if other people experience the same trouble with sending a Boolean with sendObject().
If not, then it's just me.