I know I'm not getting it, but here's what I got that doesn't work.
Ive simply tried
PHP Code:
player.chat = sendText( "lister", "checkinguild", {findplayer(params[1]),findplayer(params[1]).guild} );
in a function im already using serverside, and it just puts "0".
I also tried in that same function putting
PHP Code:
sendText( "lister", "checkinguild", {findplayer(params[1]),findplayer(params[1]).guild} );
then serverside I put
PHP Code:
function onReceiveText( temp.texttype, temp.textoption, temp.textlines ) {
if (texttype == "lister") {
if (textoption == "checkinguild") {
player.chat = textlines;
}
}
}
and that doesnt do anything at all. I'm sure the params are correct, because I'm already bringing up other player info in that function, that way.