This happens in Windows XP and Windows 7 using MUSHclient 4.75
A lot of script processing can disrupt the "auto-repeat command" option and cause MUSHclient to wipe out the input bar. Here is a trivial test plugin:
With this plugin loaded, enter a command on the input line (e.g. "s" for south) and then hold down the enter key to send that command as fast as possible. The input line will get erased.
A smaller loop end count causes this to not happen. Adjustment of numbers may be necessary depending on the performance of your computer.
A lot of script processing can disrupt the "auto-repeat command" option and cause MUSHclient to wipe out the input bar. Here is a trivial test plugin:
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE muclient>
<muclient>
<plugin
name="Test"
author="Fiendish and Redryn"
id="999999999999999999999999"
language="Lua"
purpose="test the input bug"
date_written="2011-06-23 21:40:14"
requires="4.75"
version="1.0"
></plugin>
<aliases>
<alias
match="*"
enabled="y"
send_to="12"
sequence="100"
>
<send>
for i = 1,100000000 do local pants=nil end
Send("%1")
</send>
</alias>
</aliases>
</muclient>
With this plugin loaded, enter a command on the input line (e.g. "s" for south) and then hold down the enter key to send that command as fast as possible. The input line will get erased.
A smaller loop end count causes this to not happen. Adjustment of numbers may be necessary depending on the performance of your computer.