BNLSConnection bnls = BNLSManager.getWardenConnection();
int cookie_out = c.getConnectionSettings().botNum;
BNetInputStream is = bnls.sendWarden1(cookie_out, payload);
byte u = is.readByte();
int cookie = is.readDWord();
byte result = is.readByte();
short dataLen = is.readWord();
byte[] data = new byte[dataLen];
is.read(data);