Own_group doesn't work (SOLVED)

How I can do that?

	if message_id == hash("collision_response", {own_group = hash("platform")}) then
		go.delete()
	end

The hash()function only takes one argument.
You need to compare with the contents of the message table:

if message_id = hash("collision_response") and message.own_group == hash("platform") then
    ...
end
4 Likes

Thank You)))

2 Likes