[Whitelisting] Whitelisting for SQL [Formatted]

Discussion in 'Archived: Plugin Requests' started by ewized, Mar 3, 2012.

  1. Offline

    ewized

    Plugin category: Whitelisting

    Suggested name: WhitelistingSQL

    A bit about me: I'm a server owner that has a system set up to require users to register their account on our website. I was using an old one but that author vanished. That plugin was called "Whitelist".

    What I want: I need a plugin that will allow players to join the server is their user name is in a SQL row. I would prefer to allow custom SQL quires as I may need to include other requirements in the future. I has to work with MYSQL as that is what I use.

    Ideas for commands: No commands needed for this plugin.

    Ideas for permissions: No need for permissions.

    When I'd like it by: Soon there is no need to rushing but Ill like it before 1.3 comes out.

    Similar plugin requests: None.
     
  2. Offline

    fank

    WhitelistSQL:

    Download works with CB2036

    Config will automatically created:
    Code:
    SQL:
      server: localhost:3306
      username: minecraft
      password: ''
      name: minecraft
    Table:
      name: whitelist
      Column:
        Playername: playername
    SQL:
    Code:
    CREATE TABLE IF NOT EXISTS `whitelist` (
      `id` int(255) NOT NULL auto_increment,
      `playername` varchar(50) NOT NULL,
      PRIMARY KEY  (`id`),
      UNIQUE KEY `playernmae` (`playername`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1;
    
    it also can used with xAuth or other Databases.

    for Support or Issues send a pm please.

    P.S. when you like this press [like] :)
    P.S.S when other plugins needed tell me
     
    ewized and tommy garr like this.
  3. Offline

    ewized

    This is good but can you add kick messages to say what I want.

    Oh and the messages are backwards it says they left then joined

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

    LittleRock

    Just a question...

    Is this plugin works like the standard Whitelist or more like "World Safe" (a pretty old good plugin but now broken), who allow everybody to join but players could only talk and walk if not whitelisted?

    Thanks.
     
  5. Offline

    fank

    just Whitelist.

    But i think "World Safe" is also be possible ill try to do this.
     
  6. Offline

    LittleRock

    Mhhh if you could do this, it will be awesome for me, thanks ^^
    (I have that old plugin if you need it)
     

Share This Page