Top

Search Menu Script


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  0.0 (of 0 scores)
Date Added  Aug 25, 2009
Last Updated  Aug 26, 2009
Tags  amazon  askjeeves  ebay  google  image  search  yahoo  youtube 

Description

Just a little menu i put together with various differant searches. hope you like it.

Update:

cleaned up the code a bit
fixed a few errors

Well the script is finished from my point of view , if any of you have any other ideas for searches you want in it plz post

Grab the Code

on *:load:{
  if ($version >= 5.0) {
    echo -a Successfully Loaded Search Menu V3.5
  }
}
menu channel,status,nicklist,query,menubar {
  Searches
  .YouTube: youtube
  .Google Web: google
  .Google Image: gimage
  .Google Video: gvideo
  .Google Maps: gmaps
  .Google News: gnews
  .Froogle: gshop
  .Ebay: ebay
  .Ebay Motors: ebaymotor
  .Amazon:amazon
  .Bing: bing
  .BinSearch: binsearch
  .Ask Jeeves: askjeeves
  .Aol: aol
  .Yahoo: yahoo
  .DistroWatch: distrowatch
}
alias youtube { run http://www.youtube.com/results?search_query= $+ $$?="What Would You Like To Search For On YouTube" }
alias google { run http://www.google.com/#hl=en&q= $+ $$?="What Would You Like To Search For On Google" }
alias gimage { run http://images.google.com/images?hl=en&q= $+ $$?="What Would You Like To Search For On Google Image" }
alias gvideo { run http://video.google.com/videosearch?hl=en&q= $+ $$?="What Would You Like To Search For On Google Video" }
alias gmaps { run http://maps.google.com/maps?hl=en&q= $+ $$?="Enter The Town Or State You Want A Google Map Of" }
alias gnews { run http://news.google.com/news?hl=en&q= $+ $$?="What Would You Like To Search For On Google News" }
alias gshop { run http://www.google.com/products?q= $+ $$?="What Product Are You Looking For On Froogle" }
alias ebay { run http://shop.ebay.com/i.html?_nkw= $+ $$?="What Would You Like To Search For On Ebay" }
alias ebaymotor { run http://motors.shop.ebay.com/eBay-Motors-/6000/i.html?_nkw= $+ $$?="Enter The Car You Would Like To Search For On Ebay Motor" }
alias amazon { run http://www.amazon.com/s/ref=nb_ss?url=search-alias%3Daps&field-keywords= $+ $$?="What Would You Like To Search For On Amazon" }
alias bing { run http://www.bing.com/search?q= $+ $$?="What Would You Like To Search For On Bing" }
alias askjeeves { run http://www.ask.com/web?q= $+ $$?="What Would You Like To AskJeeves" }
alias aol { run http://search.aol.com/aol/search?s_it=comsearch40&query= $+ $$?="What Would You Like To Search For On Aol" }
alias yahoo { run http://search.yahoo.com/search?p= $+ $$?="What Would You Like To Search For On Yahoo" }
alias distrowatch { run http://distrowatch.com/table.php?distribution= $+ $$?="Enter Just The Distro Name Of Your Choice" }
alias binsearch { run http://www.binsearch.info/?q= $+ $$?="What Would You Like To Search For On BinSearch" }

Comments

  (5)  RSS
sunslayer
Comments: 419
 
mIRC Snippet:  Search Menu Script
Posted on Aug 26, 2009 12:48 am
did you even test this?

Code:
($$?="What Would You Like To Search")


wont work you need to get rid of the ()'s
ex:
Code:
alias google { run http://www.google.com/#hl=en&source=hp&q= $+ $$?="What Would You Like To Search" }


also you can use /url instead of /run when using a link
Jibberish
Comments: 16
 
mIRC Snippet:  Search Menu Script
Posted on Aug 26, 2009 12:54 am
i did test it yes. and i forgot to remove the () in the last update. it was corrected likely while you were posting hence the .1 on the version
sunslayer
Comments: 419
 
mIRC Snippet:  Search Menu Script
Posted on Aug 26, 2009 8:15 am
k :p
gooshie
Comments: 181
 
mIRC Snippet:  Search Menu Script
Posted on Aug 26, 2009 11:36 am
The "&source=hp" is not needed in the google search.
That's just Hewlett Packard taking credit for referrals.
Jibberish
Comments: 16
 
mIRC Snippet:  Search Menu Script
Posted on Aug 26, 2009 12:17 pm
removed ty

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  

Bottom