Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 03-19-2002, 05:00 PM   #1
Tag
So Fucking Banned
 
Join Date: Jan 2002
Posts: 107
can u slove this?????

got sent it by a friend who says he can do it..


<SCRIPT language="JavaScript">
<!-- Key-code script by Bart Jellema
// You may use this script freely as long
// as you credit me for it...
var usermulcode=1 // code init
var code=0 // the entered code
var mul=1 // the multiplied digits
var digit=0 // number of digits entered so far
var fails=0 // number of tries done

function Enter_code(number)
{

code=code*10+number // Add the digit to the code
mul=mul*number // Update mul-value
document.codepad.thecode.value=code // Show code
digit++ // Increase digit

if (digit==3) // 3 digits entered
{
if (mul==35)
// This is to validate the code. If
// the code is 1234 the mul = 1*2*3*4 = 24
// If your code is 9562 it will be
// usermulcode = 540 (9*5*6*2)
{
window.open("switch.pl/"+code+".shtml",'_top')
fails++
code=0 // Reset values
mul=1
digit=0
}
else
{
fails++ // Increase fails
code=0 // Reset values
mul=1
digit=0
if (fails<6)
{
if (fails<5)
{document.codepad.thecode.value="Try again"}
if (fails==5)
{document.codepad.thecode.value="Last time"}
}
else // To many tries = worp back
{
location="http://www.exit.com"
document.codepad.thecode.value="Bye!"
}
}
}
}

function keycodepad(mulcode)
{
usermulcode=mulcode
document.write("<form name=\"codepad\">");
document.write("<input type=\"button\" value=\" 1 \" onClick=\"Enter_code(1)\">");
document.write("<input type=\"button\" value=\" 2 \" onClick=\"Enter_code(2)\">");
document.write("<input type=\"button\" value=\" 3 \" onClick=\"Enter_code(3)\"><br>");
document.write("<input type=\"button\" value=\" 4 \" onClick=\"Enter_code(4)\">");
document.write("<input type=\"button\" value=\" 5 \" onClick=\"Enter_code(5)\">");
document.write("<input type=\"button\" value=\" 6 \" onClick=\"Enter_code(6)\"><br>");
document.write("<input type=\"button\" value=\" 7 \" onClick=\"Enter_code(7)\">");
document.write("<input type=\"button\" value=\" 8 \" onClick=\"Enter_code(8)\">");
document.write("<input type=\"button\" value=\" 9 \" onClick=\"Enter_code(9)\"><br>");
document.write("<input type=\"text\" name=\"thecode\" size=10 value=\"\"><br>");
document.write("</form>");
}
// Key-code script by Bart Jellema -->
</SCRIPT>


you have to find a key code???
i cant figure it out
Tag is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-19-2002, 06:08 PM   #2
-=HOAX=-
Confirmed User
 
Join Date: Dec 2001
Location: CrackYaMental
Posts: 4,365
uhm....what?!?!?!?
__________________
Insert Value Here.
-=HOAX=- is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-19-2002, 06:17 PM   #3
RK
Confirmed User
 
Join Date: Aug 2001
Location: In a Bunker
Posts: 868
1,5,7

in any order
__________________
Does anyone look down here?
RK is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-19-2002, 10:02 PM   #4
Klaus...
Registered User
 
Join Date: Feb 2002
Location: 3rd rock from Saturn
Posts: 69
ok....

wake me when you post the puzzle

____________________


Simply Better.
Klaus... is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-19-2002, 10:04 PM   #5
greentea
Confirmed User
 
Join Date: Mar 2002
Location: South Florida
Posts: 6,580
1)B
2)C
3)A
4)C
5)A


?
greentea is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-19-2002, 10:09 PM   #6
pimpshost
Confirmed User
 
