mIRC Home    About    Download    Register    News    Help

Print Thread
#246888 10/07/14 06:27 AM
B
Bramzee
Bramzee
B
Is there a possibility to create a script to add points to all users currently in the chat? I'd like to start adding points to anyone that is in my stream after about 10 minutes from starting it. If it's possible, I know I could figure it out with some guidance. However, if anyone already has the script written out that would save some time. But, I really don't mind. Thanks guys!

#253100 25/05/15 06:19 PM
V
vip3r22
vip3r22
V
I know this is a bit old, but were you able to find the script for this? I'm also looking for the same.

#253129 27/05/15 04:14 PM
B
Belhifet
Belhifet
B
I just kinda copied this from another post hidden in the top 3 or 4 recent posts...

Code:
alias pointsforall {
  var %v = 1
  while (%v <= $nick($1,0)) {
    add.pts $nick($1,%v) (or whatever syntax your add.pts uses)
    inc %v
  }
}


Link Copied to Clipboard