Hello! Is it possible to get all the data from BitStream in the form of HEX (as an example 42A1F5A1AA363F ...) as a string? ``` public OnIncomingRawPacket(playerid, packetid, BitStream:bs) { new some_data[2048]; BS_ReadValue() //???? printf("String hex data: %s", some_data); return 1; } ```