mIRC Homepage
Posted By: TheOriginalRGH help please! - 03/02/15 06:44 AM
im trying to get a script where i could give points to everyone watching the stream at the same time example !give 100 points all
Posted By: michaelukz Re: help please! - 03/02/15 07:19 AM
Just saying, There are hundreds out there that have other features and are easy to edit / remove certain stuff, I recommend you look around for a bit dude.
Posted By: TheOriginalRGH Re: help please! - 03/02/15 07:21 AM
where can i find one!! i been looking but i cant even find one
Posted By: michaelukz Re: help please! - 03/02/15 09:03 AM
https://www.youtube.com/watch?v=ZxYD5eZ0gx0

Try that, Not only does it show you how to do it, But it's a great series in general, With tons of different tutorials.
Posted By: TheOriginalRGH Re: help please! - 03/02/15 11:32 AM
youtube video did not help
Posted By: michaelukz Re: help please! - 03/02/15 11:57 AM
I posted that because it was hotlinked, If I am remembering correctly there was 3 videos of the point system.
Posted By: Nillen Re: help please! - 03/02/15 08:55 PM
I assume you're using the widely spread points system, here's a code that uses the same syntax as that one. I wouldn't recommend using that script in the longrun however.

I also don't recommend using this script in any channel with more than 50 users or if there is over 1000 data in the ini file.
Code:
on *:text:!give *:#: { 
if (($nick !isop #) || ($3 !isnum) || ($0 < 3)) return
if ($2 != all) doaddpoints # $2 $3
else { 
var %nicks $nick(#,0)
while (%nicks) {
var %nick $nick(#,%nicks)
doaddpoints # %nick $3
dec %nicks
}
}
} 
;Syntax: !give <Specific user|All> <value>
© mIRC Discussion Forums