Rogues(Slaves) deal to Merchant (Main Trade)

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

Moderator: Moderators

surviveryuga
Human
Human
Posts: 30
Joined: 19 Dec 2012, 12:57
Noob?: No

Rogues(Slaves) deal to Merchant (Main Trade)

#1 Post by surviveryuga »

This is work when rogue has weight more than 49% and he'll go back to prontera 123 456 to start a deal

Code: Select all


automacro farming {
weight > 49%
run-once 1
exclusive 1
call {
do ai manual
do move prontera 123 456
}
}



But this one seems not work.. Anyone know what i should do? Honestly, i'm a beginner user for macro.

Code: Select all

automacro deal {
location prontera 123 456
call {
do deal @player(mycharname)
do deal add @inventory(itemname)
pause 1
do deal add @inventory(itemname)
pause 1
do deal
pause 3
do deal
do ai auto
}
}
hukiju
Noob
Noob
Posts: 2
Joined: 19 Jun 2013, 08:45
Noob?: No

Re: Rogues(Slaves) deal to Merchant (Main Trade)

#2 Post by hukiju »

Code: Select all

automacro deal {
location prontera 123 456
call {
do deal @player(mycharname)
********************************pause 5
do deal add @inventory(itemname)
pause 1
do deal add @inventory(itemname)
pause 1
do deal
pause 3
do deal
do ai auto
}
}
Hi, I think you need to add a pause to wait the player to respond.

-Ian