Scakk

Scakk

Joined
Feb 26, 2007

Activity Stream

Scakk   -  Jan 13, 2015

The code tags do not work on the forum correctly. All that shows when you use them is "code" and not script.

Scakk commented on a Page, Log Viewer  -  Sep 09, 2014

Update 9Sep14: Added ability to sort side list by default , channels only, Query/PM only or @Windows only. The reset feature allows you to reset to any of the mention options.

 Respond  
Scakk commented on a Page, Open dialog effect  -  Apr 17, 2013

Very interesting.

 Respond  
Scakk commented on a Page, Spellcheck  -  Apr 10, 2013

Updated: Added a check if there is nothing suggested. Made actually list out all the suggestions.

 Respond  
Scakk commented on a Page, Spellcheck  -  May 31, 2012

I just tested using your word and got

[13:29] <Goofy|AFK> !spell communifate
[13:29] Hmmm... that does not look right. Here are some possible alternate spellings:
[13:29] [Word(s)]: 12communicate, Communist, communist, communicator, community, commentate

 Respond  
Scakk commented on a Page, Spellcheck  -  May 30, 2012

What did you use when you got no result?

 Respond  
Scakk created a Page  -  May 28, 2012
469 

This little snippet will check your spelling of a word and if it is incorrect it will list out some optional spellings/words for you to chose from.

Scakk commented on a Page, Alert $Tip Message Balloon  -  Mar 17, 2012

Below is the snippet I spoke of above incase you wanted to see it or if someone else wanted to.

on ^*:notice:*:*: {
  if ($nick === MemoServ) { 
    haltdef 
    if ($1-3 === You have a) { 
      set %MemoServSender $7
      ms read $remove($8,$chr(40),$chr(41))
    }
    inc %memo 1 | set %MemoServ $+ %memo $1-
    if (%MemoServSender && %MemoServ5) {
      noop $tip(MemoServ,Memo,Sender: %MemoServSender $str($crlf,3) Message: %MemoServ5,4) 
      unset %Memo*
    }
    if (!%MemoServSender) { echo 5 -s $timestamp $nick $1- | unset %Memo* } 
  }
}
 Respond  
Scakk commented on a Page, Log Viewer  -  Feb 13, 2012

Update 13Feb12: Fixed issue if channel has "." in the title.

 Respond  
Scakk commented on a Page, Weather Bot  -  Feb 04, 2012

I am not having any issues with nor is anyone else where I am that has tried it. Have you changed something in the script?

Scakk commented on a Page, Weather Bot  -  Feb 03, 2012

@ThE ViPeR - It is working fine for me as I just tested it.

 Respond  
Scakk commented on a Page, Color Whois  -  Jan 22, 2012

There are few raws you are missing. They are below for you.

335 = +B mode on a person ( bot )
330 = logged in
320 = swhois

examples below
-- [raw numeric] $1-

[335] Goofy|AFK MrMorden is a bot on Caelestia
[330] Goofy|AFK MrMorden MrMorden is logged in as
[320] Goofy|AFK Goofy|AFK - Network Lurker

 Respond  
Scakk commented on a Page, Toolbar Clock  -  Dec 28, 2011

All I am getting is a white rectangle. I am using version 6.35.

By the way I use background color of white.

I changed "consolas" to "Fixedsys" and the "$color(background)" to "$color(notice)" and it shows on mine now.

alias startclock {
  var %color 2.3.5.6.7.10.12
  window -pBw0hf  +d @clock -1 -1 $calc($width($time(h:nn:ss TT),Fixedsys,20,0,1) + 2) 18
  drawrect -nf @clock 0 1 0 0 $calc($width($time(h:nn:ss TT),Fixedsys,20,0,1) + 2) 18
  drawtext -p @clock $gettok(%color,$r(1,7),46) Fixedsys 12 1 1 $time(h:nn:ss TT)
  if (!$toolbar(clock)) { toolbar -au clock "Clock" @clock }
  toolbar -t Clock $day
  .timerclock 0 1 clock.cont
}
alias clock.cont {
  var %color 2.3.5.6.7.10.12
  window -pBw0hf  +d @clock -1 -1 $calc($width($time(h:nn:ss TT),Fixedsys,20,0,1) + 2) 18
  drawrect -nf @clock 0 1 0 0 $calc($width($time(h:nn:ss TT),Fixedsys,20,0,1) + 2) 18  
  drawtext -p @clock $gettok(%color,$r(1,7),46) Fixedsys 12 1 1 $time(h:nn:ss TT)
  toolbar -up clock @clock
}
alias stopclock {
  .timerclock off
  close -@ @clock
  toolbar -d clock
}

