Fuzionx

Fuzionx

Joined
Nov 19, 2010

Activity Stream

Fuzionx commented on a Page, Greet Message  -  Feb 15, 2012
on *:JOIN:#YourChannel:{ .notice $nick Welcome to $chan $nick $+ ! [your message here] }

You can use $chan in the script itself, since it only triggers in the channel you provide at #YourChannel in the ON JOIN event.
Added a . before notice, this will silence the command. If you use it, you don't see that you noticed someone. Try it out.

 Respond  
Fuzionx commented on a Page, Lottery Ball Generator  -  Feb 15, 2012

This is what I mean:

if ($1 == !pick) { 
  msg $chan 12,1 $nick Spins the wheel.....!!  The Wheel Stops the ball number is:
  msg $chan 14,1 Ball - $rand(1,49)
}

This does exactly the same as your other 49 lines script.

You can also use $r(1,49), in stead of $rand(1,49). But that doesn't matter a lot.

 Respond  
Fuzionx commented on a Page, Lottery Ball Generator  -  Feb 12, 2012

For !pick you can use something like:

msg $chan Ball - $r(1,49)

As for !gift, you can put all the messages in a gift.txt for example and use:

describe $chan $read(gift.txt)

This saves you a lot of unnecessary repetitions.

 Respond  
Fuzionx commented on a Page, clear chat  -  Jan 10, 2012

@Abcdefmonkey: It seems that /clear actually clears the chatspace for everyone on certain servers..

The brackters are still missplaced and / $+ clear can just be done as /clear.
Try this:

on *:TEXT:c:#: {
  if ($me isop # && $nick isop #) {
    .timererase 1 1 msg # /clear
    .timererase 1 2 msg # $nick $+ , has Erased the chatroom.
  }
  else {
    .notice $nick Either me or you have no permission to clear the chatspace in #
  }
}
 Respond  
Fuzionx commented on a Page, Simple Youtube Downloader  -  Jan 07, 2012

Thanks, works perfectly now! Like + 10/10

Glad I could help ^^

 Respond  
Fuzionx commented on a Page, Simple Youtube Downloader  -  Jan 07, 2012

Works good now, except the convert dialog which isn't updating and not closing after the conversion has been completed.

 Respond  
Fuzionx commented on a Page, Simple Youtube Downloader  -  Jan 07, 2012

Download only works with the lower quality types, the higher ones give the $read() error. The conversion does work but the dialog with the remaining time and icons doesn't work.

 Respond  
Fuzionx commented on a Page, Simple Youtube Downloader  -  Jan 06, 2012
  • $read: error opening C:\Users\User\AppData\Roaming\mIRC\wget\fH-H4MW--W8mp4 (line 200, YouTube_Downloader.mrc)

Also. I'm getting the choose video quality screen when I chose audio only.

 Respond  
Fuzionx commented on a Page, Simple Youtube Downloader  -  Jan 06, 2012

C:\Users\\AppData\Roaming\mIRC\

And Abdcef posted his output above. Same as mine.

 Respond  
Fuzionx commented on a Page, Simple Youtube Downloader  -  Jan 06, 2012

@Abcdefmonkey The last line isn't the problem:
9 is 8
10 is 9
8 increases to 9 after the last line has been excecuted, so it works. This is the problem:

$Execute(%comname,AdodbStream.savetofile $+($qt($2),$chr(44),2))
 Respond  
Fuzionx commented on a Page, Simple Youtube Downloader  -  Jan 06, 2012

8 is 8
9 is 8
10 is 9

