Hooks:PostHook(ChatManager, "_receive_message", "sentient_world", function(self, channel_id, name, message, color, icon, ...)
if (string.upper(message) == "HELLO WORLD") and managers.hud then
managers.hud:show_hint({
text = "hi",
time = 3
})
end
end)
so, its just a message popper?
49 881
We Use Cookies 🍪We use cookies to improve your user experience. Will you allow us to store them?
Hooks:PostHook(ChatManager, "_receive_message", "sentient_world", function(self, channel_id, name, message, color, icon, ...)
if (string.upper(message) == "HELLO WORLD") and managers.hud then
managers.hud:show_hint({
text = "hi",
time = 3
})
end
end)
so, its just a message popper?