Bejeweled Blitz auto-play
Loading...
2,444
Loading...
Uploader Comments (novemberdobby1)
see all
All Comments (20)
-
Wow, that's a fast bot!
-
And here is the project files:
(megaupload) d=MOWMD0RX
-
I did it in vb6:
(megaupload) id=D85LDWL7
-
@novemberdobby1 I have got my starting pixel error, thank you very much for the information but sometime it's error to got all color value 0 in last 20 second TT.
-
I'm writing conversion like that code now but now I got error about color when time passed one color has many rgb value, I'm so confused now probably an error is came from wrong pixel range ? But I think I am already test it.
Loading...
rofl I get higher scores WITHOUT cheating
DJSevenWuhnSevhen 1 year ago
@DJSevenWuhnSevhen I doubt it.
Also, "People need to stop trying to make smart snide remarks on youtube"
novemberdobby1 1 year ago
Isn't GetPixel got any wrong color ?
luvlubb 1 year ago
@luvlubb what do you mean?
novemberdobby1 1 year ago
@novemberdobby1 I have tried to write c++ program to play with this game too but when my program run for a few second about 20-30 sec, My program got 255,255,255 (R,G,B) for all pixel, do you have any bugs like this ?
luvlubb 1 year ago
@luvlubb No, there's probably an error in your conversion to RGB or something, I did it like this:
HDC hDC = GetDC(HWND_DESKTOP);
COLORREF rgb;
//...
rgb = GetPixel(hDC, xscan, yscan);
r = (int)GetRValue(rgb);
g = (int)GetGValue(rgb);
b = (int)GetBValue(rgb);
novemberdobby1 1 year ago