What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

theodds

Member
Joined
Nov 2, 2015
Messages
50
Hey is there a way to have the bot search out enemies while following points? a lot of wildstar is spaced out enough with enough clutter in the way that using hotspots gets the bot stuck frequently. I think that if I could get it to follow points around and search out enemies in a certain radius while following those points it might help with the stucking problems.
 
QH's KillTag has a similar version of this right now that I've been tweaking slowly:

<Kill Hotspot="True" Radius="50" X="" Y="" Z="" />

It's essentially a single point kill tag, but after it's done, it'll return to the middle point, then end the tag, so you can daisychain them like so:

HTML:
<While ... >
    <Kill ... />
    <Kill ... />
    <Kill ... />
    <Kill ... />
    <Kill ... />
</While>
 
QH's KillTag has a similar version of this right now that I've been tweaking slowly:

<Kill Hotspot="True" Radius="50" X="" Y="" Z="" />

It's essentially a single point kill tag, but after it's done, it'll return to the middle point, then end the tag, so you can daisychain them like so:

HTML:
<While ... >
    <Kill ... />
    <Kill ... />
    <Kill ... />
    <Kill ... />
    <Kill ... />
</While>


How would the profile look?

I tried to make a profile but im getting errors.
 
Try to make the last KillTag close to the first one if you want an actual looping profile route.

HTML:
<While Condition="GameManager.LocalPlayer.Level &lt; 1337">
    <Kill Hotspot='True' Radius='50' X='1234' Y='1234' Z='1234' />
    <Kill Hotspot='True' Radius='50' X='1234' Y='1234' Z='1234' />
    <Kill Hotspot='True' Radius='50' X='1234' Y='1234' Z='1234' />
    <Kill Hotspot='True' Radius='50' X='1234' Y='1234' Z='1234' />
    <Kill Hotspot='True' Radius='50' X='1234' Y='1234' Z='1234' />
    <Kill Hotspot='True' Radius='50' X='1234' Y='1234' Z='1234' />
</While>
 
This is not working. What have I messed up? :)
Code:
<Profile Name="hhhhh" Author="Daffy82" Version="1"> 
 
 <Kill Creature="63358, 63357, 23280, 54861, 19823, 23295, 54851, 54852, 54854" X="4024.211" Y="-980.8575" Z="-4669.637" />   
 
<While Condition="GameManager.LocalPlayer.Level &lt; 1337">
    <Kill Hotspot='True' Radius='50' X="4024.211" Y="-980.8575" Z="-4669.637"  />
    <Kill Hotspot='True' Radius='50' X="4151.457" Y="-1004.923" Z="-4829.428" />
    <Kill Hotspot='True' Radius='50' X="3998.599" Y="-1007.343" Z="-4966.34" />
    <Kill Hotspot='True' Radius='50' X="4227.182" Y="-976.0698" Z="-4666.813"  />
</While>
	
</Profile>
 
Last edited:
This is not working. What have I messed up? :)
Code:
<Profile Name="hhhhh" Author="Daffy82" Version="1"> 
 
 <Kill Creature="63358, 63357, 23280, 54861, 19823, 23295, 54851, 54852, 54854" X="4024.211" Y="-980.8575" Z="-4669.637" />   
 
<While Condition="GameManager.LocalPlayer.Level < 1337">
    <Kill Hotspot='True' Radius='50' X="4024.211" Y="-980.8575" Z="-4669.637"  />
    <Kill Hotspot='True' Radius='50' X="4151.457" Y="-1004.923" Z="-4829.428" />
    <Kill Hotspot='True' Radius='50' X="3998.599" Y="-1007.343" Z="-4966.34" />
    <Kill Hotspot='True' Radius='50' X="4227.182" Y="-976.0698" Z="-4666.813"  />
</While>
	
</Profile>

The top KillTag outside the WhileLoop will never exit unless a Quest/Objective, Condition, or Hotspot="True" is set.
 
Oh i see.
I am not at my gaming rig so I can't test. Would this be better:

Code:
<Profile Name="hhhhh" Author="Daffy82" Version="1"> 
 
<While Condition="GameManager.LocalPlayer.Level < 1337">

<Kill Creature="63358, 63357, 23280, 54861, 19823, 23295, 54851, 54852, 54854" X="4024.211" Y="-980.8575" Z="-4669.637" />   
    <Kill Hotspot='True' Radius='50' X="4024.211" Y="-980.8575" Z="-4669.637"  />
    <Kill Hotspot='True' Radius='50' X="4151.457" Y="-1004.923" Z="-4829.428" />
    <Kill Hotspot='True' Radius='50' X="3998.599" Y="-1007.343" Z="-4966.34" />
    <Kill Hotspot='True' Radius='50' X="4227.182" Y="-976.0698" Z="-4666.813"  />
</While>
	
</Profile>

Thanks for helping a newbie :)
 
Code:
<Profile Name="hhhhh" Author="Daffy82" Version="1"> 
 
    <While Condition="GameManager.LocalPlayer.Level < 1337">
        <Kill Hotspot='True' Creature="63358, 63357, 23280, 54861, 19823, 23295, 54851, 54852, 54854" Radius='50' X="4024.211" Y="-980.8575" Z="-4669.637"  />
        <Kill Hotspot='True' Creature="63358, 63357, 23280, 54861, 19823, 23295, 54851, 54852, 54854" Radius='50' X="4151.457" Y="-1004.923" Z="-4829.428" />
        <Kill Hotspot='True' Creature="63358, 63357, 23280, 54861, 19823, 23295, 54851, 54852, 54854" Radius='50' X="3998.599" Y="-1007.343" Z="-4966.34" />
        <Kill Hotspot='True' Creature="63358, 63357, 23280, 54861, 19823, 23295, 54851, 54852, 54854" Radius='50' X="4227.182" Y="-976.0698" Z="-4666.813"  />
    </While>
	
</Profile>

Rawr, didn't even read what I said! Try this! :P
 
Back
Top