[INACTIVE][GEN] AdminsOnline v.0.9 - List online admins [617]

Discussion in 'Inactive/Unsupported Plugins' started by TAT, Feb 10, 2011.

  1. Offline

    TAT

    <font color="rgb(20, 20, 20)">AdminsOnline - List online admins:</font>
    <font color="rgb(20, 20, 20)">Version: v0.9</font>

    <font color="rgb(20, 20, 20)">With this plugin the players can see which admins there is online.</font>
    <font color="rgb(20, 20, 20)">You can also look a player up using /adminsonline Username (example /adminsonline TAT)</font>
    <font color="rgb(20, 20, 20)">You can use the command /adminsonline and, if set, the alias in config (default: /admins) [TEMPORARY REMOVED FROM V.0.7]</font>
    <font color="rgb(20, 20, 20)">You can reload configuration using /reloadao.</font>
    AdminsOnline support Permissions, set your admin group in config (default: Admins)

    Features:
    * Show which admins there is online
    * Lookup a specific player to see if the player is admin and if, show if the admin is online
    * Toggle OP lookup
    * Toggle show admins online on login
    * Permissions

    - * Toggle Permissions lookup
    * Multiple groups with different colors

    Download and Source:
    AdminsOnline v.0.9

    Show Spoiler
    <font color="rgb(16, 97, 179)">AdminsOnline v.0.8</font>
    <font color="rgb(16, 97, 179)">AdminsOnline v.0.7</font>
    <Edit by Moderator: Redacted mediafire url>
    <font color="rgb(16, 97, 179)"><Edit by Moderator: Redacted mediafire url>
    <font color="rgb(16, 97, 179)"><Edit by Moderator: Redacted mediafire url>
    <Edit by Moderator: Redacted mediafire url>
    <Edit by Moderator: Redacted mediafire url>
    <Edit by Moderator: Redacted mediafire url>

    Sourcecode @ GitHub

    Todo:
    * Add possibility for more aliases

    Configuration:


    UseOP - Use OP to check for admins (Default: true)
    UsePermissions - Use Permissions to check for admins [Require Permissions Plugin] (Default: true)
    ShortCommand - Add additional command to use aside /adminsonline (Default: no additional command) [TEMPORARY REMOVED FROM V.0.7]
    PermissionsGroups - Setup admin groups for Permissions (Default: No groups)
    PermissionsColors - Setup colors for the different groups (Default: No colors)

    Show Spoiler
    Code:
    ##
    #Plugin: AdminsOnline
    #Author: TAT
    #CONFIGURATION
    ##
    
    ##
    #Config: ShowInfo
    #Doing: Activate to output settings to console
    #Example: true = activate // false = deactivate
    ##
    ShowInfo: true
    
    ##
    #Config: UseOP / UsePermissions
    #Doing: Here you can activate OP and/or Permissions
    #Example: true = activate // false = deactivate
    ##
    UseOP: true
    UsePermissions: true
    
    ##
    #Config: ShowOnLogin
    #Doing: Activate show admins online on login
    #Example: true = activate // false = deactivate
    ##
    ShowOnLogin: true
    
    ##
    #Config: ShortCommand
    #Doing: Here you can type a short command for users to use aside with /adminsonline
    #Example: /admins
    ##
    ShortCommand: "/admins"
    
    ##
    #Config: PermissionGroups
    #Doing: Here you can setup the groups in Permissions that are registered as admins by AdminsOnline
    #       Every group is setup like this:
    #           Groupname in Permissions: Shown name
    #       Remember comma between groups and write the groups between the { and }.
    ##
    PermissionGroups: {
            OwnerGroup: Owners,
            SupAdminGroup: Super-Admins,
            AdminGroup: Admins,
            SupModeratorGroup: Super-Moderators,
            ModeratorGroup: Moderators
    }
    
    ##
    #Config: PermissionColors
    #Doing: Here you can setup colors for the groups set in PermissionGroups
    #       Every group is setup like this:
    #           Groupname in Permissions: Color
    #       Remember comma between groups and write the groups between the { and }.
    #Colorcodes:
    #       aqua
    #       black
    #       blue
    #       dark_aqua
    #       dark_blue
    #       dark_gray
    #       dark_green
    #       dark_purple
    #       dark_red
    #       gold
    #       gray
    #       green
    #       light_purple
    #       red
    #       white
    #       yellow
    ##
    PermissionColors: {
            OwnerGroup: gold,
            SupAdminGroup: dark_red,
            AdminGroup: red,
            SupModeratorGroup: dark_aqua,
            ModeratorGroup: aqua
    }


    Changelog:
    Version 0.9
    * Updated to latest recommended CraftBukkit [#617]


    Show Spoiler
    Version 0.8
    * Fixed when no PermissionsColors set for an admin group

    Version 0.7
    * Updated to latest bukkit [#493]
    * Temporary disabled ShortCommand/AliasCommand

    Version 0.6

    * Added possibility to show admins online on login - toggleable in config
    * Fixed stupidly long constructor

    Version 0.5.3

    * Fixed stupidly long constructor
    * Fixed support for Permissions 2.1
    * Fixed possibility to lookup offline users - again again
    * No search for Permissions when reloading configuration if Permissions already is found

    Version 0.5.2

    * Fixed colors if using both OP and Permissions

    Version 0.5.1

    * Fixed possibility to lookup offline users - again

    Version 0.5

    * Added config to activate/deactive OP, Permissions and ConsoleOutput
    * Added support for multiple Permissions groups with different colors

    Version 0.4

    * Added support for Permissions
    * Added /reloadao command to reload the configuration
    * Fixed possibility to lookup offline users

    Version 0.3

    * Removed aliases and added config to set your own alias (ShortCommand)

    Version 0.2

    * Added aliases /adminon, /onlineadmin, /onlineadmins

    Version 0.1

    * Release version

    - * Show admins online
    * Check specific admin using /adminsonline Username
    * Show if the specific admin really is an admin (using OP)
     
    Last edited by a moderator: Dec 15, 2016
  2. Offline

    svict4

    ++
     
  3. Offline

    BigRenegade

    Downloaded and tested on bukkit #670. At first I had a problem with the config file being created. It said it couldn't find the correct path and couldn't create the config file. Manually created the AdminsOnline folder in the plugins folder and reloaded server. That fixed the problem.

    My suggestion would be to make the plug-in create the folder on the first run. This would eliminate the config file creation problem.

    There was on other problem (though it is minor). I could not make a short version for players to use. The server kept saying unknown command when I used the short version I put in the config file. However, if I used /adminsonline it worked just fine.

    Great plug-in. Keep up the good work.
     
  4. Offline

    TAT

    This will be fixed in the next release
    ShortCommand isn't active at the moment.

    I'm working on the next release with the features there have been asked for.
    When it is released, it will change name to PlayersOnline because I'll add command to show all players (Non-admins + admins)

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 8, 2016
  5. Offline

    Travis_Hironak

    Great, I'm looking forward to test it. :D
     
  6. Offline

    eRko16

    add /admins command
     
  7. Offline

    TAT

    ask nice
    _________________________________________________________________
    Not to sound angry or anything, but please write in a nice tone instead of just say do that, like you controlled me or something ;)
    The /adminsonline command will be removed from v.1.0 and /admins and /players will be added instead :D
     
  8. Offline

    eRko16

    Sorry for my vulgarity. :D I was at school and i dont have too much time. So, please can you add command /admins ? :) I got it now as alias in commandhelper.
     
  9. Offline

    TAT

    As I wrote, it will be added in v.1.0.
     
  10. Offline

    snatch182

    Hi, how can I get config.yml ? there is something like that:
    [INFO] AdminsOnline: Error creating config file!

    :)?
     
  11. Offline

    TAT

  12. Offline

    snatch182

    Thank you, and I have 3 things to ask:

    - Can I change this info showing above of the list of admins? now it's "X Online Admins:" and I want it to be "X Graczy online:"

    - Can you make this option for command alias working? i mean "short command"?

    - and last thing, can you make sorting groups? so if I set up in config like:

    OwnerGroup: Owners,
    SupAdminGroup: SuperAdmins,
    AdminGroup: Admins,

    Than it will show in game players in the same sequence? Owners, SuperAdmins,Admins?

    Any of those options added asap will be appreciated :)
     
  13. Offline

    Travis_Hironak

    Is PlayersOnline still planned ? I can wait but I just wanted some news. :p
     
  14. Offline

    Plague

    considered inactive
     
  15. Offline

    BCUltimate

    Please update it!
     
  16. Offline

    vidhu

    TAT with your permission, can I revive this plugin and continue developing it? I shall credit you
     

Share This Page