How I can do that?
if message_id == hash("collision_response", {own_group = hash("platform")}) then
go.delete()
end
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
Thank You)))