Cancel sent message

Discussion in 'Plugin Development' started by RcExtract, May 17, 2017.

Thread Status:
Not open for further replies.
  1. Offline

    RcExtract

    Is it able to remove a message that is already sent? It used to be visible on the chat, but vanished when removal. (Not e.setCancelled(true))
     
  2. Offline

    timtower Administrator Administrator Moderator

    @RcExtract You send previous send messages again that are allowed to be shown.
    Assuming that you are talking about a delay of some sort.
     
  3. Offline

    MrGeneralQ

    I think he means like you got a list of already Sent messages, if there is a way to delete one of those sent messages

    Verstuurd vanaf mijn A0001 met Tapatalk
     
    RcExtract likes this.
  4. Offline

    RcExtract

    @timtower for example I typed "hi" and "bye" into the chat. Can I delete "hi" so it vanishes from the chat and only "bye" left? (Not preventing a message from being sent)

    Before removed:
    Bob: hi
    Gary: hi
    Bob: bye
    _______________________________________
    This is where you type words or cmds

    After removal:
    Bob: hi
    Gary: hi
    ________________________________________
    This is where u type words or cmds
     
  5. Offline

    timtower Administrator Administrator Moderator

    @RcExtract Yeah, we can't modify the text the client already received.
    We can resend everything though. (without the removed line at least)
     
  6. Offline

    Horsey

    Like @timtower said, you can't modify text the client already received, but you can add a delay so that you have time to send a command to delete lines before the client receives it.
     
  7. Offline

    timtower Administrator Administrator Moderator

    @Horsey That is not what I suggested though.
     
Thread Status:
Not open for further replies.

Share This Page