Advertisement
kolpastebin

RoseLog.ash

Oct 2nd, 2016
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. void main()
  2. {
  3. while (true)
  4. {
  5. string [int][int] groups = visit_url("shop.php?whichshop=flowertradein").group_string("Chroner</b>&nbsp;<b>.([0-9]*).");
  6. string [int] found;
  7. foreach key in groups
  8. {
  9. found[found.count()] = groups[key][1];
  10. }
  11.  
  12. string output = "Rose->Chroner values at " + time_to_string() + ": ";
  13. foreach key, number in found
  14. {
  15. if (key != 0)
  16. output += ", ";
  17. output += number;
  18. }
  19. print(output);
  20. waitq(900);
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement