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!

Contracts

That is funny, I am having the same and What I do is to change the While as follows:

<While Condition="GameManager.CurrentWorldId == 1061 and not DistanceTo(1698.763, -954.8469, 4051.929) > 2000">

Something you guys must do in order to get < work... :D
 
That is funny, I am having the same and What I do is to change the While as follows:

<While Condition="GameManager.CurrentWorldId == 1061 and not DistanceTo(1698.763, -954.8469, 4051.929) > 2000">

Something you guys must do in order to get < work... :D

That fixed it!
That's really strange.

<While Condition="GameManager.CurrentWorldId == 1061 and not DistanceTo(1698.763, -954.8469, 4051.929) > 2000">
works

<While Condition="GameManager.CurrentWorldId == 1061 and DistanceTo(1698.763, -954.8469, 4051.929) < 2000">
does not work

<While Condition="GameManager.CurrentWorldId == 1061 && not DistanceTo(1698.763, -954.8469, 4051.929) > 2000">
does not work

<While Condition="GameManager.CurrentWorldId == 1061 && DistanceTo(1698.763, -954.8469, 4051.929) < 2000">
does not work
 
I have never been able to get
Code:
 <If Condition = "x [B]&&[/B] x">
to work. I'm still unclear on how this language fully works - XML, Python, save as .cs? but I'm pretty sure python uses the logical operators and or rather than && | ||
 
Oh wow, I must have been on the eggnog myself and forgot about all the important stuff, you'd need to escape the <'s and >'s to make it work!

You are correct about and's instead of &&'s as well!

Try:

<While Condition="GameManager.CurrentWorldId == 1061 and DistanceTo(1698.763, -954.8469, 4051.929) &lt; 2000">
 
so finaly, does profice for repitable contracts exist ?
or developing for Wildbuddy stopped ?
 
I got sidetracked with perfecting an expedition profile. I'll probably pick this up again at some point, but expeditions became more profitable. Pretty much everything you need to create your own contract profile is in this thread however.
 
Remember folks, the profiles are XML. You will have to escape certain characters within attributes and element values.

Code:
&& becomes &amp;&amp;
Code:
> becomes &gt;
Code:
< becomes &lt;

Etc. Just google for XML escape characters.
 
Back
Top