I am working on something with the custom javascript code in the advanced character chat that relies on activating when another function in that same code block pushes a message to the thread with thread.messages.push, and I have tried the MessageAdded event, but it isn’t working for some reason. What should I be doing instead? (And yes, I have verified that it just isn’t detecting it, rather than being a separate issue).

  • Maidens_Against_ZeusOP
    link
    fedilink
    English
    arrow-up
    1
    ·
    15 days ago

    Because I am still figuring things out, since I am VERY new to javascript. With my current understanding of things, the way I am doing it is the only way I can wrap my brain around.

    • Adventurous_Step2911
      link
      fedilink
      English
      arrow-up
      1
      ·
      15 days ago

      That’s fine, try something like this:

      thread.messages.push(message);
      yourCustomFunction(message);
      

      Let me know if this is what you want or not, or send me your code