e.g.
1
timer(1000,"parse","killobject -all objects type 23-
please help.
Scripts
killobject
killobject
1

timer(1000,"parse","killobject -all objects type 23-
Casper-: Object type 23 are blue portals, so all of those.function killallobject(t)
	t = tonumber(t)
	for _, i in pairs(object(0,"table")) do
		if object(i,"type") == t then
			parse("killobject "..i)
		end
	end
end
timer(1000,"killallobject","23")
1
