• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Checking character attribute in profile

    Discussion in 'Community Developer Forum' started by gathel, Feb 23, 2015.

    1. gathel

      gathel New Member

      Joined:
      Feb 14, 2015
      Messages:
      26
      Likes Received:
      0
      Trophy Points:
      1
      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?
       
    2. kagamihiiragi17

      kagamihiiragi17 Community Developer

      Joined:
      Jun 24, 2014
      Messages:
      873
      Likes Received:
      25
      Trophy Points:
      0
      Almost right.

      Code:
      <WaitWhile Condition="Core.Player.CurrentGP &lt; 400" />
       
    3. kagepande

      kagepande Community Developer

      Joined:
      Oct 20, 2014
      Messages:
      289
      Likes Received:
      11
      Trophy Points:
      18
      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
       
    4. gathel

      gathel New Member

      Joined:
      Feb 14, 2015
      Messages:
      26
      Likes Received:
      0
      Trophy Points:
      1
      Worked perfectly, thanks guys.
       

    Share This Page