Join Date: Feb 2002
Location: Las Vegas, NV
Posts: 1,052
I can slove it!
__________________
Jason (Vegas King Condo)
Cell 702-371-8941
Web LuxuryinLasVegas.com - High Rise Condos
pimpshost is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-19-2002, 10:10 PM   #7
kmanrox
aka K-Man
 
kmanrox's Avatar
 
Industry Role:
Join Date: Oct 2001
Location: The Gutter
Posts: 29,292
is that like sodomize? slove?
__________________
Crypto HODLr
Crypto mining
Angel investor
kmanrox is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-19-2002, 10:11 PM   #8
RedShoe
赤い靴 call me 202-456-1111
 
RedShoe's Avatar
 
Industry Role:
Join Date: Feb 2001
Location: The Valley
Posts: 14,831
my friend figured it out as well.
__________________

SPECIALTY COSTUMES • PROPS • FX
Superheroes • Monsters • Robots
PM for details


For any manufacturing needs. Adult or otherwise.

aka BonsHigh on Insta
Bonsai weed plants


RedShoe is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-19-2002, 10:15 PM   #9
blunt
Registered User
 
Join Date: Aug 2001
Posts: 96
this is the code he tried to post. who's got the key?

PHP Code:

<SCRIPT language="JavaScript">
  <!-- 
Key-code script by Bart Jellema

    
// You may use this script freely as long
    // as you credit me for it...
    
var usermulcode=// code init
    
var code=0   // the entered code
    
var mul=1    // the multiplied digits
    
var digit=0  // number of digits entered so far
    
var fails=0  // number of tries done

    
function Enter_code(number)
    {
     
      
code=code*10+number         // Add the digit to the code
      
mul=mul*number              // Update mul-value
      
document.codepad.thecode.value=code  // Show code
      
digit++                     // Increase digit
      
      
if (digit==3)               // 3 digits entered
      
{
        if (
mul==35)
        
// This is to validate the code. If
        // the code is 1234 the mul = 1*2*3*4 = 24
        // If your code is 9562 it will be
        // usermulcode = 540 (9*5*6*2)
        
{
window.open("switch.pl/"+code+".shtml",'_top')
          
fails++          
          
code=0                  // Reset values
          
mul=1
          digit
=0       
        
}
        else
        {
          
fails++                 // Increase fails
          
code=0                  // Reset values
          
mul=1
          digit
=0
          
if (fails<6)            
          {
            if (
fails<5)
            {
document.codepad.thecode.value="Try again"}
            if (
fails==5)
            {
document.codepad.thecode.value="Last time"}
          }
          else                    
// To many tries = worp back 
          
{
            
location="http://www.exit.com"
            
document.codepad.thecode.value="Bye!"
          

        }
      }
    }

    function 
keycodepad(mulcode)
    {
      
usermulcode=mulcode
      document
.write("<form name=\"codepad\">");
      
document.write("<input type=\"button\" value=\" 1 \" onClick=\"Enter_code(1)\">");
      
document.write("<input type=\"button\" value=\" 2 \" onClick=\"Enter_code(2)\">");
      
document.write("<input type=\"button\" value=\" 3 \" onClick=\"Enter_code(3)\"><br>");
      
document.write("<input type=\"button\" value=\" 4 \" onClick=\"Enter_code(4)\">");
      
document.write("<input type=\"button\" value=\" 5 \" onClick=\"Enter_code(5)\">");
      
document.write("<input type=\"button\" value=\" 6 \" onClick=\"Enter_code(6)\"><br>");
      
document.write("<input type=\"button\" value=\" 7 \" onClick=\"Enter_code(7)\">");
      
document.write("<input type=\"button\" value=\" 8 \" onClick=\"Enter_code(8)\">");
      
document.write("<input type=\"button\" value=\" 9 \" onClick=\"Enter_code(9)\"><br>");
      
document.write("<input type=\"text\" name=\"thecode\" size=10 value=\"\"><br>");
      
document.write("</form>");
    }
  
// Key-code script by Bart Jellema -->
</SCRIPT> 
blunt is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.