Farmer AutoDeal to Master

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

Farmer AutoDeal to Master

#1 Post by jbauson »

I just want to share this simple macro. This will simply go back to town and deal the item farmed to another player/bot.
Make sure that dealAuto is set to 2 for farmer.
Feel free to use and update it.

Code: Select all

automacro moveToMaster {
	location not geffen          <- change this to the map where your receiver is parked
	weight > 46%
	call {
		do conf lockMap geffen               <- change this to the map where your receiver is parked
		do conf lockMap_x 120                <// change this to the map where your receiver is near
		do conf lockMap_y 60                 <\\ 
		do move geffen                          <- change this to the map where your receiver is parked
	}
	run-once 1
}

automacro dealToMaster {
	location geffen 120 60 <---- change to your updated location above where you have to stand and deal the receiver
	weight > 46%
	call {
		do deal @player(#PLAYER NAME#)           <---- Change to your receiver's name and make sure that dealAuto is set to 2
		pause 2
		do deal add @inventory(Stem)
		pause 1
		do deal
		pause 1
		do deal
	}
	run-once 1
}

automacro moveToFild {
	console /Deal Complete/i
	call {
		do conf lockMap gef_fild04            <- change this where your bot farm
		do conf lockMap_x none
		do conf lockMap_y none
		do move gef_fild04                       <- change this where your bot farm
		do reload mac
	}
}