I've been working on a way to try and make my prices in the consignment system are the same or lower than other peoples until a 'minimum' price is reached , Ive' got almost all of the code working fully now but I've hit a bit of a brick wall.
There doesn't seem a way to read the name of a seller of items so I can't calculate the % commission on my consignments by checking for my own character name.
(Some containers give a % reduction of commission)
The reason I need this is , if someone selling in the same city charges 77 silver for an item at 20% commission then I can sell it for 83 silver in a container at 10% and still be below their price.
The second problem is I can't seem to move forward in the paged list of sellers when I do a search for a particular item , so I can't check all the items for the cheapest price , only the first page of 8.
The above doesn't work as ${Vendor.TotalSearchPages} always returns a value of 1.
I'm hoping someone can think of a way around these if possible or point me in the right direction.
There doesn't seem a way to read the name of a seller of items so I can't calculate the % commission on my consignments by checking for my own character name.
(Some containers give a % reduction of commission)
The reason I need this is , if someone selling in the same city charges 77 silver for an item at 20% commission then I can sell it for 83 silver in a container at 10% and still be below their price.
The second problem is I can't seem to move forward in the paged list of sellers when I do a search for a particular item , so I can't check all the items for the cheapest price , only the first page of 8.
Code:
while "${CurrentPage:Inc}<=${Vendor.TotalSearchPages}"
I'm hoping someone can think of a way around these if possible or point me in the right direction.