mIRC Home    About    Download    Register    News    Help

Print Thread
#246888 10/07/14 06:27 AM
Joined: Apr 2014
Posts: 170
Bramzee Offline OP
Vogon poet
OP Offline
Vogon poet
Joined: Apr 2014
Posts: 170
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!

Joined: Mar 2015
Posts: 14
V
Pikka bird
Offline
Pikka bird
V
Joined: Mar 2015
Posts: 14
I know this is a bit old, but were you able to find the script for this? I'm also looking for the same.

Joined: Jun 2014
Posts: 248
B
Fjord artisan
Offline
Fjord artisan
B
Joined: Jun 2014
Posts: 248
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