• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Order Bot profile problem

    Discussion in 'Rebornbuddy Support' started by BigBudda87, Mar 19, 2015.

    1. BigBudda87

      BigBudda87 Member

      Joined:
      May 5, 2012
      Messages:
      243
      Likes Received:
      0
      Trophy Points:
      16

      Attached Files:

    2. BigBudda87

      BigBudda87 Member

      Joined:
      May 5, 2012
      Messages:
      243
      Likes Received:
      0
      Trophy Points:
      16
      maybe i found my problem. i edit
      Code:
      <Grind grindRef="Sheeps" while="Core.Player.ClassLevel = 50" />
      to

      Code:
      <Grind grindRef="Sheeps" while="Core.Player.ClassLevel &lt; 51" />
      now it works
       
    3. Tinytox

      Tinytox Member

      Joined:
      Nov 5, 2014
      Messages:
      370
      Likes Received:
      7
      Trophy Points:
      18
      I had the same problem in the past.
      I'm really not 100% on the scripting, but in C++ for instance, the operator for "equal to" comparison two equal signs, (==), not a single equal sign, (=).
      I actually had the same problem, and am curious if this is the problem, but I actually wound up solving my problem the same way you did, except I used >49.

      And for a bit of background, typically = is assignment, aka "this variable is now assigned this value"
      if.. A=0, and B=5, then a statement like "A=B" would assign A the value of 5.

      Now I could be talking out my ass here, but I think the issue would be that

      "while="Core.Player.ClassLevel = 50"
      would be stating

      While: Assign players class level the value of 50

      Which of course, makes absolutely no sense when you write it out in psudocode.

      Of course, this is all hypothetical and I never tested it, but it makes sense in my eyes.
      Either way, glad you made it work!
       
      Last edited: Mar 20, 2015
      BigBudda87 likes this.

    Share This Page