1. As you can see they changed the whole chat system so yea...
    I'll look into it when i got the time, not sure when that will be tough.
     
  2. Domestos updated Chat Handler with a new update entry:

    Rust update

     
  3. Hey Domestos,
    Seems the avatars are missing and when you press enter to bring up chat then enter again with no words it posts in chat.
     
  4. If i remember correctly the thing with posting nothing in chat when just hitting enter twice is a rust issue that also happens without plugins. Correct me if im wrong.
    For the avatar part, i dont think Oxide has any influence on them. Have you tested it without any chat plugins?
     
  5. Wulf

    Wulf Community Admin

    Avatars missing and only showing question marks is a Rust bug I believe, but not 100% certain. I believe we noticed it the other day running vanilla.
     
  6. Hmm If i remove the plugin, avatars come back (with the plugin it shows the rust symbol) and with chat if the plugins removed and enter is pushed with blank text it doesn't show up. I think rust fixed it a few updates ago.
     
  7. Fix for the empty messages will be in the next version. Im currently waiting to see if i can do something regarding the avatars. Seems to be an issue with the rust.BroadcastChat() function from Oxide.
     
  8. as informed above, avatars missing + empty messages also below errors as well;
    Code:
    [Oxide] 9:08 PM [Debug]  at System.IO.FileStream..ctor (System.String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean anonymous, FileOptions options) [0x00000] in <filename unknown>:0
      at System.IO.FileStream..ctor (System.String path, FileMode mode, FileAccess access, FileShare share) [0x00000] in <filename unknown>:0
      at (wrapper remoting-invoke-with-check) System.IO.FileStream:.ctor (string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
      at System.IO.File.OpenRead (System.String path) [0x00000] in <filename unknown>:0
      at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, Boolean detectEncodingFromByteOrderMarks, Int32 bufferSize) [0x00000] in <filename unknown>:0
      at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding) [0x00000] in <filename unknown>:0
      at (wrapper remoting-invoke-with-check) System.IO.StreamReader:.ctor (string,System.Text.Encoding)
      at System.IO.File.ReadAllText (System.String path, System.Text.Encoding encoding) [0x00000] in <filename unknown>:0
      at System.IO.File.ReadAllText (Sys
     
  9. Any chance you could make this check to see if the message contents=Nil and drop it before it gets picked up by the Anti Spam and drop it before it gets displayed in chat?

    Great plugin BTW, thanks
     
  10. chat history isnt working anymore for some reason even in latest update and since i put plugin on everytime get stuck in the chat box and click or enter oout of it it shows up in chat as blank message
    [DOUBLEPOST=1422759316][/DOUBLEPOST]i had to remove the plugin it causes blank messages to spam each time someone pushes enter off the chat with nothing in it etc and is causing few problems
     
  11. Domestos updated Chat Handler with a new update entry:

    empty messages fix

     
  12. Thanks for fix empty messages but avatars still missing. for me avatars not important but server and player messages same color

    can you fix it as well?
     
  13. Hi, Awesome Plugin!!

    as I can change my color chat, all have the same color.
    want different color admin.
     
  14. The orange color is forced by Oxide.
     
  15. Domestos updated Chat Handler with a new update entry:

    avatars and colors

     
  16. Great job! /admin does not make any effect :p
     
  17. how do you change the color what is this #af5? do i just put blue in that spot if i want it blue? or like a number code?
     
  18. Wulf

    Wulf Community Admin

    Yeah, we set the steamid as 0, so we'd need to either pull in the steamid or handle it another way. Perhaps if steamid = null, then use 0.
     
  19. Same here.

    Here is missing second argument:
    Code:
    …
    Line 42: function PLUGIN:BroadcastChat(player, msg)
    …
    Line 687:     self:BroadcastChat(player, msg)
    …
    Change it to:
    Code:
    …
    Line 42: function PLUGIN:BroadcastChat(player, name, msg)
    …
    Line 687:     self:BroadcastChat(player, name, msg)
    …
    Also player.displayName (line 48) has to be replaced to name.
     
    Last edited by a moderator: Feb 1, 2015