I saw a previous attempt to make a def file (for digger)
comic "digger"
start_at "http://diggercomic.com/?p=3"
for page in visit("""<a href="(?<content>[^"]*)"><img src="http://diggercomic.com/wp-content/themes/comicpress-3c/nav-next.jpg" border="0"></a>"""):
download("""<img src="(?<content>http://diggercomic.com/comics/[0-9]{4}-[0-9]{2}-[0-9]{2}-[^.]*\.(gif|jpg|jpeg|png))" """)
And tried to modify it to download Jack (http://www.pholph.com/strip.php?id=5) but it is not working:
comic "Jack"
start_at "http://www.pholph.com/strip.php?id=5&sid=363"
for page in visit("""<a href="(?<content>[^"]*)"><img src="http://www.pholph.com/strip.php?id=5" border="0"></a>"""):
download("""<img src="(?<content>http://www.pholph.com/strip.php?id=5[0-9]{4}-[0-9]{2}-[0-9]{2}-[^.]*\.(gif|jpg|jpeg|png))" """)
I know I got the start_at right, but I am not confident about the rest.