Page 1 of 1

Function for item details?

Posted: Tue Sep 27, 2016 10:43 am
by Buh
Hey

Is there a function or a way to get, for example, the stat name on a mana stone in my bagpack?
Just details of an item?

Greetings

Re: Function for item details?

Posted: Fri Oct 07, 2016 11:10 am
by kenzu38
I don't think someone has written a function for this but you can easily get it with something like this:

Code: Select all

local item = inventory.BagSlot[bagslotnumber]	-- just provide the bag slot
item:update()
table.print(item.Stats)
It should print all the stats of the item in the bag slot you specified.