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!

Checking character attribute in profile

gathel

New Member
Joined
Feb 14, 2015
Messages
26
Is there a way to check attributes in a profile, for example doing something like:
Code:
        <WaitWhile Condition="Character.CurrentGP &lt; 400" />

I thought about doing this in a <CodeChunk> but how would I obtain the current character, and is there a desired process for waiting for a condition other than polling?
 
I think you looking for this:
Code:
<WaitWhile Condition="Core.Player.CurrentGP &lt; 400" />

And Kaga beat me to it when I was typing it out XD
 
Back
Top