termoose / irccloud

Text-mode terminal client for IRCCloud
MIT License
39 stars 3 forks source link

Show operator/voice status in channel member list #6

Open termoose opened 4 years ago

termoose commented 4 years ago

With support for the following

Already have (unused) function UserModeString for converting IRCCloud API responses to correct prefixes

c99koder commented 4 years ago

The isupport_params event gives you the PREFIX configuration for each connection which tells you which symbols to display for each mode.

The defaults we use when PREFIX isn't set is:

Note that some networks use Y for Owner instead of Oper, on these networks there is a parameter in the isupport parameters called "OWNER" that should contain the correct mode letter. You can also check the usermodes attribute on the isupport_params event for a list of all the valid modes on the network.

termoose commented 4 years ago

Oh that's much better, thanks for letting me know!