ReFuSeR

ReFuSeR

Joined
Jan 04, 2009
Website

Activity Stream

ReFuSeR commented on a Page, Automate invite  -  Aug 01, 2009

Woops, on *:join:#: { .invite $nick (your-chan) }

I think that is it. :)

 Respond  
ReFuSeR commented on a Page, Automate invite  -  Aug 01, 2009

I can see how this can be useful.

on *:join:$chan: { .invite $nick (your-chan) }

 Respond  
ReFuSeR commented on a Page, Simple Invite  -  Aug 01, 2009

Foolish me, I did not see this script has posted in 2005, lol.

 Respond  
ReFuSeR commented on a Page, Simple Invite  -  Aug 01, 2009

I am sorry if I offend you but I cannot possible see how this would be useful.

Also, no need for the "$2-".

You can just use "$2".

I think someone else explained the difference between $2- and $2

 Respond  
ReFuSeR commented on a Page, My First Dialog: mIRC On-Screen Keyboard  -  Mar 09, 2009

I tried that... It adds a bunch of letters :(

EDIT:
I did most of the buttons by trial and error... When I was just about finished I stumbled across that DSTUDIO program. Then I used that the position the buttons a bit better than I had it. Basically wha tI am trying to say is that... I did most of the work without that program

EDIT 2:
You can find DTUDIO here:
http://www.mirc.org/project/1200633000

 Respond  
ReFuSeR commented on a Page, My First Dialog: mIRC On-Screen Keyboard  -  Mar 09, 2009

@ Kirby: I did use DSTUDIO to position the buttons better.
Are macros possible? If yes... Can I see a little example script.

EDIT:
I updated the script again but backspace and space. They are still quite bugged in some unexplainable ways.

 Respond  
ReFuSeR commented on a Page, My First Dialog: mIRC On-Screen Keyboard  -  Mar 09, 2009

I tried the $chr(32) and that didn't work but the $chr(160) did. Thanks alot tv3636. I added you and Kirby to my credits.

EDIT:
I see... The $chr(160) is a character of somekind... It isn't picked up as a space but it is picked up as a invisible chr of somekind.

 Respond  
ReFuSeR commented on a Page, (Obama / McCain) - Socket + Dialog Tutorial  -  Mar 09, 2009

LOL Kirby... This snippet was random but very impressive. I have not mastered those darned sockets yet.

 Respond  
ReFuSeR commented on a Page, My First Dialog: mIRC On-Screen Keyboard  -  Mar 09, 2009

Thanks Kirby! I will use your method in my V2 script.

As you can see... The spacebar doesn't work because I didn't figure out a way to get it to create a space. Do you know of a way?

 Respond  
ReFuSeR commented on a Page, My First Dialog: mIRC On-Screen Keyboard  -  Mar 09, 2009

Thank you... If anyone knows a way to get the spacebar working... Please post.

 Respond  
ReFuSeR commented on a Page, Operators Logging Script v2  -  Mar 09, 2009

Other than what Aucun pointed out... That is a very nice script.

 Respond  
ReFuSeR created a Page  -  Mar 09, 2009
1 624 

(The 2007 copyright was a small typo... I fixed it in the script)

ReFuSeR commented on a Page, Smiley Script V2!  -  Mar 09, 2009

Yea... I had no idea how easy it was... I added a option for the alias in my script. Thanks... Also, I will be releasing a pretty cool Dialog in a while.

 Respond  
ReFuSeR commented on a Page, Smiley Script V2!  -  Mar 06, 2009

I am sorry... I get kinda heated when it comes to code. I apologize

EDIT:
@ Kirby: You have a point... I do not know how to use Aliases. :(

 Respond  
ReFuSeR commented on a Page, Smiley Script V2!  -  Mar 05, 2009

@ Aucun50 If it works fine with it what is the point of telling me that?

@ Aucun50 That only happens if you do not put a channel to send the smile to.

@ Kirby... Leave if you have nothing good to say.

EDIT:
I fixed that little problem... It should be flawless now.

I also added some extras... If your not on the channel it will send a error message

 Respond  
ReFuSeR created a Page  -  Mar 04, 2009
943 

Post it in your remotes... Type /smile (channel). The channel you type it in gets a big smile from you. Enjoy!

ReFuSeR commented on a Page, Untouchable/Unbanable Script V3!!!!  -  Feb 09, 2009

thanks... this is nice..

 Respond  
ReFuSeR commented on a Page, FunScript/FunBot Script V1!!!  -  Feb 05, 2009

Will do...

 Respond  
ReFuSeR created a Page  -  Feb 02, 2009
1,289 

This is my second release... My first release was not to good but this one is better.

ReFuSeR commented on a Page, !Ban & !Infoban  -  Feb 02, 2009

A little mistake in the !ban which I fixed...

on *:text:!ban*:#:{
  if ($1- == !ban) { /notice $nick Say: !ban <Name> <Reason> | halt
  }
  if $gettok($read(Baninfo.txt,w,$2),2,32) !== $null {
    .msg # That name has been banded.
    halt
  }
  else {
    if ($nick isop $chan) || ($nick ishop $chan) {
      hmake $2
      hadd $2 user $2
      hadd $2 bannedby $nick
      hadd $2 reason $3-
      hadd $2 channel $chan
      hadd $2 issue $fulldate
      hsave -i $2 baninfo.ini $hget($2,user)
      write -l1 baninfo.txt $calc($read(baninfo.txt,-1) + 1)
      write baninfo.txt $2 $nick
      timer 1 1 .msg # 14 Created by 4 Purcell, 14 Modified by 4 Khmer 14
      timer 1 2 .msg # User:  $2  , Bannedby::  $nick  , Reason:  $3- 
      timer 1 4 /mode # +b $2
      timer 1 5 /notice $2 14 Say 4 !infoban 14 for see why ur bannnedby:
      timer 1 7 /kick # $2 $3-
    }
    else /notice $nick Your don't got @ or % ! | halt
  } 
}
 Respond  
ReFuSeR commented on a Page, Untouchable/Unbanable Script V3!!!!  -  Jan 07, 2009

I released V2... I know there is alot of spam but that was the only way I could attempt it to be FULL PROOF

EDIT:
V3 will be released in a few days.

I will be adding a few things and taking most of the spam out.

NOTE:
This script works ALOT better with a bot or second connection running it

 Respond  
ReFuSeR commented on a Page, Untouchable/Unbanable Script V3!!!!  -  Jan 05, 2009

Update:
I have been testing and testing and testing this script... Trying every little bug known to IRC... Any kinda way that someone can get away with it and we found about 12 or 15 different ways someone can get out of it. I will try to fix these problems the best way I can in V2. Also... This script is more affective with a second connection running on the server.

Once I fix these little bugs I will release V2 today

 Respond  
ReFuSeR commented on a Page, Untouchable/Unbanable Script V3!!!!  -  Jan 05, 2009

I see.... I will look into that when doing my v2 version. I am sorry that this doesn't work for you and I hope I will find a fix for it.

 Respond  
ReFuSeR commented on a Page, Untouchable/Unbanable Script V3!!!!  -  Jan 05, 2009

In v2 I will add that. Thank you.

Also.. Please note that this is my first script so I hope it isn't too noobish.

 Respond  
ReFuSeR commented on a Page, Untouchable/Unbanable Script V3!!!!  -  Jan 05, 2009

Hmmm, I have no idea what a "Access List" is. Can you explain?

 Respond  
ReFuSeR created a Page  -  Jan 05, 2009
1,411 

Well basically I made this script because one day someone came into my chat. He has been a great user for 3 days so I assigned him SOP. I went to sleep and when I woke up I was banned from my own channel. I had to wait till one of my IRC admins signed in to unban me that that took a few hours. So I made this script that I like to call "The Untouchable/Unbanable Script."

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.