Here I want to ask a question with a loop command.
When I make auto-quests robot, I have set a trigger to catch what quests can be bought in hockshop.
such as:
"$N对$n说道:正好正好,妾身占签得知$w现急需$o。\
"$N对$n点头说道:相公刚说了,让妾身征集什么",
"$N想了一下,对$n说道:老夫听说军务处想要 blah blah
I catched 3 variables : Q_give,Q_armor,Q_weapon
and judged them as buyable with my DB.
Then I use #ADDITEM to creat a variable @Q_buy={@Q_give|@Q_armor|@Q_weapon}
such as {大板斧|金环锁子甲|青锋剑}
Then I go to the hockshop to buy them.
#FORALL @Q_buy {buy %i}
#TRIGGER {你从当铺买到了一*} {#DELITEM @Q_buy %1}
However, you know, buy something from hockshop make a little busy, that I can not buy 3 things in one time.
How can I insert the #wa 2000 into the loop? or use other command, then what?
Waiting for your kindly suggestion.Thank you all.