User Tag List
Results 541 to 555 of 5694
Thread: Chapmans Kids Club MAIN THREAD
-
Sun, Apr 20th, 2008, 12:23 PM #541
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.
-
-
Sun, Apr 20th, 2008, 02:00 PM #542
thanks
-
Sun, Apr 20th, 2008, 05:22 PM #543CaNewbie
- Join Date
- Apr 2008
- Location
- Edmonton, Alberta
- Posts
- 11
- Likes Received
- 0
- Trading Score
- 0 (0%)
-
Sun, Apr 20th, 2008, 05:54 PM #544DontTrackMeGuest
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
.
-
Sun, Apr 20th, 2008, 06:42 PM #545Cadillac Rydah
- Join Date
- Feb 2008
- Location
- Ontario
- Age
- 36
- Posts
- 306
- Likes Received
- 0
- Trading Score
- 0 (0%)

-
Sun, Apr 20th, 2008, 07:05 PM #546Canadian 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.
-
Mon, Apr 21st, 2008, 09:02 AM #547DontTrackMeGuest
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.
-
Mon, Apr 21st, 2008, 09:12 AM #548Smart Canuck
- 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..

-
Mon, Apr 21st, 2008, 11:48 PM #549Canadian Genius
- Join Date
- Dec 2007
- Location
- B.C.
- Posts
- 6,051
- Likes Received
- 30
- Trading Score
- 332 (100%)

-
Tue, Apr 22nd, 2008, 01:38 PM #550Smart Canuck
- 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.
-
Tue, Apr 22nd, 2008, 01:51 PM #551rdadeyGuest
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.
-
Wed, Apr 23rd, 2008, 10:47 PM #552Kidsclub UserGuest
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
-
Thu, Apr 24th, 2008, 01:52 AM #553Canadian 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.
-
Thu, Apr 24th, 2008, 10:55 AM #554Senior Canuck
- 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.
-
Thu, Apr 24th, 2008, 12:10 PM #555rdadeyGuest
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.
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)

1552Likes

Send PM

