The Hacker Project - a free online game

Feedback Terminal => Suggestions => Topic started by: Hatejacket on June 25, 2011, 10:14:48 PM



Title: Use Available Password Break Button
Post by: Hatejacket on June 25, 2011, 10:14:48 PM
Would be cool if instead of picking each password breaker from the list, there was also a button that would automatically select an available password breaker. You could just put the link "use available breaker" (or something similar) right beside the "start crack" button and clicking it would automatically start the crack on a breaker that doesn't have a crack already running. If none are available or you need to overload the CPU, you would simply get an error message and then you could overload/crack manually from there.

Would speed up and make grinding a lot more fun.


Title: Re: Use Available Password Break Button
Post by: norill on June 27, 2011, 11:28:00 AM
Would be cool if instead of picking each password breaker from the list, there was also a button that would automatically select an available password breaker. You could just put the link "use available breaker" (or something similar) right beside the "start crack" button and clicking it would automatically start the crack on a breaker that doesn't have a crack already running. If none are available or you need to overload the CPU, you would simply get an error message and then you could overload/crack manually from there.

Would speed up and make grinding a lot more fun.
or it could just select first available PB automatically w/o any buttons. i can make a script for that if you use opera (or firefox with greasemonkey, but i will take longer)


Title: Re: Use Available Password Break Button
Post by: norill on June 27, 2011, 12:04:18 PM
done, here:
http://www.sendspace.com/file/n1kj4f

Code:
// ==UserScript==
// @name hpb
// @include http://hacker-project.com/index.php?action=gate&a2=connect&a3=crack
// ==/UserScript==

var sel=document.forms[1].children[0].children[0].children[0].children[1].children[0];
for(var i=0;i<sel.children.length;i++)
{
if(!sel.children[i].innerHTML.match(/,/))
{
sel.selectedIndex = i;
break;
}
}


dcx <- message from my cat


Title: Re: Use Available Password Break Button
Post by: Hatejacket on June 28, 2011, 08:55:04 AM
done, here:
http://www.sendspace.com/file/n1kj4f

Code:
// ==UserScript==
// @name hpb
// @include http://hacker-project.com/index.php?action=gate&a2=connect&a3=crack
// ==/UserScript==

var sel=document.forms[1].children[0].children[0].children[0].children[1].children[0];
for(var i=0;i<sel.children.length;i++)
{
if(!sel.children[i].innerHTML.match(/,/))
{
sel.selectedIndex = i;
break;
}
}


dcx <- message from my cat

I love you.