Page 1 of 1

change friends on load?

Posted: Sat Mar 03, 2012 9:11 am
by Golbez

Code: Select all

<friends>
      <!-- names of friends we help fighting or enemys we don't want to attack -->
      <!-- for umlauts use \129 (ue),\132 (ae),\148 (oe) e.g. K\132fer         -->
      <friend name="Elite_Mob_Name1" />
      <friend name="Elite_Mob_Name2" />
   </friends>
hi i was wondering if there is a way to change this when i load my waypoints. i wants to make it so my bot doesnt always attack certain mobs because its just wasting time at this point. :P

Re: change friends on load?

Posted: Sat Mar 03, 2012 10:32 am
by rock5
I usually just create the mobs list for that waypoint file eg.

Code: Select all

settings.profile.mobs = {"Wheezer","Lakoso"}
Lisa has posted a function to add and remove mobs but I never saw the need. Do a search for it if that's what you want.

Re: change friends on load?

Posted: Sat Mar 03, 2012 10:41 am
by Golbez
rock5 wrote:I usually just create the mobs list for that waypoint file eg.

Code: Select all

settings.profile.mobs = {"Wheezer","Lakoso"}
Lisa has posted a function to add and remove mobs but I never saw the need. Do a search for it if that's what you want.
ty

edit: this is for a list of mobs to kill right?

Re: change friends on load?

Posted: Sat Mar 03, 2012 11:35 am
by rock5
Golbez wrote:edit: this is for a list of mobs to kill right?
Yes, Only attacks those mobs.

Re: change friends on load?

Posted: Sat Mar 03, 2012 11:55 am
by Golbez
rock5 wrote:
Golbez wrote:edit: this is for a list of mobs to kill right?
Yes, Only attacks those mobs.

settings.profile.friends= {"Ray","Gabe"} <--- friend names?

Re: change friends on load?

Posted: Sat Mar 03, 2012 12:52 pm
by rock5
Golbez wrote:settings.profile.friends= {"Ray","Gabe"} <--- friend names?
Yeah. If you just want it not to attack certain mobs then you can add them to the frinds list instead.

Re: change friends on load?

Posted: Sat Mar 03, 2012 8:53 pm
by Golbez
rock5 wrote:
Golbez wrote:settings.profile.friends= {"Ray","Gabe"} <--- friend names?
Yeah. If you just want it not to attack certain mobs then you can add them to the frinds list instead.

cool ty