Maybe something like
itemtype(0, "table"). I haven't tried this though, well it is not documented on the website. I don't mean the items on the ground by the way, more like the item types, all these: http://www.cs2d.com/weapons.php
itemtype(0, "table"). I haven't tried this though, well it is not documented on the website. I don't mean the items on the ground by the way, more like the item types, all these: http://www.cs2d.com/weapons.php
function printAllItemNames() 	for i=1,91 do 		if item(i,"exists") then 			print(item(i,"name")) 		end 	end end
itemtypeinstead of
item. Thanks.