Login - Printable Version +- Cuberite Forum (https://forum.cuberite.org) +-- Forum: Plugins (https://forum.cuberite.org/forum-1.html) +--- Forum: Plugin Releases (https://forum.cuberite.org/forum-2.html) +--- Thread: Login (/thread-811.html) |
RE: Login - NiLSPACE - 03-07-2013 yay new update ;D all the config is now found in Config.ini. you can configurate almost every message people get. please if you get bugs report them then i'l try to fix them. RE: Login - NiLSPACE - 03-18-2013 New update:
EDIT: Forgot to mention an extra feature:
RE: Login - NiLSPACE - 03-24-2013 Update:
RE: Login - NiLSPACE - 03-25-2013 Update:
RE: Login - NiLSPACE - 03-30-2013 Update:
RE: Login - NiLSPACE - 06-01-2013 Have a look at the first glimps of my rewritten Login Plugin Once again thanks xoft for implenting cLuaWindow RE: Login - xoft - 06-01-2013 So, are you storing the login data in a file, or in a database? RE: Login - NiLSPACE - 06-01-2013 I am storing it in a .Ini file since I don't realy understand how sqlite works. I looked at the debuggers plugin but i still didn't realy understand. RE: Login - xoft - 06-01-2013 I've found a nice tutorial on general databases, it's a little bit dated, but most of the info there is still valid: http://geekgirls.com/category/office/databases/ - follow the Databases From Scratch posts Those can get you started on the principles of databases, designing the database structure etc. Once you know that, google for an SQL tutorial, that will teach you the language used for most database engines, including SQLite in MCServer. RE: Login - NiLSPACE - 06-01-2013 So i think i now have an idea on how SQLite works but now i'm not sure on how to work with it. Like how can i get the information out of it. I now used this to put some random stuff in a database: Code: INSERT INTO password VALUES("Niels", "Test"); I think i see a database too much as a variable or a table. |