WelcomeMessages

Moved

Total Downloads: 3,768 - First Release: Nov 19, 2016 - Last Update: Dec 25, 2017

5/5, 12 likes
  1. how do i add more?
     
  2. Wulf

    Wulf Community Admin

    It only supports one.
     
  3. ow okay! is there any plugin to add automatic messages?
     
  4. Wulf

    Wulf Community Admin

    AutoBroadcast plugin.
     
  5. only the first line of the welcome message is working and only the player connecting can see the message. I don't see the welcome message when other players join
     
  6. Check the overview to ensure that you are in line with multi-line examples.
     
  7. I actually copy and pasted your overview and just changed the wording. I even pasted your script into json validator and I keep getting errors on all your lines

    This is my current welcomemessage.json

    {
    "WaitIntervalInSeconds": 20
    }
    {
    "Welcome": "[#cyan]Welcome to the server {0}![/#]
    \n[#cyan]Type /remove to remove your wall[/#]
    \n[#cyan]No Decay except for Twigs[/#]"
    }
     
  8. Code:
    {
      "Welcome": "[#cyan]Welcome to 420Zone {0}![/#]
       [#cyan]Type /town to go to the shop/SAFE Zone[/#]
       \n[#cyan]Type /sethome "homename" to set your home[/#]
       \n[#cyan]Type /delhome "homename" to delete a home[/#]
       \n[#cyan]Type /home "HomeName" to tp home[/#]
       \n[#cyan]Type /tpr "PlayerName" to tp to a friend[/#]
       \n[#cyan]Type /tpa to accept an tp invite[/#]
       \n[#cyan]Type /tpc to cancel a tp [/#]
       \n[#cyan]Type /remove to remove a wall etc (30s)[/#]
       \n[#cyan]Type /kit to get your free starter kit[/#]
       \n[#cyan]Please No Door Camping or griefing[/#]
       \n[#cyan]Happy Playing[/#]"
    }
     
  9. Seems like you're confusing the config with lang. There are separate folders for each one of them and lang is the message handling one.
     
  10. Ok, I got the welcome message to work properly, but only the person joining the server can see the welcome message. When someone joins, I can't see the welcome message they get. I just want people to know when someone joins the server.
     
  11. I believe this ConnectMessages is what you are looking for. Please refer to previous pages for further support as others have asked the same thing multiple times.
     
  12. oh my god thank you!
     
  13. Only the player who connects sees the message where everyone on the server?
     
  14. That's correct
     
  15. so only the player who rejoins sees the message?
     
  16. That's correct
     
  17. The first time I ran this plugin it just gave out one line "Welcome to the server "player" !" instantly without delay.
    Then i went into cofig WelcomeMessages.json and changed it to:
    Code:
    {
      "WaitIntervalInSeconds": 50
      "Welcome": "[#cyan]Welcome to the server {0}![/#]
       \n[#cyan]Type /info to view in-game commands[/#]"
    }
    Saved the config file and reloaded the plugin using oxide.reload command. Logged out, logged in to the server and it was exactly the same message without the delay or multiple lines. Tried changing config to different settings/texts and every time it's the same thing for me, just that one line without the delay
     
    Last edited by a moderator: Mar 26, 2018
  18. Wulf

    Wulf Community Admin

    Don't put the changes you made on a separate line, leave them on the line that has the welcome message.
     
  19. The reason the messages aren't changing is because you copy/pasted the configurations that are supposed to be in the lang file, not config.
     
  20. Thanks now I know there is a Lang directory with configuration files :) I didn't spot it int the overview of the plugin before as I had no clue it existed, but thanks a lot that helped!