1. hello Skinn,

    dont now what the problem is whit notifier but cant get it to work this time.
    it always go to the defauld settings. i'm running the latest version off notifier and we change the config but refuse to read it.

    it whas working fine before the update from rust. and realy we test everting. removed the plugin offline whit all configs
    and reinstalde and only change 1 rule in the rules just for testing and the collor from the admins ...
    nothing seems to work only go to defauld settings. and yes we did the oxide.reload notifier always after changing the config.

    i now how to use it i'm working whit this plugin for months.
    i dont need to upload the file because we are using the latest version "08 "Notifier" (2.18.4) by SkinN (3.44s)"

    this is the generated standart config we get now from the plugin

    Code:
    {
      "Colors": {
        "Admin": "silver",
        "Adverts": "silver",
        "Join": "silver",
        "Leave": "silver",
        "MOTD": "yellow",
        "Player": "lime",
        "Rules": "yellow",
        "Title": "silver",
        "Welcome": "lime"
      },
      "Messages": {
        "Adminlist Chat": "<color=red>Online Admins: </color>{admins}",
        "Adverts": [
          "Thanks for playing on this server.",
          "Type /info to see information about the server.",
          "There are currently {playercount} players online."
        ],
        "Join": "{player} joined the server. ({country})",
        "Leave": "{player} left the server. (Reason: {reason})",
        "MOTD": "Message of the day has not been set up yet.",
        "Playerlist Chat": "<color=lime>Online Players: </color>{players}\n<color=lime>*Hit F1 to see the playerlist in the console*</color>",
        "Playerlist Console": [
          "<size=20><color=lime>Online Players: </color></size><size=15>",
          "----------------------------------------------------",
          "{players}",
          "----------------------------------------------------\n</size>"
        ],
        "Rules": [
          "Rules:",
          "1. Test rule",
          "2. Don't abuse bugs/glitches",
          "3. Don't cheat/hack"
        ],
        "Welcome": [
          "Welcome <color=lime>{player}</color> to the server."
        ]
      },
      "Settings": {
        "Adverts Timer": 5.0,
        "Enable Adminlist": true,
        "Enable Adverts": true,
        "Enable Custom Admincolor": false,
        "Enable Custom Playercolor": false,
        "Enable Join Message": true,
        "Enable Leave Message": true,
        "Enable MOTD": true,
        "Enable Playerlist": true,
        "Enable Pluginlist": true,
        "Enable Rules": true,
        "Enable Welcome Message": false,
        "MOTD Timer": 15.0,
        "Title": "[<color=blue> Info </color>] "
      }
    }
    grtz
     
  2. hi , i tried making admins name red when they leave or join , i put <red> but the colour is still green? i reloaded it
     
  3. That surely isnt the default configuration file, you may check the default config in the plugin overview and copy it if thats the case.
     
  4. hello, all the time when i try change " Welcome Message" color and content
    I have this error. Check my config (its 90% default ) and fix it please. I dont know what to do.
     

    Attached Files:

  5. remove the , from these two lines
    "Respect the server <orange>/rules<end>.",
    "<orange><size=20>•</size><end> Everyone: <lightgreen>Admin<end>",

    So looks like
    "Respect the server <orange>/rules<end>."
    "<orange><size=20>•</size><end> Everyone: <lightgreen>Admin<end>"
     
  6. Did not help
    Post updated
     

    Attached Files:

    Last edited by a moderator: Mar 9, 2016
  7. That is completely wrong , read the usage notes in the plugin overview. Besides the error is due to a mistake in the text colors.
    [DOUBLEPOST=1457563607][/DOUBLEPOST]
    You were missing 2 <end> tags in the second and third lines of Welcome Messages.
     

    Attached Files:

  8. Check the version I fixed here JSONLint - The JSON Validator. you will find it has no errors and in the json you uploaded you already put the two fixes in that I posted

    And the fix you done is not the same as the default your end tag is in the wrong place
    Code:
    },
      "WELCOME MESSAGE": [
        "<size=17>Welcome <lime>{username}<end></size>",
        "<orange><size=20>•</size><end> Type <orange>/help<end> for all available commands.",
        "<orange><size=20>•</size><end> Check our server <orange>/rules<end>.",
        "<orange><size=20>•</size><end> See where you are on the server map at: <lime>http://{server.ip}:{server.port}<end>"
      ]
    }
    default
     

    Attached Files:

    Last edited by a moderator: Mar 10, 2016
  9. Removing commas from a list in JSON won't throw errors indeed, nor in jsonlint.com nor on the server console, although, if you try to run your fix then, you'll see you'll have parsing issues, you can never remove commas from lists in JSON, otherwise instead spliting the strings into different lines it will merge the lines into one, i.e:

    Wrong JSON, without commas:
    Code:
    [
        "Line 1"
        "Line 2"
    ]
    
    Output:
    Code:
    Line 1Line 2
    Correct JSON, with commas:
    Code:
    [
        "Line 1",
        "Line 2"
    ]
    
    Output:
    Code:
    Line 1
    Line 2
    And no, my fix is totally fine, you can put the <end> tags wherever you want the color to end, check Notifer's F.A.Q as there is a full example of the Simple Format System, even though its updated for the next C# version it works exacly the same way.
     
    Last edited by a moderator: Mar 10, 2016
  10. I posted the fix from his uploaded file late last night so the mistake in the file was his I only copied his work yes I should of checked it closer but was tried and went to bed not long after it. So I did check it closer today and uploaded the correct fix above.
     
  11. Plugin Notifier work but it commands /online,players /admins /motd didn't work
    any idea why?

    this is my setting in notifier
    Code:
    {
      "ADVERTS": [
        "Chcesz zobaczyć dostępne komendy? wpisz <orange>/help<end>.",
        "Odwiedz naszą grupe na Steam <orange>TRust.pl<end>.",
        "<red>Oszustwa będą karane.<end>",
        "Type <orange>/map<end> for the server map link.",
        "You are playing on: <lime>{server.hostname}<end>",
        "<orange>Players Online: <lime>{players}<end> / <lime>{server.maxplayers}<end> Sleepers: <lime>{sleepers}<end><end>",
        "Chcesz kupić vipa? <lime> Skontaktuj się z adminem.<end>",
        "The server time and date is <lime>{localdate} {localtime}<end>"
      ],
      "COLORS": {
        "ADVERTS": "silver",
        "BOARDS TITLE": "silver",
        "JOIN MESSAGE": "silver",
        "LEAVE MESSAGE": "silver",
        "MOTD": "silver",
        "PREFIX": "#00EEEE",
        "SCHEDULED MESSAGES": "silver",
        "SYSTEM": "white",
        "WELCOME MESSAGE": "silver"
      },
      "COMMANDS": {
        "ADMINS LIST": "admins",
        "ADVERTS COMMAND": "adverts",
        "MAP LINK": "map",
        "MOTD": "motd",
        "PLAYERS LIST": "players",
        "PLAYERS ONLINE": "online",
        "PLUGINS LIST": "plugins",
        "RULES": [
          "rules",
          "regras",
          "regles"
        ]
      },
      "MESSAGES": {
        "ADMINS JOIN MESSAGE": "<#ADFF64>{username}<end> joined the server, from <orange>{country}<end>.",
        "ADMINS LEAVE MESSAGE": "<#ADFF64>{username}<end> left the server. (Reason: <white>{reason}<end>)",
        "ADMINS LIST DESC": "<orange>/admins<end> <grey>-<end> List of online <cyan>Admins<end> in the server.",
        "ADMINS LIST TITLE": "ADMINS ONLINE",
        "ADMINS ONLINE": "There are <cyan>{admins} Admins<end> online.",
        "ADVERTS COMMAND DESC": "<orange>/adverts<end> <grey>-<end> Allows <cyan>Admins<end> to change the Adverts interval in-game.",
        "ADVERTS DESC": "<orange>/adverts<end> <grey>-<end> Allows <cyan>Admins<end> to change the adverts interval ( i.g: /adverts 5 )",
        "ADVERTS INTERVAL CHANGED": "Adverts interval changed to <lime>{minutes}<end> minutes",
        "AIRDROP CALLED": "<yellow>Airdrop<end> incoming, will drop at <lime>{x}<end>,<lime>{x}<end>, <lime>{x}<end>.",
        "CHECK CONSOLE": "Check the console (press F1) for more info.",
        "HELI CALLED": "A <yellow>Patrol Helicopter<end> is coming!",
        "JOIN MESSAGE": "<lime>{username}<end> joined the server, from <orange>{country}<end>.",
        "LEAVE MESSAGE": "<lime>{username}<end> left the server. (Reason: <white>{reason}<end>)",
        "MAP LINK": "See where you are on the server map at: <lime>[URL]http://{ip}:{port}<end>[/URL]",
        "MAP LINK DESC": "<orange>/map<end> <grey>-<end> Server map url.",
        "MOTD DESC": "<orange>/motd<end> <grey>-<end> Allows <cyan>Admins<end> to change the MOTD in-game.",
        "NO ADMINS": "There are no <cyan>Admins<end> online.",
        "NO LANG": "Error, <lime>{args}<end> language not supported or does not exist.",
        "NO RULES": "Error, no rules found, contact the <cyan>Admins<end>.",
        "PLAYERS LIST DESC": "<orange>/players<end> <grey>-<end> List of all players in the server.",
        "PLAYERS LIST TITLE": "PLAYERS LIST",
        "PLAYERS ONLINE": "There are <lime>{active}<end>/<lime>{maxplayers}<end> players online.",
        "PLAYERS ONLINE DESC": "<orange>/online<end> <grey>-<end> Shows the number of players and <cyan>Admins<end> online, plus a few server stats.",
        "PLAYERS ONLINE TITLE": "PLAYERS ONLINE",
        "PLAYERS STATS": "Sleepers: <lime>{sleepers}<end> Alltime Players: <lime>{alltime}<end>",
        "PLUGINS LIST DESC": "<orange>/plugins<end> <grey>-<end> List of plugins installed in the server.",
        "PLUGINS LIST TITLE": "SERVER PLUGINS",
        "RULES DESC": "<orange>/rules<end> <grey>-<end> List of server rules.",
        "RULES TITLE": "SERVER RULES",
        "SYNTAX ERROR": "Syntax Error: {syntax}"
      },
      "MOTD": "This server now has the new <yellow>Message Of The Day<end> feature provided by <cyan>Notifier<end>. Use <orange>/motd<end> to know server's daily news!",
      "RULES": {
        "DE": [
          "Cheaten ist verboten!",
          "Respektiere alle Spieler",
          "Spam im Chat zu vermeiden.",
          "Spiel fair und missbrauche keine Bugs oder Exploits."
        ],
        "DK": [
          "Snyd er strengt forbudt.",
          "Respekter alle spillere.",
          "Undgå spam i chatten.",
          "Spil fair og misbrug ikke bugs / exploits."
        ],
        "EN": [
          "Oszustwa będą karane.",
          "Okaż respekt innym graczą",
          "Nie przeklinaj."
          "Admin ma zawsze racje."
        ],
        "ES": [
          "Los trucos están terminantemente prohibidos.",
          "Respeta a todos los jugadores.",
          "Evita el Spam en el chat.",
          "Juega limpio y no abuses de bugs/exploits."
        ],
        "FR": [
          "Tricher est strictement interdit.",
          "Respectez tous les joueurs.",
          "Évitez le spam dans le chat.",
          "Jouer juste et ne pas abuser des bugs / exploits."
        ],
        "HU": [
          "Csalás szigorúan tilos.",
          "Tiszteld minden játékostársad.",
          "Kerüld a spammolást a chaten.",
          "Játssz tisztességesen és nem élj vissza a hibákkal."
        ],
        "IT": [
          "Cheating è severamente proibito.",
          "Rispettare tutti i giocatori.",
          "Evitare lo spam in chat.",
          "Fair Play e non abusare di bug / exploit."
        ],
        "NL": [
          "Vals spelen is ten strengste verboden.",
          "Respecteer alle spelers",
          "Vermijd spam in de chat.",
          "Speel eerlijk en maak geen misbruik van bugs / exploits."
        ],
        "PT": [
          "Usar cheats e totalmente proibido.",
          "Respeita todos os jogadores.",
          "Evita spam no chat.",
          "Nao abuses de bugs ou exploits."
        ],
        "RO": [
          "Cheaturile sunt strict interzise!",
          "Respectați toți jucătorii!",
          "Evitați spamul în chat!",
          "Jucați corect și nu abuzați de bug-uri/exploituri!"
        ],
        "RU": [
          "Запрещено использовать читы.",
          "Запрещено спамить и материться.",
          "Уважайте других игроков.",
          "Играйте честно и не используйте баги и лазейки."
        ],
        "TR": [
          "Hile kesinlikle yasaktır.",
          "Tüm oyuncular Saygı.",
          "Sohbet Spam kaçının.",
          "Adil oynayın ve böcek / açıkları kötüye yok."
        ],
        "UA": [
          "Обман суворо заборонено.",
          "Поважайте всіх гравців",
          "Щоб уникнути спаму в чаті.",
          "Грати чесно і не зловживати помилки / подвиги."
        ]
      },
      "SCHEDULED MESSAGES": {
        "00:00": [
          "It is now <lime>{localtime}<end> of <lime>{localdate}<end>"
        ],
        "12:00": [
          "It is now <lime>{localtime}<end> of <lime>{localdate}<end>"
        ]
      },
      "SETTINGS": {
        "ADVERTS INTERVAL": 5,
        "ANNOUNCE AIRDROPS": true,
        "ANNOUNCE PATROL HELICOPTERS": true,
        "BROADCAST TO CONSOLE": true,
        "DIFFER ADMINS JOIN/LEAVE MESSAGE": true,
        "ENABLE ADMINS LIST": true,
        "ENABLE ADVERTS": true,
        "ENABLE ADVERTS COMMAND": false,
        "ENABLE JOIN MESSAGE": true,
        "ENABLE LEAVE MESSAGE": true,
        "ENABLE MAP LINK": true,
        "ENABLE MOTD": true,
        "ENABLE PLAYERS DEFAULT COLORS": false,
        "ENABLE PLAYERS LIST": true,
        "ENABLE PLAYERS ONLINE": true,
        "ENABLE PLUGIN ICON": false,
        "ENABLE PLUGINS LIST": true,
        "ENABLE RULES": true,
        "ENABLE SCHEDULED MESSAGES": true,
        "ENABLE WELCOME MESSAGE": true,
        "HIDE ADMINS": false,
        "ICON PROFILE": "76561198235146288",
        "MOTD INTERVAL": 120,
        "MOTD PREFIX": "[ <yellow>MOTD<end> ]",
        "PLAYERS LIST ON CHAT": true,
        "PLAYERS LIST ON CONSOLE": false,
        "PREFIX": "<white>[<end> <cyan>NOTIFIER<end> <white>]<end>",
        "RULES LANGUAGE": "AUTO"
      },
      "WELCOME MESSAGE": [
        "<size=17>Welcome <lime>{username}<end></size>",
        "<orange><size=20>•</size><end> Wpisz <orange>/help<end> aby zobaczyć dostępne komendy.",
        "<orange><size=20>•</size><end> Zapoznaj się z regulaminem: <orange>/rules<end>.",
        "<orange><size=20>•</size><end> Zobacz gdzie jesteś na mapie wpisując: <lime>[URL]http://{server.ip}:{server.port}<end>[/URL]"
      ]
    }
     
    Last edited by a moderator: Mar 10, 2016
  12. Please post the plugin issue on their respective discussions, I actually seen this by accident. Notifier | Page 107 | Oxide

    Where are you saving this JSON?
     
  13. /server/server_identity/oxide/confing
    [DOUBLEPOST=1457633094][/DOUBLEPOST]okay now working, I just need to install clear version of notifier becouse i fukup something in code.
     
  14. "confing" ?
    Mistyped ?

    Got Rusty ?
    What's the output of :
    Code:
    oxide.reload notifier
     
  15. My mistake :p
     
  16. Can this addon post coordinates of where an heli is coming to, or an airdrop is happening at?
     
  17. The Airdrop message does either the {location} name format or {x}, {y} and {z} for coordinates, but the Heli message doesnt.
     
  18. So do you have it working now?
     
  19. Any chance you could explain what needs to be typed in the config to make the airdrop coords spit out in chat?
     
  20. Yes .