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

Paratax

New Member
Joined
Nov 29, 2012
Messages
28
Reaction score
1
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