1. Here's a test of the new Adverts System coming on the next big update v3.1, now working in cycles with great improvements on the messages randomness.
    Code:
    [Oxide] 11:06 [Info] [Notifier] New Cycle!
    [Oxide] 11:06 [Info] [Notifier] 6
    [Oxide] 11:06 [Info] [Notifier] 5
    [Oxide] 11:06 [Info] [Notifier] 1
    [Oxide] 11:06 [Info] [Notifier] 3
    [Oxide] 11:06 [Info] [Notifier] 9
    [Oxide] 11:06 [Info] [Notifier] 7
    [Oxide] 11:06 [Info] [Notifier] 2
    [Oxide] 11:06 [Info] [Notifier] 8
    [Oxide] 11:06 [Info] [Notifier] 4
    [Oxide] 11:06 [Info] [Notifier] New Cycle!
    [Oxide] 11:06 [Info] [Notifier] 5
    [Oxide] 11:06 [Info] [Notifier] 9
    [Oxide] 11:06 [Info] [Notifier] 1
    [Oxide] 11:06 [Info] [Notifier] 6
    [Oxide] 11:06 [Info] [Notifier] 3
    [Oxide] 11:06 [Info] [Notifier] 4
    [Oxide] 11:06 [Info] [Notifier] 7
    [Oxide] 11:06 [Info] [Notifier] 8
    [Oxide] 11:06 [Info] [Notifier] 2
    [Oxide] 11:06 [Info] [Notifier] New Cycle!
     
  2. Maybe a pretty dumb question but how can i make a newline/row like this?

    [Notifier]
    Please avoid any insults and be respectful!

    And not like this.

    [Notifier] Please avoid any insults and be respectful!
     
  3. In the beggining of each line add a \n (newline)
     
  4. Thank you very much Skin!
     
  5. Hi I would like to replace '/notifier help' with just '/help' and use this as my main source of information. I can't seem to find out how to do this. Any help would be really appreciated. Thanks.
     
  6. /notifier help is an internal command, which means you cannot change its trigger, I will have a modified unofficial version for you with it to be just /help instead. However, take in mind being a modified version future official version won't have this change.
     
  7. That would be great - thanks.
     
  8. Hey, What do i need to write to get a scheduled message like every 10 mins.
     
  9. hi how can i make that he show me in the "/notifier help" text a own "command"?
    i installed a plugin and open it with "/s".
    in this moment he show me the command but its dont work.
    i chance the notifier conf like this

    // Command Triggers
    SetConfig("Commands", "Triggers", "Players List", new List<string> { "/players" });
    ------> SetConfig("Commands", "Triggers", "Rewards", new List<string> { "/s" });
    SetConfig("Commands", "Triggers", "Plugins List", new List<string> { "/plugins" });
    SetConfig("Commands", "Triggers", "Admins List", new List<string> { "/admins" });
    SetConfig("Commands", "Triggers", "Players Count", new List<string> { "/online" });
    SetConfig("Commands", "Triggers", "Server MOTD", new List<string> { "/motd" });
    SetConfig("Commands", "Triggers", "Server Map", new List<string> { "/map" });
    SetConfig("Commands", "Triggers", "Server Rules", new List<string> { "/rules" });

    // Command Settings
    SetConfig("Commands", "Settings", "Players List", true);
    ------> SetConfig("Commands", "Settings", "Rewards", true);
    SetConfig("Commands", "Settings", "Plugins List", false);
    SetConfig("Commands", "Settings", "Admins List", false);
    SetConfig("Commands", "Settings", "Server Rules", true);
    SetConfig("Commands", "Settings", "Server Map", false);
    SetConfig("Commands", "Settings", "Server MOTD", false);
    SetConfig("Commands", "Settings", "Players Count", true);


    can someone say me what i make wrong?
     
  10. superb plugin! thanks.
    but.. i am as always have some ideas how to improve any of it =)

    you have /rules command integrated into your plugin, maybe there is point to add /help command support too? i am with pleasure will get rid of separate helptext plugin(how i did with rules when installed notifier). in my case i need simple text displayed when /help command is used.

    also an idea to add additional notification based on the server time, counting time left until next server wipe, with configurable display format(Days[:Hours[:Minutes]], where [:X] is optional) and configurable text message displayed in front of counter(like "Players Count" notification you alrready use). so server admin can set wipe date and time via command and counter will count time until that day and hour. if no wipe date set or it passed - just skip that notification and show next one.
     
    Last edited by a moderator: Jun 16, 2016
  11. I also asked the same question and apparently SKINN has said he would make a custom version for this purpose. I would like to disabled ALL other plugin responses and then use this to manage them all in one place.

    As you said this could manage /rules /map /help and many other things if you had the power to add a catch word and then what it would display. I love the fact it already has all the server login, announcements and MOTD as a package.

    I have almost finished all my plugins and am eager to start working on making all my messages look the same style using this plugin.
     
  12. SkinN õ.Õ'.|. updated Notifier with a new update entry:

    3.0.9

     
  13. ~delete. Thanks again.
     
    Last edited by a moderator: Jun 17, 2016
  14. lovely =) TY!
    [DOUBLEPOST=1466153044][/DOUBLEPOST]
    Custom Chat Commands for Rust | Oxide - you need this one(if it still works, unsure) for your needs.
     
  15. hey if some kill Helicopter and he take his stuff its spam on the chat why ?
     
  16. Make sure both Helicopter & Airdrop Notification settings are set to false.
     
  17. I'm not sure what happened but the messages appear like this now with the <colour> attribute??... not all of them. I found that some I had to change in the .cs file as updating the .json file made no difference to the message.

    74fdfe7f48b14fe8b0b24c2057ef7698[1].png

    If I just use /help the command list appears fine.

    2ae499cc5c7440eb99cce01ec2782b2e[1].png
     
  18. It's all good, I found them in 'Notifier.en.json' located in /oxide/lang

    Not sure how they changed as I hadn't edited that file.
     
  19. You should never, EVER, change the .cs file for no reason. The HTML in your file is broke, because you are missing an <end> tag to close the white color:
    FIX:
    Code:
    <white>You are playing on:<end> <orange>cs.clanservers.com:28046<end>
     
  20. Noted. Thanks.