What would be the best way to have multiple 'chat channels'?
I think i figured out the chat api commands but how best would I have say multiple channels like a channel for guild specific to, etc. ?
Replies (1)
Last message on 28 Apr 2016
Size43
(Administrator)
on
28 Apr 2016, 20:44:58
GameMaker Server supports 2 types of chats: team chat and global chat. (see
gms_chat_team_only_set).
If you want more, you'll have to filter the chat (for example, add [guildname] in front of every message, and then filter based on that).
Another way would be to use INIs or global variables to implement a custom chat yourself.