Windows 7 64bit
Microsoft security essentials
Windows Firewall on (off doesn't work either)
No programs blocking things

$Execute(%comname,AdodbStream.savetofile $+($qt($2),$chr(44),2))

This is the error line, it errors on every file it's trying to download. I downloaded them manually and then it fails 1 time, when it downloads the actual youtube file:

if ($WshVbscriptDownload($+(http://www.youtube.com/watch?v=,$1),%file)) 
 Respond  
Fuzionx commented on a Page, Simple Youtube Downloader  -  Jan 06, 2012

Doesn't work for me too. I'm running version 7.1.
It seems the http://fordlawnmower.googlecode.com/files/ links doesn't work.

 Respond  
Fuzionx commented on a Page, Simple Voice Halfop Op snippet  -  Jan 05, 2012

Yeah I know, I just find it a bit of a dirty way ^^

 Respond  
Fuzionx commented on a Page, Simple Voice Halfop Op snippet  -  Jan 05, 2012

Why /halt if you can use else?

 Respond  
Fuzionx commented on a Page, Channel auto voice  -  Dec 29, 2011

No to put a . before mode since it won't silence anything. Also: '% [ $+ autovoice. $+ [ $chan ] ]' can be done like this: '%autovoice $+ [ $chan ]' or '$+(%autovoice,$chan)'.

And why won't you just give everybody autovoice access using ChanServ?

 Respond  
Fuzionx commented on a Page, ./quit  -  Dec 29, 2011

Don't bother messaging people if they don't have access for that command, it's useless and makes people try to abuse it.

E: Oh it's a really old snippet lol..

 Respond  
Fuzionx commented on a Page, Bluedragons simple kick  -  Dec 29, 2011

Changing your nickname won't help you if !@host is banned, which is ban type 2.

@blackvenom: /ban is a client side command so I think the ban types are client side too.

 Respond  
Fuzionx commented on a Page, Useless Facts  -  Dec 29, 2011

Can someone ban that guy lmao.

 Respond  
Fuzionx commented on a Page, Useless Facts  -  Dec 28, 2011

Nice one Jethro, although I don't understand why you would want a 2 second delay on the message itself at such script.

 Respond  
Fuzionx commented on a Page, Bluedragons simple kick  -  Dec 28, 2011

2 sets the ban type. You can see then with /help $mask

2: !@host

About the script: A bit of an overkill, you should try something with a txt/ini file or just type in the kick/ban message yourself by using $?"Kick/ban message".

 Respond  
Fuzionx commented on a Page, Variable reader ($vget)  -  Dec 28, 2011

Yeah, I misunderstood the script a bit. I thought you had to use something like $vget(%var,$me) etc lol.

 Respond  
Fuzionx commented on a Page, Variable reader ($vget)  -  Dec 28, 2011

You're right, it also 'works' without the tokenize because the variables are evaluated somewhere else too.

 Respond  
Fuzionx commented on a Page, Variable reader ($vget)  -  Dec 28, 2011

@WorldDMT I'm just saying the variables aren't evaluated if you don't use tokenize. What's so strange about that?

 Respond  
Fuzionx commented on a Page, Variable reader ($vget)  -  Dec 27, 2011

@WorldDMT if he doesn't tokenize $($1-,2), the variables aren't evaluated and will just be plain text like: %var.

 Respond  
Fuzionx commented on a Page, Botserv Possesion version 2.1  -  Dec 26, 2011

You can use 'elseif' instead of 'else if' at the on :input: part. And I don't believe there is need for a HALT every time.

 Respond  
Fuzionx commented on a Page, Kick by Nick length  -  Dec 20, 2011

$2 is the length you typed in, not the nickname length. But I get your point, the check is a bit useless.

 Respond  
Fuzionx commented on a Page, Kick by Nick length  -  Dec 20, 2011

"1-" makes sure the length is >0, I guess that's his intention.

 Respond  
Fuzionx commented on a Page, Kick by Nick length  -  Dec 20, 2011
$$len($$?="Enter length")

This will cause your script not to work properly. If someone enters "10" it will be: $len(10) = 2. And the double $ have no use either if I'm not mistaken.

if ($len(%nick) == $2) {  $iif(%nick ison $1,kick $1 %nick  $iif($3,$3-,Banned),noop) }

This will kick everyone with the exact length you entered, not the ones who have a nickname longer than it. If you want that, you should use ">=". And you could do the if %nick ison $1 check in the first if statement.

Try this:

if ($len(%nick) == $2) && (%nick ison $1) {
  kick $1 %nick  $iif($3,$3-,Banned)
}

Note: I did not change "==" to ">=" in this code.

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.