Page 1 of 1

Monster targeting

Posted: Thu Sep 30, 2010 7:37 pm
by Franchi130
What would be the command for the bot to only farm 1 monster?

Fanks :D

Re: Monster targeting

Posted: Fri Oct 01, 2010 3:58 am
by Giram
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>

Re: Monster targeting

Posted: Fri Oct 01, 2010 1:55 pm
by Franchi130
Ah, didn't see that down there...Thanks a lot

Re: Monster targeting

Posted: Fri Oct 01, 2010 8:11 pm
by rock5
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>
Of course the down side to that is you have to change it again if you change waypoint files.

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>

Re: Monster targeting

Posted: Sat Oct 02, 2010 6:24 am
by Giram
I have allways changed mobs from profile when i use different waypoint. That will make things little easier.