agentlaw wrote:
Sorry, yes I have. I had it working before (pre v1.2) and loved it but then decided to restore my computer to factory settings and just download everything again. This is the only XU program I am having probs with.
Hmmmm... Can you try changing this in synthesis.js:
Code:
case 7:
// Verify that we selected an empty ingredient slot
if (this.common.ffxiService.updateData()) {
targetItem = this.common.ffxiService.getTargetItem();
if (targetItem.valid == false) {
this.syntherStage = 8;
} else {
this.common.updateStatus('Failed to find ingredient slot!');
this.syntherStage = -100;
}
} else {
this.common.updateStatus('ffxiService.updateData() failed!');
this.syntherStage = -100;
}
break;
to
Code:
case 7:
Sleep(1000);
// Verify that we selected an empty ingredient slot
if (this.common.ffxiService.updateData()) {
targetItem = this.common.ffxiService.getTargetItem();
if (targetItem.valid == false) {
this.syntherStage = 8;
} else {
this.common.updateStatus('Failed to find ingredient slot!');
this.syntherStage = -100;
}
} else {
this.common.updateStatus('ffxiService.updateData() failed!');
this.syntherStage = -100;
}
break;