Chat not showing in RustAdmin chatlogNot An Issue
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?
Tazcomso 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>.*) 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...
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.TazcomOk. So now i only added what you said
\[Better\sChat\]\s\[.*?\]\s(?<sender>.*?):\s(?<message>.*)but it still doesnt work...
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