Advertisement
kolpastebin

Open advent calendar script.ash

Dec 5th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. //Warning: will punch open all of your calendar.
  2. void main()
  3. {
  4. string [int, int] parsed = visit_url("campground.php?action=advent").group_string("=campground.php.preaction=openadvent&whichadvent=([0-9]*)>");
  5.  
  6. foreach key in parsed
  7. {
  8. string id = parsed[key][1];
  9. if (id.is_integer())
  10. visit_url("campground.php?preaction=openadvent&whichadvent=" + id);
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement