User Tag List

Page 37 of 380 FirstFirst ... 27 35 36 37 38 39 47 87 137 ... LastLast
Results 541 to 555 of 5694
Like Tree1552Likes

Thread: Chapmans Kids Club MAIN THREAD

  1. #541
    Smart Canuck MissScrooge's Avatar
    Join Date
    Jun 2007
    Age
    43
    Posts
    1,184
    Likes Received
    6
    Trading Score
    0 (0%)



    Welcome everyone!

    Sanrio: 3pm was used as an example. Pick any time, play til 750 points and then after that time the next day, log-in for the extra points. Then any time after midnight play til 750 points so you can claim your next set of points etc. If you miss a day then you'll have to re-start the process. DON'T pick 12am as your time. The log-in is every 24 hours (in otherwords you have to wait to claim). Whereas with the games you could play and claim 750 points at 11pm and then claim another 750 right away after 12am. If you pick a time after midnight, give yourself time to play first so that the 35 points don't get grouped in with your original 750.


  2. #542
    ..... 604girl's Avatar
    Join Date
    Apr 2007
    Posts
    737
    Likes Received
    36
    Trading Score
    37 (100%)



    thanks

  3. #543
    CaNewbie
    Join Date
    Apr 2008
    Location
    Edmonton, Alberta
    Posts
    11
    Likes Received
    0
    Trading Score
    0 (0%)


    Quote Originally Posted by gychan View Post
    Does anybody know if they switch between the toque and a ballcap seasonally? I received a toque and LOVE it; the microfibre fleece interior is very soft, and the loop at the top will help me hook it on the same hanger that I hang my coat, so it's less likely to get lost.

    However, I checked today, and they are not listing the toque any more.
    Ah, now I see. They switched from a "Scandanavian"-looking toque with built-in earflaps and chin tie-ups to a more "North American" toque which is more like a dome.

    When I get enough points, I will get the new toque to compare.

  4. #544
    DontTrackMe
    Guest
    I know that some people would consider this cheating , but found a way for the computer to play the memory game for me. The downside of this brute force is that it takes a lot longer than doing the game manually. So for the current maximum of 750 points, it takes 17 games or upwards of 119 minutes! On the upside, the computer does it while I'm at work or away from the PC:

    1. Download and install AutoHotKey, an automation macro program that's freeware. (I've also found it very handy for filling in contest entries where AutoFill for Firefox doesn't work.)

    2. Start the AutoHotKey program.

    3. Right-click on the 'H' icon in your taskbar and click on "Edit This Script."

    4. Paste this at end or other empty area:
    !3:: ; Alt + 3
    ; Variables.

    FirstClickRows = 4 ; Y-coords
    SecondClickRows = 4 ; Y-coords
    Row1 = 350
    Row2 = 460
    Row3 = 550
    Row4 = 660

    FirstClickCols = 5 ; X-coords
    SecondClickCols = 5 ; X-coords
    Col1 = 370
    Col2 = 465
    Col3 = 560
    Col4 = 655
    Col5 = 750

    GamesToPlay = 16 ; To get 750 pts after 35 pts for logging in.
    GamesPlayed = 0

    Loop, %GamesToPlay%
    { ; Start a game.
    Send !d ; Go to address bar.
    Sleep 100 ; Pause before next command.
    SendRaw http://www.kidsclub.ca/english/memory/memorygame2a.asp
    Sleep 100 ; Pause before next command.
    Send {Enter} ; Go to webpage

    If (GamesPlayed == 0)
    {
    Sleep 9000 ; Wait for extra long for a game to load.
    } else {
    Sleep 3000 ; Don't have to wait as long for 2nd(+) games.
    }

    FirstClickYCoord = 0
    FirstClickXCoord = 0
    SecondClickYCoord = 0
    SecondClickXCoord = 0
    SecondClickCount = 0
    DonePass = 0 ; False.

    Loop, %FirstClickRows%
    { ; Loop thru FirstClick rows.
    FirstClickYCoord++
    IfEqual, DonePass, 1, Break

    Loop, %FirstClickCols%
    { ; Loop thru FirstClick cols.
    IfEqual, DonePass, 1, Break
    FirstClickXCoord++

    If Mod(FirstClickXCoord, 6) = 0
    { ; If multiple of number columns, reset to 1.
    FirstClickXCoord = 1
    } ; If multiple of number columns, reset to 1.
    FirstClickXGroup := Col%FirstClickXCoord%
    FirstClickYGroup := Row%FirstClickYCoord%

    Loop, %SecondClickRows%
    { ; Loop thru SecondClick rows.
    SecondClickYCoord++
    IfEqual, DonePass, 1, Break

    Loop, %SecondClickCols%
    { ; Loop thru SecondClick cols.
    SecondClickXCoord++

    If Mod(SecondClickXCoord, 6) = 0
    { ; If multiple of number columns, reset to 1.
    SecondClickXCoord = 1
    } ; If multiple of number columns, reset to 1.

    SecondClickXGroup := Col%SecondClickXCoord%
    SecondClickYGroup := Row%SecondClickYCoord%

    ; The following line should be on one line, but is wrapping in the forum message editor.
    If (((FirstClickYCoord == SecondClickYCoord) && (FirstClickXCoord < SecondClickXCoord)) || (FirstClickYCoord < SecondClickYCoord))
    { ; If not dealing with previous first clicks.
    Click %FirstClickXGroup% %FirstClickYGroup%
    Click %SecondClickXGroup% %SecondClickYGroup%
    Sleep 2000
    } ; End If not dealing with previous first clicks.

    SecondClickCount++
    If Mod(SecondClickCount, 20) = 0
    { ; If finished a pass of the second clicks.
    SecondClickYCoord = 0 ; Reset X coord count to 0.
    SecondClickXCoord = 0 ; Reset Y coord count to 0.
    } ; End If finished a pass of the second clicks.

    Send !d ; Go to address line and highlight it.
    Sleep 100
    Send ^c ; copy address line into clipboard.
    Clipped = %clipboard%
    IfInString, Clipped, GameOver
    {
    DonePass = 1
    Break
    }
    } ; End Loop SecondClick Cols
    } ; End Loop SecondClick Rows
    } ; End Loop FirstClick cols
    } ; End Loop FirstClick rows
    } ; End a game.
    Return

    #x::ExitApp

    5. Now to run the script, open a web browser, go to the kid's club, and login.

    6. Press <Alt>+3, and see if it works. If it doesn't work, press <Windows>+x to end the automation macro.

    7. Depending upon your screen resolution, you may have to adjust the row and column coordinates. Please see the AutoHotKey documentation on how to do this.

    8. Yes, I know that a lot of the code should be indented to various degrees, but after I choose the indentation tool in the message formatter, it all went away .

  5. #545
    Cadillac Rydah Master_J's Avatar
    Join Date
    Feb 2008
    Location
    Ontario
    Age
    36
    Posts
    306
    Likes Received
    0
    Trading Score
    0 (0%)



    Quote Originally Posted by DontTrackMe View Post
    I know that some people would consider this cheating , but found a way for the computer to play the memory game for me. The downside of this brute force is that it takes a lot longer than doing the game manually. So for the current maximum of 750 points, it takes 17 games or upwards of 119 minutes! On the upside, the computer does it while I'm at work or away from the PC:

    1. Download and install AutoHotKey, an automation macro program that's freeware. (I've also found it very handy for filling in contest entries where AutoFill for Firefox doesn't work.)

    2. Start the AutoHotKey program.

    3. Right-click on the 'H' icon in your taskbar and click on "Edit This Script."


    4. Paste this at end or other empty area:
    !3:: ; Alt + 3

    ; Variables.


    FirstClickRows = 4 ; Y-coords

    SecondClickRows = 4 ; Y-coords

    Row1 = 350

    Row2 = 460

    Row3 = 550

    Row4 = 660


    FirstClickCols = 5 ; X-coords

    SecondClickCols = 5 ; X-coords

    Col1 = 370

    Col2 = 465

    Col3 = 560

    Col4 = 655

    Col5 = 750


    GamesToPlay = 16 ; To get 750 pts after 35 pts for logging in.

    GamesPlayed = 0


    Loop, %GamesToPlay%

    { ; Start a game.

    Send !d ; Go to address bar.

    Sleep 100 ; Pause before next command.


    Sleep 100 ; Pause before next command.

    Send {Enter} ; Go to webpage


    If (GamesPlayed == 0)

    {

    Sleep 9000 ; Wait for extra long for a game to load.

    } else {

    Sleep 3000 ; Don't have to wait as long for 2nd(+) games.

    }


    FirstClickYCoord = 0

    FirstClickXCoord = 0

    SecondClickYCoord = 0

    SecondClickXCoord = 0

    SecondClickCount = 0

    DonePass = 0 ; False.


    Loop, %FirstClickRows%

    { ; Loop thru FirstClick rows.

    FirstClickYCoord++

    IfEqual, DonePass, 1, Break


    Loop, %FirstClickCols%

    { ; Loop thru FirstClick cols.

    IfEqual, DonePass, 1, Break

    FirstClickXCoord++


    If Mod(FirstClickXCoord, 6) = 0

    { ; If multiple of number columns, reset to 1.

    FirstClickXCoord = 1

    } ; If multiple of number columns, reset to 1.

    FirstClickXGroup := Col%FirstClickXCoord%

    FirstClickYGroup := Row%FirstClickYCoord%


    Loop, %SecondClickRows%

    { ; Loop thru SecondClick rows.

    SecondClickYCoord++

    IfEqual, DonePass, 1, Break


    Loop, %SecondClickCols%

    { ; Loop thru SecondClick cols.

    SecondClickXCoord++


    If Mod(SecondClickXCoord, 6) = 0

    { ; If multiple of number columns, reset to 1.

    SecondClickXCoord = 1

    } ; If multiple of number columns, reset to 1.


    SecondClickXGroup := Col%SecondClickXCoord%

    SecondClickYGroup := Row%SecondClickYCoord%


    ; The following line should be on one line, but is wrapping in the forum message editor.

    If (((FirstClickYCoord == SecondClickYCoord) && (FirstClickXCoord < SecondClickXCoord)) || (FirstClickYCoord < SecondClickYCoord))

    { ; If not dealing with previous first clicks.

    Click %FirstClickXGroup% %FirstClickYGroup%

    Click %SecondClickXGroup% %SecondClickYGroup%

    Sleep 2000

    } ; End If not dealing with previous first clicks.


    SecondClickCount++

    If Mod(SecondClickCount, 20) = 0

    { ; If finished a pass of the second clicks.

    SecondClickYCoord = 0 ; Reset X coord count to 0.

    SecondClickXCoord = 0 ; Reset Y coord count to 0.

    } ; End If finished a pass of the second clicks.


    Send !d ; Go to address line and highlight it.

    Sleep 100

    Send ^c ; copy address line into clipboard.

    Clipped = %clipboard%

    IfInString, Clipped, GameOver

    {

    DonePass = 1

    Break

    }

    } ; End Loop SecondClick Cols

    } ; End Loop SecondClick Rows

    } ; End Loop FirstClick cols

    } ; End Loop FirstClick rows

    } ; End a game.

    Return


    #x::ExitApp


    5. Now to run the script, open a web browser, go to the kid's club, and login.


    6. Press <Alt>+3, and see if it works. If it doesn't work, press <Windows>+x to end the automation macro.


    7. Depending upon your screen resolution, you may have to adjust the row and column coordinates. Please see the AutoHotKey documentation on how to do this.


    8. Yes, I know that a lot of the code should be indented to various degrees, but after I choose the indentation tool in the message formatter, it all went away .

    lol thats funny, does it actually work ?

  6. #546
    Canadian Genius
    Join Date
    Dec 2007
    Location
    B.C.
    Posts
    6,051
    Likes Received
    30
    Trading Score
    332 (100%)



    I got 35 points after signing in. But, still the maximum I can get today is 750 points - not 35+750 points.

    Well, it's okey. I have fun & play one more game.

  7. #547
    DontTrackMe
    Guest
    Quote Originally Posted by Master_J View Post
    lol thats funny, does it actually work ?
    It works on my laptop, where the resolution is set to 1280 x 800, and I am using Firefox. It may not work if your screen resolution doesn't allow you to see the whole board, so you might have to change the resolution till it does.

    If you are using Internet Explorer, or a slightly different setup than me, you would likely have to change the X- and Y- coordinates, but that is pretty easy. I tried to clearly label all variables.

    Another caveat is that you should use the "dialup" speed even if you're on a broadband connection.

  8. #548
    Smart Canuck LisaLisaBoBisa's Avatar
    Join Date
    Jun 2007
    Location
    Toronto
    Posts
    2,657
    Likes Received
    1642
    Trading Score
    80 (100%)




    lol -- I am lucky I know how to get to the address bar in order to go to the kids club.. I wouldnt know where to begin even with the instruction, but I still think you're brilliant DONTTRACKME..

  9. #549
    Canadian Genius
    Join Date
    Dec 2007
    Location
    B.C.
    Posts
    6,051
    Likes Received
    30
    Trading Score
    332 (100%)



    Quote Originally Posted by MissScrooge View Post
    Welcome everyone!

    Sanrio: 3pm was used as an example. Pick any time, play til 750 points and then after that time the next day, log-in for the extra points. Then any time after midnight play til 750 points so you can claim your next set of points etc. If you miss a day then you'll have to re-start the process. DON'T pick 12am as your time. The log-in is every 24 hours (in otherwords you have to wait to claim). Whereas with the games you could play and claim 750 points at 11pm and then claim another 750 right away after 12am. If you pick a time after midnight, give yourself time to play first so that the 35 points don't get grouped in with your original 750.


    OOOh. I see. Now I get it. Thank you.

  10. #550
    Smart Canuck Grey's Avatar
    Join Date
    Apr 2008
    Location
    GTA
    Posts
    4,854
    Likes Received
    3645
    Trading Score
    107 (100%)




    After a looong wait, I finally got my truck today.
    I claimed it on March 14, when Chapman's put it back on the prize list and when it was still 7500 pts.

  11. #551
    rdadey
    Guest
    I use to use a trick that got me 300 or so extra points a day. I don't know if it still works since I don't bother with the site anymore. No need to be greedy.

    Anyway, I don't know if I should disclose it because it might tick Chapman's off if suddenly everyone started getting 4 or 500 extra points a day and they might do something like increase points for prizes or shut it down. As it stands it's incredible that they give away what they do.

    Did anyone else get the extra points like I did, if you know how you know what I'm talking about.

  12. #552
    Kidsclub User
    Guest
    I want to know how to get the 300 or so extra points.. im 13 and dont have that much time to play please tell me

  13. #553
    Canadian Genius
    Join Date
    Dec 2007
    Location
    B.C.
    Posts
    6,051
    Likes Received
    30
    Trading Score
    332 (100%)



    I want to know too, but I really don't have extra time to play and get that extra 300 to 400 points (except holiday and weekend). Thank you.

  14. #554
    Senior Canuck crafter7's Avatar
    Join Date
    Jan 2008
    Location
    Thorold, Ontario
    Age
    53
    Posts
    666
    Likes Received
    1
    Trading Score
    1 (100%)




    rdadey, sorry, but I don't think that you should be telling people that there are ways to scam a site that is generous enough to give prizes away just for playing some kids games. Like you said yourself, if they catch on then they will shut it down and ruin it for those that are honestly using the site.

  15. #555
    rdadey
    Guest
    That's why I'm not tellin'...sorry Kidsclub User.

    It's only collecting points for prizes and anyone can eventually get the points they need. Why risk something so good just to get yout prize a day or two faster.

Page 37 of 380 FirstFirst ... 27 35 36 37 38 39 47 87 137 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •