Fanks
Monster targeting
-
Franchi130
- Posts: 2
- Joined: Thu Sep 30, 2010 7:34 pm
Monster targeting
What would be the command for the bot to only farm 1 monster?
Fanks
Fanks
Re: Monster targeting
On your character profile there is option to set what monsters you are targeting. If there is nothing then it will target every enemy that is on level range. Just replace that red part with the name of the monster you want to target.
<mobs>
<!-- names of mobs we want to attack -->
<!-- if no names defined we will attack all mobs -->
<mob name="Monster name here" />
</mobs>
<mobs>
<!-- names of mobs we want to attack -->
<!-- if no names defined we will attack all mobs -->
<mob name="Monster name here" />
</mobs>
-
Franchi130
- Posts: 2
- Joined: Thu Sep 30, 2010 7:34 pm
Re: Monster targeting
Ah, didn't see that down there...Thanks a lot
Re: Monster targeting
Of course the down side to that is you have to change it again if you change waypoint files.Giram wrote:On your character profile there is option to set what monsters you are targeting. If there is nothing then it will target every enemy that is on level range. Just replace that red part with the name of the monster you want to target.
<mobs>
<!-- names of mobs we want to attack -->
<!-- if no names defined we will attack all mobs -->
<mob name="Monster name here" />
</mobs>
On the other hand you can set the mob names specific for that waypoint file in it's onLoad section, like this;
Code: Select all
<onLoad>
settings.profile.mobs = {"Wolf","Bear"}
</onLoad>- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Monster targeting
I have allways changed mobs from profile when i use different waypoint. That will make things little easier.