Registration and Login

Post your questions, suggestions and experiences regarding game design, integration of external libraries here. For irrEdit, irrXML and irrKlang, see the
ambiera forums
Post Reply
Lonesome Ducky
Competition winner
Posts: 1123
Joined: Sun Jun 10, 2007 11:14 pm

Registration and Login

Post by Lonesome Ducky »

Hi all, is there any way I can create a login and registration system without using MySql?
JP
Posts: 4526
Joined: Tue Sep 13, 2005 2:56 pm
Location: UK
Contact:

Post by JP »

You could just keep a text file with all users details in it, that would probably be quite simple.
Image Image Image
Cardinal4
Posts: 97
Joined: Sun Jun 11, 2006 1:20 am
Location: SG
Contact:

Post by Cardinal4 »

You could try using SQLite with PHP 5... it works just like a MySQL database, except the info is stored in a text file instead of a MySQL database.
Sketches of a rambling mind
Still a long way on learning Irrlicht...
Lonesome Ducky
Competition winner
Posts: 1123
Joined: Sun Jun 10, 2007 11:14 pm

Post by Lonesome Ducky »

Well the problem is how will i open the file across the internet?
Acki
Posts: 3496
Joined: Tue Jun 29, 2004 12:04 am
Location: Nobody's Place (Venlo NL)
Contact:

Post by Acki »

you don't open a file over the internet...
you'll have to make a server program, your client program connects to it and the server program opens the file local on the server... ;)
all other would be too unsecure !!!
while(!asleep) sheep++;
IrrExtensions:Image
http://abusoft.g0dsoft.com
try Stendhal a MORPG written in Java
Lonesome Ducky
Competition winner
Posts: 1123
Joined: Sun Jun 10, 2007 11:14 pm

Post by Lonesome Ducky »

OH, it seeems so simple now! THank you all very much! :wink:
hockey97
Posts: 41
Joined: Mon May 14, 2007 10:47 pm

Post by hockey97 »

HI is their such a way where you make a server app and a client app, well a game program where the person installs it on their computer then when the game is being excuted , it then would connect to the server where you a gui that's like a user's profile like a 2d chat room and other stuff. then you can pick level's or room's to play in, then it load's the room level then the person plays it?.
Ico
Posts: 289
Joined: Tue Aug 22, 2006 11:35 pm

Post by Ico »

Only limit is your imagination. ;) You have to know how to do it and you should know, how to do it most effective. :)

You could take irrlicht and create a second "unreal tournament 3" or another "doom 3", "starcraft" or whatever ...

But best way is to start out small. If your game code is clean and well organized it shouldn't be too hard to add networking later on.
Post Reply