Page 1 of 1

how to ignore unwanted mobs?

Posted: Wed Oct 12, 2011 7:14 am
by real
hi guys!

I need to know how do i ignore unwanted mobs been attacking from my character? he just attack anything around him XD

please help and thanks :)

Re: how to ignore unwanted mobs?

Posted: Wed Oct 12, 2011 7:25 am
by kanta
In your waypoint <onLoad> section add a line with something like this

Code: Select all

settings.profile.friends = {"Dark", "Copper", "Spirit", "Fierce"};
Partial names work. It will only attack mobs you list this way if they attack you first, otherwise it just ignores them.

Re: how to ignore unwanted mobs?

Posted: Wed Oct 12, 2011 7:44 am
by real
oh ok thanks to u i found something else and it work for me :)

Code: Select all

<mobs>
		<!-- names of mobs we want to attack 				-->
		<!-- if no names defined we will attack all mobs	-->
		<mob name="Inferno Guard Dog" />
		<mob name="" />
		<mob name="" />
	</mobs>
for now this is working and if it went wrong i will try urs :)

Thanks!
Problem solved.

Re: how to ignore unwanted mobs?

Posted: Wed Oct 12, 2011 8:00 am
by kanta
The line I gave is doing the same thing as what you found. The difference is that with my option you can leave the profile friends blank and set mobs you do not want to attack with each waypoint file. Keeps the profile cleaner and more manageable.

Re: how to ignore unwanted mobs?

Posted: Thu Oct 13, 2011 2:47 am
by real
kanta wrote:The line I gave is doing the same thing as what you found. The difference is that with my option you can leave the profile friends blank and set mobs you do not want to attack with each waypoint file. Keeps the profile cleaner and more manageable.
oki thx :)