09-08-2012, 06:42 AM
There's no way to convert item ID to item name yet. You could possibly use items.ini and store it backwards. Store the value names in a table while using the actual value (item id) as the index. So you'd get this
But instead of hardcoding 0 to air, you take it out of the items.ini file
Code:
local table = {}
table[0] = "air"
But instead of hardcoding 0 to air, you take it out of the items.ini file