Blacksmith Maximize Power Config

Forum closed. Read only permissions.

Moderator: Moderators

Message
Author
Doolittle
Noob
Noob
Posts: 3
Joined: 02 Dec 2008, 15:39
Noob?: No

Blacksmith Maximize Power Config

#1 Post by Doolittle »

Hey fellow botters,
I see some people are using sp < and > to control their Blacksmith Power Maximize.

Here's the code I use to enable it when attacking specific monsters, and then disable when there are no more monsters attacking you or the party.

Code: Select all

useSelf_skill BS_MAXIMIZE {
	whenStatusInActive EFST_MAXIMIZE
	onAction attack
	monster 			#NAME your Monster or it'll togggle with each new monster
	timeout 10			#increase this if your bot takes longer then X sec to kill 1 target monster
}
useSelf_skill BS_MAXIMIZE {
	onAction route
	whenStatusActive EFST_MAXIMIZE
	aggressives 0
	party_aggressives 0
}

Locked