I cannot seem to make this plugin to save my life, so I am here.

Discussion in 'Archived: Plugin Requests' started by calebbfmv, Jul 26, 2012.

  1. Offline

    calebbfmv

    Plugin category: MISC

    Suggested name: Betterlist

    What I want: A plugin that list all online users in a certain group with a command/on server join

    Ideas for commands: /listAdmin /listMod /listOp /listHelper etc...

    Ideas for permissions: None I would prefer

    When I'd like it by: Whenever you can get it done, seeing as I can't :mad::'(

    Thanks guys, I have tried and tried to make this but I just cannot seem to get it done!
     
  2. Offline

    SilentTheif-PLM

    Instead of the commands you have atm you could use the following in advanced:
    /listadmins
    /listmods
    /listops
    /listhelp
    /listall
    Just some ideas. And in essentials it already does that. When you do /list in essentials it says:
    Admins:
    Co-Owners:
    Mods:
    Etc:
    Players:

    with all the name
     
  3. Offline

    calebbfmv

    With essentials you get ALL players, I only want a certain group, I changed the commands.
     
  4. Offline

    SilentTheif-PLM

    Ok sounds good. And yes I agree.
     
  5. Offline

    se1by

    Just for the one who might do this:
    Code:
    for(Player p : getServer().getOnlinePlayers()){
        if(p.isOp())
            opList.add(p);
        if(p.hasPermission("<readFromConfig>")//Repeat
            permList.add(p);                  //this
    }
    Then just show the list to the user.
     
  6. Offline

    McLuke500

    calebbfmv
    # Sort output of /list command by groups
    sort-list-by-groups: false

    Change that to true and it will list them by groups!
     
  7. Offline

    Reptar_

    Me and calebbfmv have been trying to figure this plugin out forever! xP
     
    McLuke500 likes this.
  8. Offline

    iBCoLLiN

  9. Offline

    Ne0nx3r0

  10. Offline

    iBCoLLiN

    Its what i use :) very easy if you want to see it in action join my server and do /who

    ip: mc-hw.com
     
  11. Offline

    calebbfmv

    I think I figured it out!!!!!! Blind rage was fun, but after a good night sleep ;) I feel better!
     

Share This Page