The above is my version of it. The time changes colors every second. There is a popup that tells you the day when you hover your mouse over it.

 Respond  
Scakk commented on a Page, WhoIs Dialog  -  Nov 01, 2011

For ones like this

  if ( $numeric == 318 ) {
    halt
  }
  if ( $numeric == 312 ) { halt }

you can use ( extra numbers can be added just remember to leave a space between each one )

 if ($istok(312 318,$numeric,32)) { halt }
 Respond  
Scakk commented on a Page, $chr() List dialog  -  Oct 13, 2011

Why do you start at 33? There are $chr() below that that people use.

 Respond  
Scakk commented on a Page, $chr() List dialog  -  Oct 13, 2011

You posted a mIRC script in the mySQL Code section.

 Respond  
Scakk commented on a mIRC Script, Query ison checker  -  Oct 10, 2011

Interesting little snippet. Might come in handy with something else I was tinkering with.

 Respond  
Scakk commented on a Page, Horoscope  -  Sep 26, 2011

In the script find the spot that has

msg %horochan Quickie: $colored(%horoquickie1,3)

change it to

msg %horochan Quickie: $colored(%horoquickie2,3)
 Respond  
Scakk commented on a Page, Invite Dialog  -  Sep 20, 2011
    If ($did = 4) { 
      Did -x $dname $dname
      Haltdef
    }

Should be --> dialog -x $dname $dname

 Respond  
Scakk commented on a Page, Horoscope  -  Sep 16, 2011

@Jethro Fixed the channel bit. Interesting site there.

@GrimReaper. I use mIRC 6.35 also and did not get those $chr(9) ... Odd... Thanks for the score.

Scakk commented on a Page, Horoscope  -  Sep 14, 2011

Update Sep 14th 2011: Redid entire script as site changed, yet again....

[11:20] <Goofy|AFK> !horoscope libra
[11:20] Sign & Dates: 12Libra @ 12 September 23rd - October 22nd Today: 12September 14, 2011
[11:20] Quickie: 03 Appreciate the smaller things in life -- even clouds in the sky deserve your notice.
[11:20] Overview: 03 Your love life can run on autopilot for the time being -- you need to focus all this social energy on other people! Old friends, colleagues, customers, family and more all need your attention now.

 Respond  
Scakk commented on a Page, Slap Dodge  -  Sep 12, 2011

A simple way to do it

on *:action:*slap*:#: {
  var %slap-excludes = #help,#suppport
  if (!$istok(%slap-excludes,$chan,44)) {
    if ($me isin $1-) {
      inc %anti
    describe $chan dodges! $+([Slaps Dodged:,%anti,]) }
  }
}
 Respond  
Scakk commented on a Page, Name of chan in the background  -  Aug 25, 2011

Interesting.

Few notes on it.
1) May want to add a way to remove the background name.
2) The query part only works if you are PMed. Might want to add an on input to make it work if you initiate the query.
-- Could fix #2 if you alter the alias bquery to be just query then it will place the person's nick in the query window

 Respond  
Scakk commented on a Page, Horoscope  -  Jul 26, 2011

The site itself has completely changed its layout. I will either have to redo it from that site or from another one.

 Respond  
Scakk commented on a Page, Log Viewer  -  Jul 14, 2011

Update 14Jul11: Fixed issue if a person PMing you has a nick of 1 letter/number/symbol.

 Respond  
Scakk commented on a Page, RoOm LoCkDoWn   -  Jul 11, 2011

You set and remove the modes all at once.

mode $chan +smiljnut 1 and mode $chan -smiljnut

 Respond  
Scakk commented on a Page, Multi Network Looper  -  Jun 16, 2011

Every time I try using -at1 it never works me :(

mumbles about $$2

 Respond  
Scakk created a Page  -  Jun 16, 2011
3 278 

This little alias allows you to send a message , echo , /hop and many other commands that you want to use in every channel you are in on all networks you are connected to.

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.