I found out that nzbs.org allows all kinds of great rss options (free registration required), so using Switch's original suggestion i added this line to my config file:
Code:
{'name':'NZBs.ORG - Search', 'url':'http://nzbs.org/rss.php?q=%s&catid=#Put_Category_Number_Here#&i=#PUT_SITE_ASSIGNED_USER_STRING_HERE#&dl=1'},
This line allows me to seach the site, once you register to get a username and password with them, you would visit the RSS link on their site (linked below) they will tell you what your user string is (replaces "#PUT_SITE_ASSIGNED_USER_STRING_HERE#") and the define the different categories so you can choose the different categories you'd like to search through by putting that number where it says "#Put_Category_Number_Here#"...
Info on NZBs.org RSS system can be found here:
http://nzbs.org/index.php?action=rss
YOU MUST GET A USERNAME AND PASSWORD AND LOGIN BEFORE THE LINK ABOVE WILL TELL YOU YOUR NZBs.ORG HASH STRING, WHICH IS REQUIRED TO DOWNLOAD NZBs VIA RSS WITHOUT LOGGING IN
So here is what my SABnzbd plugin screen shot looks like:
![Full sized picture Image](http://360mbits.com/xbmc-sab.jpg)
and here is the code in my settings.py file under the section: "#add other rss feeds here, just copy an existing one and change the name and url"
Code:
other_rss = [
{'name':'Movies (HD) - Search', 'url':'http://nzbs.org/rss.php?q=%s&catid=4&i=#TYPE_YOUR_NZB.ORG_HASH_HERE#&dl=1'},
{'name':'Movies (SD) - Search', 'url':'http://nzbs.org/rss.php?q=%s&catid=2&i=#TYPE_YOUR_NZB.ORG_HASH_HERE#&dl=1'},
{'name':'TV (HD) - Search', 'url':'http://nzbs.org/rss.php?q=%s&catid=14&i=#TYPE_YOUR_NZB.ORG_HASH_HERE#&dl=1'},
{'name':'TV (SD) - Search', 'url':'http://nzbs.org/rss.php?q=%s&catid=1&i=#TYPE_YOUR_NZB.ORG_HASH_HERE#&dl=1'},
{'name':'On-Demand HD TV', 'url':'http://www.nzbs.org/rss.php?action=mysearches&i=#TYPE_YOUR_NZB.ORG_HASH_HERE#&dl=1'},
{'name':'Browse Movies (HD)', 'url':'http://www.nzbs.org/rss.php?catid=4&i=#TYPE_YOUR_NZB.ORG_HASH_HERE#&dl=1'},
{'name':'Browse Movies (SD)', 'url':'http://www.nzbs.org/rss.php?catid=2&i=#TYPE_YOUR_NZB.ORG_HASH_HERE#&dl=1'},
{'name':'Browse TV (HD)', 'url':'http://www.nzbs.org/rss.php?catid=14&i=#TYPE_YOUR_NZB.ORG_HASH_HERE#&dl=1'},
{'name':'Browse TV (SD)', 'url':'http://www.nzbs.org/rss.php?catid=1&i=#TYPE_YOUR_NZB.ORG_HASH_HERE#&dl=1'},
#{'name':'Binsearch - TV', 'url':'http://rss.binsearch.net/rss.php?max=50&g=alt.binaries.multimedia'},
#{'name':'TVNZB (Latest)', 'url':'http://tvnzb.com/tvnzb_new.rss'},
#{'name':'Newzleech - Search', 'url':'http://www.newzleech.com/rss.php?n=50&s=%s'},
#{'name':'Newzleech - HDTV', 'url':'http://www.newzleech.com/rss.php?n=50&g=alt.binaries.hdtv'},
]