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
Scripts
Is there a way to get all the current items
Is there a way to get all the current items
1

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
item(0, "table") only returns all items which is on the ground.
item anyway. function printAllItemNames() 	for i=1,91 do 		if item(i,"exists") then 			print(item(i,"name")) 		end 	end end
Bowlinghead: You understood it just fine and I think your code looks like the only way to get it for now. Though that should be itemtypeinstead of
item. Thanks.
1
