HelpText

Moved

Total Downloads: 18,186 - First Release: Oct 23, 2014 - Last Update: Feb 3, 2017

4.92105/5, 38 likes
  1. Wulf

    Wulf Community Admin

    The authors would need to add support for the plugin, else you can add your own custom text in this plugin's config file.
     
  2. @Wulf @Domestos Help text is amazing but it really needs to be updated to feed the info through the console I get 2 maybe 3 plugins helptext to show up when /help is done... I have 86 plugins lol can either of you make it write to console?
     
  3. Wulf

    Wulf Community Admin

    Printing to console isn't hard, just change any chat sending to something like...
    Code:
    player:SendConsoleCommand("echo " .. variablegoeshere)
     
  4. does help test (json file) support colors like in Notifier? something like:
    "Teleport - Type <orange>/tphelp<end> for help on teleport"
     
  5. Wulf

    Wulf Community Admin

    All Rust plugins support colors, just use the actual HTML formatting (not the special thing that Notifier has) instead.
    http://docs.oxidemod.org/rust/#styling-messages
     
  6. I do have a question, some of the commands I see are admin only when I type /help do non-admin (auth level 2 players) see those commands as well?
     
  7. Wulf

    Wulf Community Admin

    That all depends on every other plugin, not this one. This plugin just tells the other plugins to send their help.
     
  8. grr. so can we get this changed or is there another option for help? my users keep asking for it :)
     
  9. Wulf

    Wulf Community Admin

    You'd need to change it in the plugins that the help actually comes from. The custom help is the only part that actually comes from this plugin.
     
  10. can u change this to do both?
     
  11. Wulf

    Wulf Community Admin

    Try the below version. It also corrects the ResourceId definition.
     
  12. only prints to chat... can u make it say help prints to F1 Console aswell so people know... well once it works :D
    [DOUBLEPOST=1440198692][/DOUBLEPOST]
    also add me on steam and let me know when u update it I'll test it immediately for u
     
  13. Wulf

    Wulf Community Admin

    Oh yeah, that only works for custom help. If you want console help for other plugins, they'd need to add it. This plugin doesn't actually send any help other than the custom help in its config.
     
  14. anyway for it to intercept and reroute?
    [DOUBLEPOST=1440201790][/DOUBLEPOST]issue is every plugin I have has help and it goes off the page and I see like 2 of the messages lol
     
  15. Wulf

    Wulf Community Admin

    Well, the plugin would essentially need to be re-written and handle help text differently, but Oxide's native help system will likely be finished before that.
     
  16. damn :( ok lol no one even knows that half the plugins on my server exist lol
    [DOUBLEPOST=1440201921][/DOUBLEPOST]when should the native one be completed?
     
  17. Any news about helptext with GUI ?
     
  18. Wulf

    Wulf Community Admin

    Technically the functionality is there to provide the info, but plugins would have to move to it and then the /help command would need to be made.
     
  19. Because of the plugins needing the method SendHelpText:
    @Wulf isnt it somehow possible to make its possible to loop through all existing commands? Of course that wont provide that good info but anyways. There could also be something like this: to provide info which you can pick using like command.Info
    Code:
    [ChatCommand("help")]
    [CommandInfo("This command shows you a list of available commands")]
    void cmdHelp()
    {}
    Well its just an idea ^^
     
  20. Can I get a link to this area of the source code so I can look into that