ya i can't get it to work either :/
[CODE]
// open cube
print("Opening Cube");
cube = getItem("box", 100);
cube.interact(1);
// put leg in cube
print("Putting leg into cube");
leg.interact();
while(!me.itemoncursor) delay(100);
leg.move(0,0,3);
delay(2000);
// put tome in cube
print("putting tome into cube");
tome = getItem("tbk", 100);
tome.interact();
while(!me.itemoncursor) delay(100);
tome.move(1,0,3);
delay(2000);
// transmute
print("Transmuting.. cross your fingers!");
//cube.interact(1);
raw("send 4f180000000000");
[/CODE]
note it's in the middle of my script so there's more error checking than that :)
it works if I manually open it after it starts putting the items in it, but it doesn't want to open it by itself.