Then they have a different jbotAPI to you.
I have the default API file, and I get the same error as you.
Moderator: Phades
include("header");
function travelToHF(){
jSendDoubleAction("theTrav", "hearth");
jWaitProgress(10000);
}
function extend(Child, Parent) {
var F = function() { }
F.prototype = Parent.prototype
Child.prototype = new F()
Child.prototype.constructor = Child
Child.superclass = Parent.prototype
}
shampizle wrote:woodcutter works fine with EVERYONE else that uses it and this one is new so dont get all fucking snippy with me its a new error if u dont want to help then dont talk
and yes i have no idea about coding
function MoveRandomDirection(tiles){
jMoveStep(jCoord(1, 0));
jWaitMove(1000); }
function drinkWine() {
if (travelCount() < 85) return;
inventory = checkInventory();
var buckets = inventory.getItems("bucket-wine");
if (buckets.length > 0) {
inventory.sortItems(buckets, "amount", false);
var bucket = buckets[0];
var bucket_coord = bucket.coord();
if (bucket.isActual()) {
bucket.take();
jWaitDrag();
var flasks = inventory.getItems("glass-winee");
if (flasks.length > 0) {
var flask = flasks[0];
if (flask.isActual()) {
flask.itemact(0);
jSleep(500);
inventory.drop(bucket_coord);
jWaitDrop();
}
}
}
}
var flasks = inventory.getItems("glass-winef");
if (flasks.length > 0) {
var flask = flasks[0];
if (flask.isActual()) {
flask.iact();
if (jWaitPopup(actionTimeout)) {
jSleep(500)
jSelectContextMenu("Drink");
jWaitProgress();
//winecount++;
} else {
// No water
stopFlag = true;
}
}
}
if (travelCount() < 85) return;
drinkWine();
}
Users browsing this forum: Ahrefs [Bot], Claude [Bot] and 0 guests