Advertisement
ereinion

Dreadinfo

Nov 10th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. void main() {
  2.     buffer raidlog = visit_url("clan_raidlogs.php");
  3.     string pattern = "<br>(\\w+) \\(#\\d+\\) acquired a chunk of moon-amber \\(1 turn\\)<br>";
  4.     matcher m = create_matcher(pattern, raidlog);
  5.  
  6.     if (m.find()) {
  7.         print_html("<font color=008800>" + m.group(1) + " retrieved the moon-amber.</font>");
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement