Adding the following simple plugin to the Aardwolf client package causes decompression errors. Sometimes MUSHclient crashes too. (Just load the plugin, connect, and wait 20 seconds or so.)
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE muclient>
<muclient>
<plugin
name="Error_Test"
author="Fiendish"
id="aaaaaa47725d717d6292a680"
language="Lua"
purpose="Compression Errors"
date_written="2013-07-05 16:46:02"
requires="4.81"
version="1.0"
save_state="y"
>
</plugin>
<script>
<![CDATA[
function OnPluginBroadcast (msg, id, name, text)
if id == "3e7dedbe37e44942dd46d264" then -- the Aardwolf GMCP handler
utils.msgbox("Test!")
end -- level info
end
]]>
</script>
</muclient>