this automacro condition won't trigger again

All about the macro plugin can be found in this forum. This forum is intended for the macro plugin only.

Moderator: Moderators

tealeaf
Noob
Noob
Posts: 9
Joined: 24 Dec 2012, 23:28
Noob?: Yes

this automacro condition won't trigger again

#1 Post by tealeaf »

i m recently so annoyed by this macro, it doesn't trigger again after auto bought 100 blue gemstores.
is there anyone who could kindly help me to solve this problem? it would be very grateful!

Code: Select all

automacro move1 {
                  location yuno, yuno_in01
                  inventory "Blue Gemstone" = 100
                  run-once 1
                  exclusive 1
                  call {
                  do move yuno 14 126
}
}
automacro move2 {
                  location sch_gld
                  run-once 1
                  call {
                  do move sch_gld 137 92
                  pause 2
                  do talknpc 141 97 c r0
}
}
automacro move3 {
                 location schg_cas04 120 290
                 run-once 1
                 call {
                 do move schg_cas04 132 300
                 do talknpc 133 302 c r0 
}
}
automacro move4 {
                 location schg_cas04 275 244
                 run-once 1
                 call {
                 do move schg_cas04 280 385
                 pause 2
                 do talknpc 280 391 c r0 n
                 release all
                 stop
}
}


rocknroll
Been there done that!
Been there done that!
Posts: 118
Joined: 19 Sep 2011, 07:30
Noob?: Yes

Re: this automacro condition won't trigger again

#2 Post by rocknroll »

maybe this?

Code: Select all

automacro move1 {
 location yuno, yuno_in01
 inventory "Blue Gemstone" = 100
 run-once 1
 exclusive 1
 timeout 60
 call {
  do move yuno 14 126
  release move1
  }
}
Sorry, my english is very bad !