For all you MILF and interracial lovers, let me present to you the OG of the BBC, Rebecca! She's from RebeccasOffice.com and is also known as Rebecca Dream. Most of her video content can be found in various SiteRips, but her photo content has been much harder to come by.
I discovered that hqcollect has some old photo content (Rebecca has 300+ pages), so I set about writing a script to gather all this delicious content. I'm also the author of
ATKMiner, so you know my scripting powers are legit. Anyways, once my bash script was working, I turned it on and pulled down 12k worth of photo content for your viewing pleasure.
The script renamed the hq format back to the original format (as best as I can tell) and I put them into separate directories and zipped it all up into one big (600MB, maybe not _that_ big) archive. Enjoy!!
375 galleries with over 12,000 pictures!!!
Download from Keep2Share
firebringer
PS - for anyone who is interested, this is my script:
#!/bin/bash
for i in `seq 398`
do
echo "Page $i"
lynx --source "https://hqcollect.net/downloads/616-rebeccasoffice-siterip/page-$i.html" | grep thumb | awk -F'"' ' { printf("%s.jpg#%s\n", $4, $10); }' | tr " " "-" | sed 's/thumb_//g' >> thumbfile.txt
sleep .2
done
while read line; do
dst=`echo "$line" | cut -d '#' -f 1`
src=`echo "$line" | cut -d '#' -f 2`
echo "$src -> $dst"
wget --quiet --output-document "$dst" "$src"
sleep .2
done < thumbfile.txt