Forum › Forums › Discussion › How to change quantity?
This topic contains 4 replies, has 3 voices, and was last updated by FTAC_14 6 years, 8 months ago.
-
AuthorPosts
-
February 25, 2018 at 5:22 pm #6488
Hey all. I am trying to automate spending of red gather scripts. So I walk to the NPC and confirm, use the navigate to get to the item I want, but I can’t for the life of me figure out how to change the quantity. What I want to do is spend all my available red scripts on High Cordials. So I “thought” I would just select the number and hit the NUM2 key to cycle down to max it out. But when I do that, it does not select the quantity box. I hit confirm before, and it just blips. I can do this manually with no issue but when I try to automate, nothing I try works.
Anyone know how to get this to work? Thanks!
February 25, 2018 at 5:51 pm #6489February 25, 2018 at 6:50 pm #6490Yeah i’ve tried this before, too, when i changed the red scrip farming scenario to automatically buy tokens.
Doing it by hand via keyboard works perfectly, you can select the quantity box and adjust the amount with up/down. However, when Miqobot does the same keypresses via scenario engine, the quantity field gets “activated” for just a fraction of a second (it “blips”, as you said) and then all the following up/down key presses select different items instead.
I’ve tried many different things for a long time, inserted key press delays here and there, and watched the scenario execution like a hawk, but found no way to make it work, around the “blip”.Eventually, i just used the workaround in buying it single however many times i needed. So one scenario chapter to select the right item (red tokens in this case) looks like this:
sendKey(f12, 1) // target NPC
sendKey(NUM0, 0.5)
sendKey(NUM2, 0.2)
sendKey(NUM2, 0.2)
sendKey(NUM2, 0.2)
sendKey(NUM2, 0.2)
sendKey(NUM2, 0.2)
sendKey(NUM2, 0.2)
sendKey(NUM2, 0.2)
sendKey(NUM0, 0.5)sendKey(NUM9, 0.5)
sendKey(NUM9, 0.5)
sendKey(NUM9, 0.5)This puts the cursor on red tokens. Then the next chapter buys them however many times i want:
sendKey(NUM0)
sendKey(NUM4)
sendKey(NUM0,1)
repeatChapter(15)It’s a stupid workaround but it mostly works. I had to put a 1 second delay on the buy confirmation, cause i ended up having trouble with lower values and some lag, messing up the whole buying scenario.
Still would be nice to eventaully be able to properly use the quantity field to buy items in bulk, though.
February 25, 2018 at 9:40 pm #6491February 25, 2018 at 10:25 pm #6492 -
AuthorPosts
You must be logged in to reply to this topic.