HelpText

Moved

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

4.92105/5, 38 likes
  1. Please add the ability to write colored text.
     
  2. Wulf

    Wulf Community Admin

    You can already write colored text, just add the HTML color codes around the help text in each plugin. See http://docs.oxidemod.org/#styling-messages.
     
  3. Attached Files:

  4. This doesnt work for the helptext set in the config file.
    The color tags only work when sent by another plugin.
     
  5. And the developer of the plugin can add this feature?
     
  6. Wulf

    Wulf Community Admin

    Why wouldn't it? It's sending the same way. It does need to end with </color> though I believe.
     
  7. You're right. I dont know what i was thinking when i posted this.
     
  8. this /\ :)
     
  9. Is there anyway you could add colours to the helptext? in the snow it isn't easy reading white lol.

    Thanks
     
  10. Wulf

    Wulf Community Admin

    For custom help added via the config, just are HTML color tags around the text. For help from iher plugins, you'd need to do the same via the other plugin or its config.
     
  11. Thanks, Tried and it ended up killing the config lol..
    If I wanted to make this text orange what would I do? I tried <orange>text<end> which is probably wrong :(
    Code:
    {
      "CustomHelpText": [
      "(www.FIREON-COMMUNITY.com)",
      "(Remove Building Parts) /remove",
      "(Kits) /kit",
      "(Private Message) /pm name message /r message",
      "(Ranks) /rt help OR /rt stats",
      "(Friendly fire) /ff",
      "(Teleport) /tphelp",
      "(Online Players) /players",
      "(Make Clan) /clan help"
      ],
      "Settings": {
      "AllowHelpTextFromOtherPlugins": "false",
      "UseCustomHelpText": "true"
      }
    }
     
  12. Wulf

    Wulf Community Admin

    http://docs.oxidemod.org/#styling-messages
     
  13. Thanks guys I'll give that a try :)


    works a treat
     
    Last edited by a moderator: May 1, 2015
  14. Is there a way to remove spacing to the help text? Want to try and get this Spaced out better looks messy! Need
     

    Attached Files:

  15. Wulf

    Wulf Community Admin

    If you are using custom help, use the newline (\n) symbol instead of making individual lines. If the help text is provided by another plugin, do the same in that plugin instead.
     
  16. You just cured so much OCD you have no idea Thank you so much
     
  17. Wulf

    Wulf Community Admin

    No problem. :)
     
  18. Is it possible, to show the complete list in the console too?

    If I enter "/help" it's just in the chat, but would be great if it's in the console too ( better to read ;) and people dont need to scroll so much )
     
  19. i want to put this in but dont know where to put it,thats what he said. No but i need HELP.
    Code:
    function PLUGIN:SendHelpText(player)
        if player:IsAdmin() then
            player:ChatMessage("admin helptext")
        end
        player:ChatMessage("normal helptext")
    end