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!

Paratax

New Member
Joined
Nov 29, 2012
Messages
28
Hey,

I am trying to use the FreeItemSlots to check my available inventory space. But no matter how I try it, it seems either there is no value returned or it is smaller than all numbers I entered. Any hint how to get the correct amount of free space in my inventory?

Code:
<If Condition="FreeItemSlots &lt; 2">
    <LogMessage Message="Less than 2" />
</If>
 
Hey,

I am trying to use the FreeItemSlots to check my available inventory space. But no matter how I try it, it seems either there is no value returned or it is smaller than all numbers I entered. Any hint how to get the correct amount of free space in my inventory?

Code:
<If Condition="FreeItemSlots &lt; 2">
    <LogMessage Message="Less than 2" />
</If>

Try

Code:
<If Condition="FreeItemSlots() &lt; 2">
    <LogMessage Message="Less than 2" />
</If>
 
Back
Top