
-----------------------------------
StarGateSG-1
Tue Jan 04, 2005 10:33 pm

Passwords
-----------------------------------
I am making an text based Rpg in C++ to follow up with my many turing text based and i was wondering how to hide a password like so "*****".
I can do it in turing as well as Java but it just won't work. If someone could plz post full source code it would be greatly appreciated!  :) . 
By the way I use Dev-C++.

O and if anyone would like to help me it with making this game.
i.e Idea's ,Coding(no C++ exp req but at least java or php or any language with common syntax with C++. If i could get some people with graphics experiance this could become a graphical game. 

If you would like to help plz e-mail me.
Help would be much appreciated! :D

-----------------------------------
Tony
Wed Jan 05, 2005 3:45 am


-----------------------------------
I think you're looking for the getch() function.

-----------------------------------
Andy
Wed Jan 05, 2005 8:10 am


-----------------------------------
a while back, i made a dating data base program where each user could login and change their information and browse others infos


	while(1)
	{
		ascii=getch();
		if (ascii==13)
			break;
		else if (ascii==8 && pwcount>0)
		{
			system("cls");
			cout