How to detect if player have special armor?
Deleted UserHow do I detect if player have equipped special armor like super armor, heavy armor ... ETC
iids = playerweapons(id) function table.contains(table, e1, e2, e3, e4, e5, e6, e7, e8, e9) 	for _, value in pairs(table) do 		if value == e1 or value == e2 or value == e3... then 			return true 		end 	end 	return false end if table.contains(iids, IDS, OF, ARMOR, HERE) then 	-- Code end
if player(id,"armor")==206 then