I don't feel like releasing this as an addon that I have to support, but here's a code snippet that should display whether your synth NQ/HQ/Breaks pretty much as soon as it starts:
Code:
function event_incoming_chunk(id,data)
if id == 0x030 then
if get_player()['id'] == (data:byte(7,7)*256*256 + data:byte(6,6)*256 + data:byte(5,5)) then
result = data:byte(13,13)
if result == 0 then
add_to_chat(8,'NQ Synthesis Q.Q')
elseif result == 1 then
add_to_chat(8,'Prepare your butt for the break.')
elseif result == 2 then
add_to_chat(8,'HQ Synthesis! >:D')
else
add_to_chat(8,'Unhandled result '..tostring(result))
end
end
end
end