1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
if i_type < 66 or i_type > 68 and trigger == house_id then
	hc.event(trigger .. ' == ' .. house_id)
	hc.event('----------------------------')
	table.insert(p_items, i_type)
				
	parse('removeitem ' .. id)
end

I'm feeling very dumb even though it looks perfectly correct to me.
Edit: Never mind! I just needed to place brackets around the or statement like this:
1
if (i_type < 66 or i_type > 68) and trigger == house_id then
For a second there I started doubting math.
2 is equal to 1?
1 
Offline
this happened to me once, "100 == 100" was returning false.
Mami Tomoe