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

Checking character attribute in profile

gathel

New Member
Joined
Feb 14, 2015
Messages
26
Reaction score
0
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?
 
Almost right.

Code:
<WaitWhile Condition="Core.Player.CurrentGP &lt; 400" />
 
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