49 lines
617 B
Lua
49 lines
617 B
Lua
function disp()
|
|
|
|
|
|
for i = 0 , 28 do
|
|
|
|
if get_wear_item_handle( i ) > 0 then
|
|
text = sconv("@i : @s" , "@i" , i , "@s" , '@'.. get_item_name_id( get_item_code( get_wear_item_handle( i ) ) ) )
|
|
cprint( text )
|
|
else
|
|
text = i .. " : "
|
|
cprint( text )
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
function dispc(index)
|
|
|
|
|
|
for i = 0 , 28 do
|
|
|
|
if get_wear_item_handle_creature(index , i ) > 0 then
|
|
text = sconv("@i : @s" , "@i" , i , "@s" , '@'.. get_item_name_id( get_item_code( get_wear_item_handle_creature( index , i ) ) ) )
|
|
cprint( text )
|
|
else
|
|
text = i .. " : " .. get_wear_item_handle_creature( index , i )
|
|
cprint( text )
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|