Way to check weight/items in container?

Mayhem

Journeyman
Is there a way to check a containers weight and/or the number of items it holds in a macro?
I know if I single click it shows the info, and that it can be done for a character (i.e. if weight >= maxweight), but I can't find any way to obtain/use that information in a macro for containers.

Anyone know if it's possible/how? Thanks!
 

TyroneG

Master
Not easily. You could theoretically click them and run a journal check for each of the stones.

Code:
createlist 'stones'
pushlist 'stones' ', 2 stones'
pushlist 'stones' ', 3 stones'
pushlist 'stones' ', 4 stones'
pushlist 'stones' ', 5 stones'
for 0 to 'stones'
  if @injournal 'stones[]' 'system'
    headmsg stones[]
    clearjournal
  endif
endfor
 
Top