Chat not showing in RustAdmin chatlogNot An Issue
RustAdmin Chatlog doenst work after i install this plugin can someone help?
i cant read what people write on my server in the server chatlog console
RustAdmin has a regex filter to customize what output it grabs; you'd need to change this (there are existing threads on the regex format) for it to show the chat, but the chat is indeed logged.

so i changed the chat regex to this like in the example shown:

^\[Oxide\]\s[0-9]{1,2}:[0-9]{1,2}\s((A|P)M\s)?\[.*?\]\s\[Better\sChat\]\s\[.*?\]\s(?<sender>.*?):\s(?<message>.*)

but it doesnt work still. the chat tab is still empty. anyone knows why?

Tazcom

so i changed the chat regex to this like in the example shown:

^\[Oxide\]\s[0-9]{1,2}:[0-9]{1,2}\s((A|P)M\s)?\[.*?\]\s\[Better\sChat\]\s\[.*?\]\s(?<sender>.*?):\s(?<message>.*)

but it doesnt work still. the chat tab is still empty. anyone knows why?

The majority of that wouldn't exist, which is why it doesn't work.

\[Better\sChat\]\s\[.*?\]\s(?<sender>.*?):\s(?<message>.*)
5c2d88ae4ea06.jpg Wulf

The majority of that wouldn't exist, which is why it doesn't work.

\[Better\sChat\]\s\[.*?\]\s(?<sender>.*?):\s(?<message>.*)

Ok. So now i only added what you said

\[Better\sChat\]\s\[.*?\]\s(?<sender>.*?):\s(?<message>.*)

but it still doesnt work... 

Tazcom

Ok. So now i only added what you said

\[Better\sChat\]\s\[.*?\]\s(?<sender>.*?):\s(?<message>.*)

but it still doesnt work... 

I don't know what the current format is, but you can view the logs to see and use a site such as regexpal.com to test and tweak.
5c2d88ae4ea06.jpg Wulf
I don't know what the current format is, but you can view the logs to see and use a site such as regexpal.com to test and tweak.

ok nice i did some research and testing and 

^\[Better\sChat\]\s(?<sender>.*?):\s(?<message>.*)

works for me now! :) many thanks
/solved

Locked automatically