Gecko321

Gecko321

Joined
Mar 11, 2008

Activity Stream

Gecko321 commented on a Page, TVRage v2.5  -  Sep 12, 2012

thanks... I'll look into the issues and get them fixed

 Respond  
Gecko321 commented on a Page, IRC Pre Bot v2.1  -  Jul 13, 2012

welcome.. where ru at.. might drop by and visit

 Respond  
Gecko321 commented on a Page, TVRage v2.5  -  Jul 11, 2012

james405, I finished the show summary.

I'm looking for suggestions on how to change the format of the output.. either PM me or just post a comment here

 Respond  
Gecko321 commented on a Page, TVRage v2.5  -  Jul 10, 2012

done.. for specific episodes.. will work on the actual show later

 Respond  
Gecko321 commented on a Page, IRC Pre Bot v2.1  -  Jul 09, 2012

That's right

 Respond  
Gecko321 commented on a Page, IRC Pre Bot v2.1  -  Jul 09, 2012

I got it fixed. There was just a slight issue. But it's working again.

 Respond  
Gecko321 created a Page  -  Jun 22, 2012
982 

Searches Wikipedia and displays result for search.

  1 Thread   TCL  
Gecko321 created a Page  -  Jun 21, 2012
2 480 

Based on FordLawnmower's version.

 Respond   TCL  
Gecko321 created a Page  -  Jun 21, 2012

Gets information on IP address Commands: !ipinfo

 Respond   TCL  
Gecko321 created a Page  -  Jun 19, 2012
2 881 

Based on FordLawnmowers verison.

  1 Thread   TCL  
Gecko321 created a Page  -  Jun 19, 2012
1 512 

Show the 10 upcoming video games from vgreleases.com.

  3 Threads   TCL  
Gecko321 created a Page  -  Jun 17, 2012

Searches IMDB for a movie Shows Top10 Movies that are in theaters and on MovieMeter. Show what is out in theaters now and what is coming out next week Also shows the Top10 Stars on StarMeter. Commands:

  3 Threads   TCL  
Gecko321 created a Page  -  Jun 15, 2012
1 341 

Looks up the definition of a word

 Respond   TCL  
Gecko321 created a Page  -  Jun 15, 2012
1 523 

Posts a random fact

 Respond   TCL  
Gecko321 created a Page  -  Jun 15, 2012
2 752 

Posts a random insult

 Respond   TCL  
Gecko321 created a Page  -  Jun 15, 2012
1 208 

Pulls a random MLIA quote

 Respond   TCL  
Gecko321 commented on a Page, TVRage v2.5  -  Jun 14, 2012

yeah i'm working on it. any other suggestions? or idea's for other scripts? either in mIRC or eggdrop? need ideas.... what chan and network ru on?

 Respond  
Gecko321 commented on a Page, TVRage v2.5  -  Jun 12, 2012

What would you want it to announce? just certain shows? or all shows?

 Respond  
Gecko321 commented on a Page, TVRage.com V1.5  -  Jun 05, 2012

Went through and fixed the error.. Everything should be working the way it was.

 Respond  
Gecko321 commented on a Page, TVRage.com V1.5  -  Jun 03, 2012

I've look at the code and it seems that it work intermittently. Don't know if its and issue with TVRage.com or not. But i have another script written in TCL and it is basically the same thing and it seems to be working perfectly. Not sure what is wrong with this one. When i get a chance I'll go through the code entirely and see whats going on.

 Respond  
Gecko321 created a Page  -  Apr 11, 2012

Searches TVRage.com for show and responds to channel with information. To use just type !tv than the show name. Or !tv by itself for a list of commands

Gecko321 created a Page  -  Apr 06, 2012
1,480 

This script accesses www.orlydb.com and pulls the newest Scene Releases and posts them on the channel.

Gecko321 created a Page  -  Apr 06, 2012

This script accesses www.orlydb.com and pulls the newest Scene Releases and posts them on the channel.

Gecko321 commented on a Page, TVRage.com V1.5  -  Oct 08, 2008

thanx..this was my first major script i wrote...have done many smaller ones but nothing like this before...

 Respond  
Gecko321 commented on a Page, TVRage.com V1.5  -  Oct 07, 2008

you can't request it yourself unless your running another client with another nick

 Respond  
Gecko321 commented on a Page, Away System  -  Apr 21, 2008

i fixed it. i had it set up for something i had in my main script.

 Respond  
Gecko321 created a Page  -  Apr 21, 2008
713 

This is an away system. just copy it into a new remotes file.

Gecko321 commented on a Page, Nick auto-identify  -  Apr 21, 2008

no problem, if you ever need help with anything just let me know.

 Respond  
Gecko321 commented on a Page, Message Box  -  Apr 12, 2008

You could also use hash tables to make it keep more than just 3 messages. You can also combine all of your on Text events to make sure there are no errors.

on *:TEXT:*:#: { 
  var %Nick = $+($Nick,.Memo)
  CheckMessages $Nick
  if ($1 = !Read) {
    if ($Hget(%Nick,Total) > 0) {
      .msg $nick You have $v1 Messages.
      var %a = 0
      While (%a != $Hget(%Nick,Total)) {
        inc %a
        .msg $Nick $HGet(%Nick,%a)
      }
    }
  }
  elseif ($1 = !msg) { .notice $nick To send a message to someone,  type !send name message you want to send! }
  elseif ($1 = !Send) {
    if (!$HGet(%Nick)) { .hmake $Nick }
    if (!$Hget(%Nick,Total)) { .hadd -m %Nick Total 0 }
    .hinc %Nick Total 1
    .hadd %Nick $HGet(%Nick,Total) $3- -From $Nick @ $Time in $Chan
    .notice $nick Your message to $2 has been sent! When they get back, they will receive the message! 
  } 
  if ($1 = !Clear) { .hdel %Nick }
}

on *:JOIN:#:CheckMessages $Nick

alias CheckMessages { 
  if ($Hget($+($2,.Memo),Total)) > 0) { 
    .notice $2 You have unread messages! To read them type !read or you can type !msg to send a message! 
  } 
} 
 Respond  
Gecko321 commented on a Page, CTCP Unban Script  -  Apr 10, 2008

no problem, it uses a while loop to search through the ban list, entry by entry.

if ($Ibl($3,%a) iswm $address($2,5)) { mode $3 -b $IfMatch }

that checks each entry in the ban list against the nicks address using a wildcard match since most bans have some sort of wildcard string in them. if it matches in unbans the user.

if you got any other questions or need help just let me know.

gecko

 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.