11-03-2013, 02:47 AM
Not that hard to implement auto-clicking by either running a macro or just simple javascript. I've already told people how to do this on IRC so I guess I'll also share it here.
The crafting button has the ID "begin_craft". You can click this using jQuery with $('#begin_craft').click();
To automate this, use the window.setInterval method, like so window.setInterval(function(){$('#begin_craft').click()},1000)
The crafting button has the ID "begin_craft". You can click this using jQuery with $('#begin_craft').click();
To automate this, use the window.setInterval method, like so window.setInterval(function(){$('#begin_craft').click()},1000)