you're showing the GUI in the plugin/bot thread which gets terminated when hb is stopped.If you were using Form.ShowDialog() then it was blocking the thread until form was closed. Move you UI to the GUI thread (by placing your Form.Show()/Form.ShowDialog() in the 'OnButtonPress' override) and you won't have this issue.Hey guys,
im programming a status-window like that one in pirox.
But when i start the bot, and the window opens, HB stop's until i
close the window.
Anybody know how to fix that?
you're showing the GUI in the plugin/bot thread which gets terminated when hb is stopped.If you were using Form.ShowDialog() then it was blocking the thread until form was closed. Move you UI to the GUI thread (by placing your Form.Show()/Form.ShowDialog() in the 'OnButtonPress' override) and you won't have this issue.