help! config of a farmer party w/ support

Philippines

Moderators: waferbaron, Moderators

Forum rules
This server is currently not maintained and tables folder (including connection info) is outdated. Read the wiki for instructions on how to update those information. Please contribute your updated info. Contact Cozzie to join the team as a regular server supporter.
unfurled
Noob
Noob
Posts: 3
Joined: 20 Mar 2012, 03:42
Noob?: Yes

help! config of a farmer party w/ support

#1 Post by unfurled »

hi, can i ask how to make a support of my farmer in a party w/ one priest??? like my priest will juz stay in a map and sit and my farmers will juz come if they want buffs or heal... plss teach me how thx...

sorry for my bad english..hihi thx
good1
Human
Human
Posts: 24
Joined: 18 Jul 2012, 11:48
Noob?: No

Re: help! config of a farmer party w/ support

#2 Post by good1 »

you can use macros for your farmer like,

Code: Select all

automacro nobuff{
status not Blessing
exclusive 1
call {
do move <priest location>
}
}

automacro nohp{
hp < 10%
exclusive 1
call {
do move <priest location>
}
}
unfurled
Noob
Noob
Posts: 3
Joined: 20 Mar 2012, 03:42
Noob?: Yes

Re: help! config of a farmer party w/ support

#3 Post by unfurled »

thx po.. does anyone here have it as config??? ty sa sasagot..
good1
Human
Human
Posts: 24
Joined: 18 Jul 2012, 11:48
Noob?: No

Re: help! config of a farmer party w/ support

#4 Post by good1 »

you can alternatively use doCommand in your config

Code: Select all

doCommand move <priest location> {
	hp < 10%
	timeout 60
}

Code: Select all

doCommand move <priest location> {
	whenStatusInactive Blessing
	timeout 60
}