Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Blog

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Computer Talk
View previous topic :: View next topic  
Author Message
sandangel333
Expert Cheater
Reputation: 0

Joined: 06 Jul 2007
Posts: 127

PostPosted: Fri Jul 04, 2008 10:50 pm    Post subject: Blog Reply with quote

erm.. was wondering if anybody know if this is possible.

i was wondering if there is a way where by before a person want to view the blog, a screen will pop out and request for a password. if the password is correct, another screen will pop out for the 2nd password. and so on.


means we can add the desier amount of question for different pop out.

for example, i want the first pop out to be

"who is blahblah balh"
and if answer correct,
another pop out with the next question
"what is blah blah blah"
answer correct, next pop out
",,,,,,,,,,,,,,,,,,,,"
answer correct

then after the 3rd question, they will be able to see what the blog writes about. so means while answering the question, they will be unable to view the blog. and the question can be changed as desired.



dunnoe if this is posssbile. hope some pro can help me. TY
Back to top
View user's profile Send private message
FullyAwesome
I post too much
Reputation: 0

Joined: 05 Apr 2007
Posts: 4438
Location: Land Down Under

PostPosted: Sun Jul 06, 2008 12:26 am    Post subject: Re: Blog Reply with quote

sandangel333 wrote:
erm.. was wondering if anybody know if this is possible.

i was wondering if there is a way where by before a person want to view the blog, a screen will pop out and request for a password. if the password is correct, another screen will pop out for the 2nd password. and so on.


means we can add the desier amount of question for different pop out.

for example, i want the first pop out to be

"who is blahblah balh"
and if answer correct,
another pop out with the next question
"what is blah blah blah"
answer correct, next pop out
",,,,,,,,,,,,,,,,,,,,"
answer correct

then after the 3rd question, they will be able to see what the blog writes about. so means while answering the question, they will be unable to view the blog. and the question can be changed as desired.



dunnoe if this is posssbile. hope some pro can help me. TY


what are you actually trying to do? make a website or make a program? are all you trying to do is make it so that you must enter multiple passwords to enter a blog???

_________________
Back to top
View user's profile Send private message MSN Messenger
atom0s
Moderator
Reputation: 205

Joined: 25 Jan 2006
Posts: 8587
Location: 127.0.0.1

PostPosted: Sun Jul 06, 2008 12:40 am    Post subject: Reply with quote

You could do something like this with javascript:

Code:
<HTML>
<HEAD>
 <TITLE>asdfasgdgdsa</TITLE>
</HEAD>

<script type="text/javascript">
 function AskQuestions()
 {
   var iQuestOne = prompt( "What is 2+2?" );
   var iQuestTwo = prompt( "What is 4+4?" );

   if( iQuestOne == 4 && iQuestTwo == 8 )
   {
     window.location = "http://www.google.com";
   }
 }
</script>

<BODY onLoad="AskQuestions()">

 <P> Other page shit here... </P>

</BODY>
</HTML>


Keep in mind anyone can view the source and see the passwords.

_________________
- Retired.
Back to top
View user's profile Send private message Visit poster's website
Drkgodz
Flash moderator
Reputation: 2

Joined: 17 Jul 2006
Posts: 2997
Location: Houston

PostPosted: Sun Jul 06, 2008 1:38 am    Post subject: Reply with quote

Wiccaan wrote:
You could do something like this with javascript:

Code:
<HTML>
<HEAD>
 <TITLE>asdfasgdgdsa</TITLE>
</HEAD>

<script type="text/javascript">
 function AskQuestions()
 {
   var iQuestOne = prompt( "What is 2+2?" );
   var iQuestTwo = prompt( "What is 4+4?" );

   if( iQuestOne == 4 && iQuestTwo == 8 )
   {
     window.location = "http://www.google.com";
   }
 }
</script>

<BODY onLoad="AskQuestions()">

 <P> Other page shit here... </P>

</BODY>
</HTML>


Keep in mind anyone can view the source and see the passwords.

Or you could have a PHP file compare answers and return true/false.

_________________
Back to top
View user's profile Send private message
sandangel333
Expert Cheater
Reputation: 0

Joined: 06 Jul 2007
Posts: 127

PostPosted: Tue Jul 08, 2008 6:33 am    Post subject: Reply with quote

yep. i want to have people to enter muplitial password before able to view my blog haha.


and the script how it works?
Back to top
View user's profile Send private message
atom0s
Moderator
Reputation: 205

Joined: 25 Jan 2006
Posts: 8587
Location: 127.0.0.1

PostPosted: Tue Jul 08, 2008 9:29 am    Post subject: Reply with quote

sandangel333 wrote:
yep. i want to have people to enter muplitial password before able to view my blog haha.


and the script how it works?


Code:
   var iQuestOne = prompt( "What is 2+2?" );
   var iQuestTwo = prompt( "What is 4+4?" );


Those popup the two questions, edit them as needed.

Then, the following checks the results of what the user inputted for the answers:

Code:
   if( iQuestOne == 4 && iQuestTwo == 8 )
   {


Then the next part redirects the user to the next page if the answers were correct.

Code:
     window.location = "http://www.google.com";

_________________
- Retired.
Back to top
View user's profile Send private message Visit poster's website
sandangel333
Expert Cheater
Reputation: 0

Joined: 06 Jul 2007
Posts: 127

PostPosted: Tue Jul 08, 2008 6:29 pm    Post subject: Reply with quote

erm.. i tired but it did not work. >.< no question poped out..
Back to top
View user's profile Send private message
deleted19776
I post too much
Reputation: 11

Joined: 29 Apr 2007
Posts: 3838

PostPosted: Tue Jul 08, 2008 6:52 pm    Post subject: Reply with quote

Wiccaan wrote:
You could do something like this with javascript:

Code:
<HTML>
<HEAD>
 <TITLE>asdfasgdgdsa</TITLE>
</HEAD>

<script type="text/javascript">
 function AskQuestions()
 {
   var iQuestOne = prompt( "What is 2+2?" );
   var iQuestTwo = prompt( "What is 4+4?" );

   if( iQuestOne == 4 && iQuestTwo == 8 )
   {
     window.location = "http://www.google.com";
   }
 }
</script>

<BODY onLoad="AskQuestions()">

 <P> Other page shit here... </P>

</BODY>
</HTML>


Keep in mind anyone can view the source and see the passwords.

Yep that's also true, and lol, not everyone can see the passwords because they are all too stupid on computers.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Computer Talk All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites