Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. rule "rule report to user" {
  2. when{
  3. $ctr: Counter $ctr.count % 1000 == 0 {count: $count}
  4. }
  5. then{
  6. console.log("Progressing...");
  7. modify($ctr, function(){this.count = $count + 1;});
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement