Skip to content

Instantly share code, notes, and snippets.

@xcvd
xcvd / ChocolateGrinder.java
Created April 4, 2012 23:29
Chocolate Grinder
/* )............( /
/ / ___/| \ /
/ | /o \/| | /
/ | \_____/\| | /
/ \ -xcvd- / /
/ ')__________(' */
import org.powerbot.concurrent.Task;
import org.powerbot.concurrent.strategy.Strategy;
import org.powerbot.game.api.ActiveScript;
@xcvd
xcvd / bankItemChild.java
Created April 3, 2012 15:00
Get Bank Widget
private WidgetChild getBankItemChild(int id)
{
WidgetChild item = null;
for(WidgetChild i:bankItems.getChildren())
{
if(new Item(i).getId() == id)
{
item = i;
break;
}
@xcvd
xcvd / VialFiller.java
Created April 3, 2012 09:53
Vial Filler
/* )............( /
/ / ___/| \ /
/ | /o \/| | /
/ | \_____/\| | /
/ \ -xcvd- / /
/ ')__________(' */
import org.powerbot.concurrent.Task;
import org.powerbot.concurrent.strategy.Strategy;
import org.powerbot.game.api.ActiveScript;