I'm trying to get my character to repair at an NPC, sell all whites under 110 dura, and replenish healing herbs... but I can't even get passed step one. The repair and autosell was working before the newest patch, but I have had no success since. character goes to NPC, targets NPC, but the dialog window never opens, and character moves on to his return path without repairing or selling anything.
Merchant code;
Code: Select all
<!-- # 9 --><waypoint x="13148" z="6832">
player:target_NPC("Buruk Wright"); yrest(2000);
RoMScript("ChoiceOption(1)"); yrest(500);
RoMScript("ClickRepairAllButton()"); yrest(500);
RoMScript("CloseWindows()");
loadPaths("Ravenfellreturn");
</waypoint>
Autosell options
Code: Select all
<option name="INV_AUTOSELL_ENABLE" value="true" />
<option name="INV_AUTOSELL_FROMSLOT" value="19" />
<option name="INV_AUTOSELL_TOSLOT" value="42" />
<option name="INV_AUTOSELL_QUALITY" value="white" />
<option name="INV_AUTOSELL_NOSELL_DURA" value="110" />
I have it as player:target_NPC, because player:merchant was not working either. An interesting note, if I put the character in between waypoints 8 & 9, he DOES open a dialog window and repair. Still no selling though. Any help would be appreciated.