pRO Valkyrie AutoChange Zeny to Voucher

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

Moderator: Moderators

jbauson
Human
Human
Posts: 20
Joined: 16 Apr 2008, 02:46

pRO Valkyrie AutoChange Zeny to Voucher

#1 Post by jbauson »

This could help AutoDeal Pub Sellers

Code: Select all

automacro moveTochangeVoucher {
	zeny > 1000000000
	call {
		do chat leave      <- added this line since I am expecting that your are using this for you Pub trader
		do deal no           <- you can remove this line if you want
		do conf lockMap prt_in
		do conf lockMap_x 42
		do conf lockMap_y 107
	}
	timeout 500
}

automacro changeVoucher {
	location prt_in 42 107
	zeny > 1000000000
	call {
		do talknpc 38 104 c c c c r1 c r1 c c c
	}
	timeout 5
}

automacro backToLockMap {
	location prt_in
	zeny < 1000000000
	call {
		do conf lockMap prontera                     <---- Change to your selling spot (simply instruct your bot to go back in his spot)
		do conf lockMap_x XX                          <----
		do conf lockMap_y XX                          <----
		do move prontera                               <----
	}
	timeout 500
}