flattspott
Feb 13 2004, 02:33 AM
Post your WIP actionscripts in this topic, with a link to the discussion of that particular actionscript topic in the WIP Forums...
Please when posting your actionscripts to this thread include the following:
Name of Actionscript
Author
Version
Purpose or Reason for Use
Special Instructions of Use
The script itself and supporting files
Link to thread for questions and answers
Thanks..
Yuyu
Feb 15 2004, 12:21 AM
Actionscript Name: Name Changer
Author: koldfuzion updated by Jezz
Version: 2.0
Purpose: Allows you to change the nick of you Xbox
Instructions: Only use with MXM versions that have built-in Keyboard
For Q&A's about this script visit this thread: N/A
Save As - NameChanger.xas
| CODE |
;################################################## ;# Name: Name Changer ;# Author:koldfuzion updated by Jezz ;# Date: 15-2-2004 ;# File Name:NameChanger2.xas ;# Version: 1.0 ;# Purpose: Allow user to change the xbox name. ;##########################################################
;-------- check for MXM.XML ----------- SETFUNC XMLOK FileExists MXM.XML IF# %XMLOK% == 1 GOTO XMLGOOD IF# %XMLOK% == 0 GOTO XMLBAD GOTO QUIT
:XMLGOOD XMLOPEN TestXML $actualpath$\mxm.xml XMLGetNodePtr TestXML XMLPtr XMLGetValue TestXML Nickname !.Preferences.Nickname IF "%Nickname%" != "" GOTO CONTINUENAME IF "%Nickname%" == "" GOTO CREATENODE
:CREATENODE XMLCreateNode TestXML NickName XMLSetValue TestXML !.Preferences.Nickname "$Name$"
:CONTINUENAME XMLSetNodePtr TestXML !.Preferences.Nickname XMLGetNodePtr TestXML XMLPtr XMLGetValue TestXML Nickname !.Preferences.Nickname
SET _kbInput "%Nickname%" StringInput _kbInput SINGLE "Your Current XBox NickName is %Nickname%$eol$ Enter a new title or leave the same to exit" IF "%_kbInput%" == "%Nickname%" GOTO QUIT
:ACCEPTED XMLSetValue TestXML !.Preferences.Nickname "%_kbInput%" XMLSAVE TestXML $actualpath$\mxm.xml XMLCLOSE TestXML BeginDraw UseCurrent MessageBox "Your new xbox name is %_kbInput%$eol$$eol$The Name Change will take effect$eol$when MXM is restarted$eol$$eol$Press X to Reboot Now$eol$Press ANY OTHER Button to Reboot Later" EndDraw Input If %_GP_X% == "1" GOTO REBOOT QUIT
:REBOOT reboot quit
:QUIT QUIT
:XMLBAD MsgBox "No MXM.xml found$eol$unable to proceed" QUIT |
LarryX
Mar 12 2004, 12:34 AM
Actionscript Name: News Changer
Author: flattspott - edited by LarryX
Version: 3.1
Purpose: Allows user to change newsfeed on the xbox
Instructions: Included in the script file
For Q&A's about this script visit this thread: NewsChanger
NewsFeeds.xml is the same as Version:3 above
This version is still not compatable with 0.9n.6
Save As - NewsChanger.xas
| CODE |
;########################################################### ;# Name: News Changer ;# Author: flattspott - edited by LarryX ;# Date: 03-11-2004 ;# Version: 3.1 ;# FileName: NewsChanger.xas ;# ;# Purpose: ;# Allows you to change your current newsfeed to any one of ;# almost 50 predfined ones. ;# ;# Installation: ;# Upload both, the NewsChanger.xas file and the NewsFeeds.xml files ;# to your Xbox,(Both files should go into your scripts folder) ;# then add something like this somewhere in your Menu.xml. ;# $ActualPath$ is where MXM starts from. ;# ;# Change Log 03-11-2004: ;# you can now edit NewsFeeds.xml to add or subtract as you like ;# included <name>newsfeedname</name> in mxm.xml for skinners ;# ;# <Item> ;# <Title>NewsChanger</Title> ;# <Action>Callfile $ActualPath$\Scripts\NewsChanger.xas</Action> ;# </Item> ;############################################################ ;---------------- Check if NewsFeeds.xml Exist Start -------- SETFUNC FeedXML FILEEXISTS $ActualPath$\Scripts\NewsFeeds.xml IF# %FeedXML% == "0" GOTO ERROR ;---------------- Check if NewsFeeds.xml Exist End ---------- ;---------------- XML Loading Start --------------------- SET index 1 SET indexa 1 SET indexb 0 XMLOPEN NewsXML $ActualPath$\Scripts\NewsFeeds.xml XMLSetNodePtr NewsXML !.NewsList XMLGetNodeCount NewsXML totalcount XMLSetNodePtr NewsXML !.NewsList.Feed :STARTLOOP IF# %Indexa% > %totalcount% GOTO ENDLOOP XMLGetValue NewsXML FeedName%indexa% !.NewsList.Feed:%indexb%.Name XMLGetValue NewsXML FeedURL%indexa% !.NewsList.Feed:%indexb.URL ADD indexa 1 ADD indexb 1 GOTO STARTLOOP :ENDLOOP XMLClose NewsXML GOTO DISPLAY ;---------------- XML Loading End ----------------------- ;---------------- Message Output Start ------------------ :ERROR CallScript _DisplayMessageBox "NewsFeeds.xml not found, unable to proceed" GOTO DONE :DISPLAY BeginDraw UseCurrent MessageBox "Name: %FeedName{index}%$eol$NewsFeed # %index%$eol$ (A) to Save (B) to Exit (White) for Help " GOTO GETINPUT :RESULTS CallScript _RenderMessageBox "Newsfeed Changed to: $eol$ %FeedName{index}% $eol$ Changes will occur after rebooting" EndDraw DELAYMS 1500 GOTO DONE :HELP MsgBox "::DEFAULT GAMEPAD CONTROLS::$eol$Up or Right - moves forward 1 feed$eol$Down or Left - moves back 1 feed$eol$RTrig + Up or Right - moves forward 5 feeds$eol$RTrig + Down or Left - moves back 5 feeds$eol$A - saves the current feed$eol$B - exits out of NewsChanger$eol$White - displays this help screen" RETURN ;---------------- Message Output End -------------------- ;---------------- Gamepad Input Start ------------------- :GETINPUT IQWaitMsg UI_LF UI_UP UI_DN UI_RT UI_SELECT UI_BACK SYS_HELP SYS_GAMEHELP KEY_LF KEY_RT KEY_UP KEY_DN If %MSG_ID% == "UI_LF" GOTO BACKFEED If %MSG_ID% == "UI_DN" GOTO BACKFEED If %MSG_ID% == "UI_UP" GOTO NEXTFEED If %MSG_ID% == "UI_RT" GOTO NEXTFEED If %MSG_ID% == "KEY_LF" GOTO BACK5 If %MSG_ID% == "KEY_RT" GOTO NEXT5 IF %MSG_ID% == "KEY_DN" GOTO BACK5 IF %MSG_ID% == "KEY_UP" GOTO NEXT5 If %MSG_ID% == "UI_SELECT" GOTO CHANGEFEED If %MSG_ID% == "UI_BACK" GOTO DONE If %MSG_ID% == "SYS_HELP" GOTO HELP GOTO GETINPUT ;---------------- Gamepad Input End --------------------- ;---------------- Next Feed Start ----------------------- :NEXTFEED IF# %index% == "49" THEN SET index 1 ELSE ADD index 1 ENDIF GOTO DISPLAY ;---------------- Next Feed End ------------------------- ;---------------- Back Feed Start ----------------------- :BACKFEED IF# %index% == "1" THEN SET index 49 ELSE SUB index 1 ENDIF GOTO DISPLAY ;---------------- Back Feed End ------------------------- ;---------------- Next 5 Feeds Start ----------------------- :NEXT5 IF# %index% >= "45" THEN SET index 4 ELSE ADD index 5 ENDIF GOTO DISPLAY ;---------------- Next 5 Feeds End ------------------------- ;---------------- Back 5 Feeds Start ----------------------- :BACK5 IF# %index% <= "4" THEN SET index 48 ELSE SUB index 5 ENDIF GOTO DISPLAY ;---------------- Back 5 Feeds End ------------------------- ;---------------- Save Start ---------------------------- :CHANGEFEED XMLOPEN mxmXML ::MXM XMLGetValue mxmXML mxmnewsname !.Newsfeed.Name IF "%mxmnewsname%" != "" GOTO CONTINUE IF "%mxmnewsname" == "" GOTO CREATENODE :CONTINUE XMLSetNodePtr mxmXML !.Newsfeed XMLSetNodePtr mxmXML !.Newsfeed.URL XMLSetValue mxmXML !.Newsfeed.URL %FeedURL{index}% XMLSetNodePtr mxmXML !.Newsfeed XMLSetNodePtr mxmXML !.Newsfeed.Name XMLSetValue mxmXML !.Newsfeed.Name %FeedName{index}% XMLSave mxmXML ::MXM XMLClose mxmXML GOTO RESULTS :CREATENODE XMLSetNodePtr mxmXML !.Newsfeed XMLCreateNode mxmXML Name XMLSetValue mxmXML !.Newsfeed.Name "Name" GOTO CONTINUE ;---------------- Save End ------------------------------ :DONE QUIT
|
flattspott
Mar 30 2004, 12:59 AM
Actionscript Name:
Skin SwitcherAuthor: flattspott
Version: 0.2
Purpose: A sort of skin randomizer
Instructions: Included in the script file
For Q&A's and more info about this script visit this thread:
Skin SwitcherSave As - SkinSwitcher.xas
| CODE |
;########################################################### ;# Name: Skin Switcher ;# Author: flattspott ;# Date: 03-29-2004 ;# Version: 0.2 ;# FileName: SkinSwitcher.xas ;# ;# Disclaimer: ;# This is a WIP script only (Tested and made with the 1191 Build) ;# ;# Purpose: ;# Will create a list of all your skins (not the internal ones) and step though the list ;# on bootup each time, setting your skin to the next one in the list ;# ;# Installation: ;# Upload SkinSwitcher.xas file to your Xbox,(into your scripts folder) ;# then add something like this somewhere in your MXM.xml. ;# $ActualPath$ is where MXM starts from. ;# Also note that below I have the xas file inside a subfolder from the main scripts folder ;# This is a personal preference, change it if need be. ;# ;# <scripts> ;# <ActionScript Name="_AutoExec"> ;# CallFile $ActualPath$\Scripts\SkinSwitcher\SkinSwitcher.xas ;# </ActionScript> ;# </Scripts> ;############################################################ Set Temp 0 Set SkinList E:\UDATA\00004321\skinlist.xml
:LookUp XMLOpen SomeXML ::MXM XMLGetValue SomeXML spName !.Main^SkinsPath SetFunc sPath FileExists %spName% If# %sPath% == 0 Goto Error If# %sPath% == 1 Goto Begin
:Begin SetFunc Used FileExists %SkinList% If# %Used% == 0 Goto New If# %Used% == 1 Goto Old
:New XMLCreate RandomXML Main XMLSetValue RandomXML !.Status^LastSkin "0" Goto Search
:Old XMLOpen RandomXML %SkinList% XMLGetValue RandomXML Current !.Status^LastSkin Add Current 1 XMLClose RandonXML XMLCreate RandomXML Main XMLSetValue RandomXML !.Status^LastSkin "%Current%" Goto Search
:Search BeginSearch %spName%\* :StartSearch SEARCHTYPE s_type SEARCHITEM s_name
IF "%s_name%" == "" Goto DoneSearch IF %s_type% == "dir" Goto ListSkin IF %s_type% == "file" Goto SearchContinue
:SEARCHCONTINUE SEARCHNEXT GOTO STARTSEARCH
:ListSkin SetFunc SkinName Replace %spName% "" %search_name% XMLSetValue RandomXML !.Skins.Skin:%Temp%~Name "%SkinName%" Add Temp 1 Goto SearchContinue
:DoneSearch ENDSEARCH Goto Finish
:Error MsgBox "Skin Switcher can't find:$eol$%spName%$eol$Please make sure it exists" 0 3500 Goto End
:Finish XMLSetNodePtr RandomXML !.Skins XMLGetNodeCount RandomXML Count If %Current% == %Count% Goto New XMLGetValue RandomXML NextSkin !.Skins.Skin:%Current%~Name XMLOpen SkinXML %spName%\%NextSkin%\MXM_Skin.xml XMLGetValue SkinXML RealName !~name XMLClose SkinXML XMLOpen PrefXML ::Prefs XMLSetValue PrefXML !.UserSetting^Skin "%RealName%" XMLSave PrefXML ::Prefs MsgBox "When you reboot your skin will be$eol$%RealName%" 0 2000 XMLSave RandomXML %SkinList% XMLClose RandomXML XMLClose SomeXML XMLClose PrefXML
:End Quit
|
flattspott
Apr 2 2004, 05:15 AM
Actionscript Name:
Live RemoverAuthor: flattspott
Version: 0.2
Purpose: Will scan folders for any Xbox Live files and delete them
Instructions: Included in the script file
For Q&A's about this script visit this thread:
LiveRemoverSave As - LiveRemover.xas
| CODE |
;########################################################### ;# Name: Live Remover ;# Author: flattspott ;# Date: 04-02-2004 ;# Version: 0.2 ;# FileName: LiveRemover.xas ;# ;# Disclaimer: ;# This is a WIP script only (Made and tested with the 1191 Build) ;# ;# Purpose: ;# Will scan folders for any Xbox Live files and delete them ;# ;# Installation: ;# Upload LiveRemover.xas file to your Xbox,(into your scripts folder) ;# then add something like this somewhere in your Menu.xml. ;# $ActualPath$ is where MXM starts from. ;# Also note that below I have the xas file inside a subfolder from the main scripts folder ;# This is a personal preference, change it if need be. ;# ;# <Item> ;# <Title>Live Remover</Title> :# <Action> ;# CallFile $ActualPath$\Scripts\LiveRemover\LiveRemover.xas "E:\\HDDLoader" ;# CallFile $ActualPath$\Scripts\LiveRemover\LiveRemover.xas "E:\\Games" ;# CallFile $ActualPath$\Scripts\LiveRemover\LiveRemover.xas "F:\\HDDLoader" ;# CallFile $ActualPath$\Scripts\LiveRemover\LiveRemover.xas "F:\\Games" ;# CallFile $ActualPath$\Scripts\LiveRemover\LiveRemover.xas "G:\\HDDLoader" ;# CallFile $ActualPath$\Scripts\LiveRemover\LiveRemover.xas "G:\\Games" :# </Action> ;# </Item> ;# ;# Note: ;# You don't need to have all the CallFiles above. Just the one(s) you need. ;# If you don't specify the path in the argument then the path will default to F:\Games. ;############################################################ If %1% == "" Then Set Path F:\Games Else Set Path %1% EndIf
SetFunc PathStatus FileExists %Path% If# %PathStatus% == 1 Then Goto Begin Else Goto Error EndIf
:Begin MsgBox "Current Path is:$eol$%Path%" 0 1000 Set Live0 dashupdate.xbe Set Live1 update.xbe Set Live2 downloader.xbe Set Count 0
:Search BeginSearch %Path%\*
:StartSearch SEARCHTYPE s_type SEARCHITEM s_name IF "%s_name%" == "" Goto DoneSearch IF %s_type% == "dir" Goto Check IF %s_type% == "file" Goto SearchContinue
:SearchContinue SEARCHNEXT Goto StartSearch
:DoneSearch ENDSEARCH Goto Finish
:Check SetFunc GameName Replace %Path% "" %search_name% MsgBox "Checking %GameName%..." 0 1500 SetFunc File0 FileExists %Path%\%GameName%\%Live0% SetFunc File1 FileExists %Path%\%GameName%\%Live1% SetFunc File2 FileExists %Path%\%GameName%\%Live2% CD %Path%\%GameName%
For i = 0 to 3 If# %File{i}% == 1 Then MsgBox "%Live{i}% found$eol$Removing now..." 0 1500 Attr %Path%\%GameName%\%Live{i}% rw Delete %Path%\%GameName%\%Live{i}% Add Count 1 EndIf Next Goto SearchContinue
:Error MsgBox "Live Remover can't find:$eol$%Path%$eol$Please make sure it exists" 0 3500 Goto End
:Finish MsgBox "Live Remover Completed$eol$%Count% files removed from %Path%" 0 3500 :End Quit
|
Yuyu
May 12 2004, 05:17 PM
Actionscript Name:
News ChangerAuthor: flattspott
Version: 4.0
Purpose: Allows user to change newsfeed on the xbox
Instructions: Included in the script file
For Q&A's about this script visit this thread:
NewsChangerSave As - NewsChanger.xas
| CODE |
;########################################################### ;# Name: News Changer ;# Author: flattspott ;# Date: 03-13-2004 ;# Version: 4.0 ;# FileName: NewsChanger.xas ;# ;# Disclaimer: ;# This will not work with MXM 0.9n6 ;# ;# Purpose: ;# Allows you to change your current newsfeed to any one of ;# an unlimited predfined ones. If you want more just add them to the NeesFeeds.xml ;# appropriatly. You can also remove any you don't want. ;# ;# Installation: ;# Upload all files, NewsChanger.xas, NewsChanger.xml and the NewsFeeds.xml files ;# to your Xbox,(All files should go into your scripts folder and preferably a sub folder) ;# then add something like this somewhere in your Menu.xml. ;# $ActualPath$ is the MXM folder for your info. If you do it differently you may need to ;# edit the paths in the script too. ;# ;# <Item> ;# <Title>NewsChanger</Title> ;# <Action>Callfile $ActualPath$\Scripts\NewsChanger\NewsChanger.xas</Action> ;# </Item> ;############################################################ ;---------------- Check if NewsFeeds.xml Exist Start -------- SetFunc CheckXML FileExists $ActualPath$\Scripts\NewsChanger\NewsFeeds.xml If# %CheckXML% == "0" Then Goto Error Else Goto Continue EndIf ;---------------- Check if NewsFeeds.xml Exist End ---------- ;---------------- Error Start -------- :Error MsgBox "Cannot find NewsFeeds.xml$eol$Unable to continue!" Goto End ;---------------- Error End -------- ;---------------- Read NewsFeeds.xml Feeds Start -------- :Continue XMLOpen mxmXML ::MXM XMLGetValue mxmXML CurrentFeed !.NewsFeed~Name XMLOpen FeedXML $ActualPath$\Scripts\NewsChanger\NewsFeeds.xml XMLSetNodePtr FeedXML !.NewsList XMLGetNodeCount FeedXML Count XMLSetNodePtr FeedXML !.NewsList^Feed For X = 0 to %Count% XMLGetValue FeedXML feedName%X% !.NewsList.Feed:%X%^Name XMLGetValue FeedXML feedURL%X% !.NewsList.Feed:%X%^URL Next XMLClose FeedXML ;---------------- Read NewsFeeds.xml Feeds End -------- ;---------------- Populate ListBox with Feeds Start -------- OnEvent EventHandler LoadDialogFromFile NewsDLG $ActualPath$\Scripts\NewsChanger\NewsChanger.xml For Item = 0 to %Count% Set @NewsDLG.Control?CtrlID=103.Item:%Item%^Text "%feedName{Item}%" Next XMLSetValue NewsDLG !.Control?CtrlID=101^Text "News Changer: %Count% Feeds" XMLSetValue NewsDLG !.Control?CtrlID=102^Text "Current: %CurrentFeed%" ;---------------- Populate ListBox with Feeds End -------- ;---------------- Dialog Input Start -------- ExecuteUIOBject NewsDLG :EventHandler Switch %UITriggerID% Case 103 If "%@NewsDLG.Control?CtrlID=103.Item:{UIParam1}.Selected%" == "True" Then Set Name "%feedName{UIParam1}%" Set URL "%feedURL{UIParam1}%" EndIf EndCase Case 104 XMLSetNodePtr mxmXML !.NewsFeed XMLSetValue mxmXML !.NewsFeed~Name %Name% XMLSetValue mxmXML !.NewsFeed^Global "True" XMLSetValue mxmXML !.NewsFeed^RotateChannels "True" XMLSetValue mxmXML !.NewsFeed^URL %URL% XMLSetValue mxmXML !.NewsFeed^UpdateIntervalMin "15" XMLSetValue mxmXML !.NewsFeed^RotateItemInterval "1" XMLSave mxmXML ::MXM XMLClose mxmXML MsgBox "Newsfeed changed successfully to:$eol$%Name%$eol$The change will take effect after rebooting" EndCase Case 105 MsgBox "Scroll through the list and press A on $eol$ the feed you want to use$eol$Then scroll back up or down to the end of$eol$the list till you can choose to save" EndCase Default EndCase EndSwitch Return ;---------------- Dialog Input End -------- :End Quit
|
Save As - NewsChanger.xml
| CODE |
<NewsChanger> <Pos T="0" L="0" W="640" H="480 /> <Control Type="Text" CtrlID="101"> <Rect T="33" L="40" B="58" R="600" /> <Text>News Changer</Text> </Control> <Control Type="Text" CtrlID="102"> <Rect T="58" L="40" B="83" R="600" /> <Text>Current Feed:</Text> </Control> <Control Type="ListBox" CtrlID="103"> <Rect T="90" L="70" B="400" R="565" /> <Mode>List</Mode> <Item> <Text></Text> </Item> </Control> <Control Type="Button" CtrlID="104"> <Rect T="410" L="70" B="435" R="225" /> <Text>Save</Text> </Control> <Control Type="Button" CtrlID="105"> <Rect T="410" L="240" B="435" R="395" /> <Text>Help</Text> </Control> <Control Type="Button" CtrlID="106"> <Rect T="410" L="410" B="435" R="565" /> <Text>Exit</Text> <ExitCode>1</ExitCode> </Control> </NewsChanger>
|
Save As - NewsFeeds.xml
| CODE |
<Main> <NewsList> <Feed> <Name>All Headline News: Business</Name> <URL>http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=business</URL> </Feed> <Feed> <Name>All Headline News: Entertainment</Name> <URL>http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=entertainment</URL> </Feed> <Feed> <Name>All Headline News: Health</Name> <URL>http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=health</URL> </Feed> <Feed> <Name>All Headline News: Offbeat</Name> <URL>http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=offbeat</URL> </Feed> <Feed> <Name>All Headline News: Politics</Name> <URL>http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=politics</URL> </Feed> <Feed> <Name>All Headline News: Sports</Name> <URL>http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=sports</URL> </Feed> <Feed> <Name>All Headline News: Technology</Name> <URL>http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=technology</URL> </Feed> <Feed> <Name>All Headline News: Top</Name> <URL>http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=top</URL> </Feed> <Feed> <Name>All Headline News: World</Name> <URL>http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=world</URL> </Feed> <Feed> <Name>All Xbox Skins: 10 Most Recent</Name> <URL>http://www.allxboxskins.com/rssskins.xml</URL> </Feed> <Feed> <Name>All Xbox Skins: Avalaunch</Name> <URL>http://www.allxboxskins.com/rssavalaunch.xml</URL> </Feed> <Feed> <Name>All Xbox Skins: CPX-MenuX</Name> <URL>http://www.allxboxskins.com/rsscpxmenux.xml</URL> </Feed> <Feed> <Name>All Xbox Skins: Evolution X</Name> <URL>http://www.allxboxskins.com/rssevox.xml</URL> </Feed> <Feed> <Name>All Xbox Skins: Halo Cache Editor</Name> <URL>http://www.allxboxskins.com/rsshce.xml</URL> </Feed> <Feed> <Name>All Xbox Skins: Media X Menu</Name> <URL>http://www.allxboxskins.com/rssmxm.xml</URL> </Feed> <Feed> <Name>All Xbox Skins: Mega X-Key</Name> <URL>http://www.allxboxskins.com/rssmegaxkey.xml</URL> </Feed> <Feed> <Name>All Xbox Skins: MS Dash</Name> <URL>http://www.allxboxskins.com/rssmsdash.xml</URL> </Feed> <Feed> <Name>All Xbox Skins: tHc Dash</Name> <URL>http://www.allxboxskins.com/rssthc.xml</URL> </Feed> <Feed> <Name>All Xbox Skins: Unleash X</Name> <URL>http://www.allxboxskins.com/rssunleashx.xml</URL> </Feed> <Feed> <Name>All Xbox Skins: Xbox Media Center</Name> <URL>http://www.allxboxskins.com/rssxbmc.xml</URL> </Feed> <Feed> <Name>All Xbox Skins: Xbox Media Player</Name> <URL>http://www.allxboxskins.com/rssxbmp.xml</URL> </Feed> <Feed> <Name>All Xbox Skins: Xlink-BoxLink</Name> <URL>http://www.allxboxskins.com/rssxlink-boxlink.xml</URL> </Feed> <Feed> <Name>All Xbox Skins: Xport Emulators</Name> <URL>http://www.allxboxskins.com/rssemu.xml</URL> </Feed> <Feed> <Name>Amazon.com: Top Items</Name> <URL>http://www.mikeshea.net/newsfeeds/amazon_top_dvds.xml</URL> </Feed> <Feed> <Name>Another Useless Website</Name> <URL>http://anotheruselesswebsite.com/backend.php</URL> </Feed> <Feed> <Name>ArsTechnica</Name> <URL>http://arstechnica.com/etc/rdf/ars.rdf</URL> </Feed> <Feed> <Name>BBC News: UK Edition</Name> <URL>http://www.mikeshea.net/newsfeeds/bbc.xml</URL> </Feed> <Feed> <Name>Boing Boing</Name> <URL>http://www.mikeshea.net/newsfeeds/boingboing.xml</URL> </Feed> <Feed> <Name>CNN</Name> <URL>http://www.mikeshea.net/newsfeeds/cnn.xml</URL> </Feed> <Feed> <Name>CNN: Entertainment</Name> <URL>http://www.mikeshea.net/newsfeeds/cnn_entertainment.xml</URL> </Feed> <Feed> <Name>Daypop Top 40</Name> <URL>http://www.mikeshea.net/newsfeeds/daypop.xml</URL> </Feed> <Feed> <Name>Eberts Reviews</Name> <URL>http://www.mikeshea.net/newsfeeds/ebert.xml</URL> </Feed> <Feed> <Name>ESPN</Name> <URL>http://www.mikeshea.net/newsfeeds/espn.xml</URL> </Feed> <Feed> <Name>GameSpot: All Games</Name> <URL>http://www.gamespot.com/misc/rss/gamespot_updates_all_games.xml</URL> </Feed> <Feed> <Name>GameSpot: Downloads</Name> <URL>http://www.gamespot.com/misc/rss/gamespot_updates_downloads.xml</URL> </Feed> <Feed> <Name>GameSpot: Features</Name> <URL>http://www.gamespot.com/misc/rss/gamespot_updates_features.xml</URL> </Feed> <Feed> <Name>GameSpot: Gameboy Advance</Name> <URL>http://www.gamespot.com/misc/rss/gamespot_updates_game_boy_advance.xml</URL> </Feed> <Feed> <Name>GameSpot: Gamecube</Name> <URL>http://www.gamespot.com/misc/rss/gamespot_updates_gamecube.xml</URL> </Feed> <Feed> <Name>GameSpot: Movies</Name> <URL>http://www.gamespot.com/misc/rss/gamespot_updates_movies.xml</URL> </Feed> <Feed> <Name>GameSpot: News</Name> <URL>http://www.gamespot.com/misc/rss/gamespot_updates_news.xml</URL> </Feed> <Feed> <Name>GameSpot: PC</Name> <URL>http://www.gamespot.com/misc/rss/gamespot_updates_pc.xml</URL> </Feed> <Feed> <Name>GameSpot: Playstation 2</Name> <URL>http://www.gamespot.com/misc/rss/gamespot_updates_playstation_2.xml</URL> </Feed> <Feed> <Name>GameSpot: Previews</Name> <URL>http://www.gamespot.com/misc/rss/gamespot_updates_previews.xml</URL> </Feed> <Feed> <Name>GameSpot: Reviews</Name> <URL>http://www.gamespot.com/misc/rss/gamespot_updates_reviews.xml</URL> </Feed> <Feed> <Name>GameSpot: Screens</Name> <URL>http://www.gamespot.com/misc/rss/gamespot_updates_screens.xml</URL> </Feed> <Feed> <Name>GameSpot: Xbox</Name> <URL>http://www.gamespot.com/misc/rss/gamespot_updates_xbox.xml</URL> </Feed> <Feed> <Name>Google News: Business</Name> <URL>http://www.mikeshea.net/newsfeeds/google_news_business.xml</URL> </Feed> <Feed> <Name>Google News: Entertainment</Name> <URL>http://www.mikeshea.net/newsfeeds/google_news_entertainment.xml</URL> </Feed> <Feed> <Name>Google News: Health</Name> <URL>http://www.mikeshea.net/newsfeeds/google_news_health.xml</URL> </Feed> <Feed> <Name>Google News: Playstation 2</Name> <URL>http://www.mikeshea.net/newsfeeds/google_news_xbox.xml</URL> </Feed> <Feed> <Name>Google News: Sci-Tech</Name> <URL>http://www.mikeshea.net/newsfeeds/google_news_sci_tech.xml</URL> </Feed> <Feed> <Name>Google News: Sports</Name> <URL>http://www.mikeshea.net/newsfeeds/google_news_sports.xml</URL> </Feed> <Feed> <Name>Google News: USA</Name> <URL>http://www.mikeshea.net/newsfeeds/google_news_us.xml</URL> </Feed> <Feed> <Name>Google News: World</Name> <URL>http://www.mikeshea.net/newsfeeds/google_news_world.xml</URL> </Feed> <Feed> <Name>Google News: Xbox</Name> <URL>http://www.mikeshea.net/newsfeeds/google_news_xbox.xml</URL> </Feed> <Feed> <Name>Liquid Theater</Name> <URL>http://www.mikeshea.net/newsfeeds/liquidtheater.xml</URL> </Feed> <Feed> <Name>Max Console: Gameboy Advance</Name> <URL>http://www.maxconsole.com/rss/gbafeed.rss</URL> </Feed> <Feed> <Name>Max Console: Gamecube</Name> <URL>http://www.maxconsole.com/rss/gcfeed.rss</URL> </Feed> <Feed> <Name>Max Console: Playstation 2</Name> <URL>http://www.maxconsole.com/rss/ps2feed.rss</URL> </Feed> <Feed> <Name>Max Console: Xbox</Name> <URL>http://www.maxconsole.com/rss/xboxfeed.rss</URL> </Feed> <Feed> <Name>Mobhunter</Name> <URL>http://www.mikeshea.net/newsfeeds/mobhunter.xml</URL> </Feed> <Feed> <Name>Moreover: Biological</Name> <URL>http://p.moreover.com/cgi-local/page?c=Science%3A%20biological%20sciences%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: Entertainment Gossip</Name> <URL>http://p.moreover.com/cgi-local/page?c=Entertainment%3A%20gossip&o=rss</URL> </Feed> <Feed> <Name>Moreover: Entrepreneur</Name> <URL>http://p.moreover.com/cgi-local/page?c=Entrepreneur%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: Genetics</Name> <URL>http://p.moreover.com/cgi-local/page?c=Genetics%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: IBM </Name> <URL>http://p.moreover.com/cgi-local/page?c=IBM%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: Intel</Name> <URL>http://p.moreover.com/cgi-local/page?c=Intel%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: Job Markets</Name> <URL>http://p.moreover.com/cgi-local/page?c=Job%20markets%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: Law</Name> <URL>http://p.moreover.com/cgi-local/page?c=Law%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: Linux</Name> <URL>http://p.moreover.com/cgi-local/page?c=Linux%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: Macintosh</Name> <URL>http://p.moreover.com/cgi-local/page?c=Macintosh%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: McDonalds</Name> <URL>http://p.moreover.com/cgi-local/page?c=McDonalds%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: MS</Name> <URL>http://p.moreover.com/cgi-local/page?c=MS%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: MP3</Name> <URL>http://p.moreover.com/cgi-local/page?c=MP3%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: Nanotechnology</Name> <URL>http://p.moreover.com/cgi-local/page?c=Nanotechnology%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: Space Science</Name> <URL>http://p.moreover.com/cgi-local/page?c=Space%20science%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: Tech Events</Name> <URL>http://p.moreover.com/cgi-local/page?c=Tech%20events&o=rss</URL> </Feed> <Feed> <Name>Moreover: Video Games</Name> <URL>http://p.moreover.com/cgi-local/page?c=Videogame%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: Virus Warnings</Name> <URL>http://p.moreover.com/cgi-local/page?c=Virus%20warnings&o=rss</URL> </Feed> <Feed> <Name>Moreover: Wal-Mart Stores</Name> <URL>http://p.moreover.com/cgi-local/page?c=Wal%2DMart%20Stores%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: Walt Disney</Name> <URL>http://p.moreover.com/cgi-local/page?c=Walt%20Disney%20news&o=rss</URL> </Feed> <Feed> <Name>Moreover: Windows</Name> <URL>http://p.moreover.com/cgi-local/page?c=Windows%202000%20news&o=rss</URL> </Feed> <Feed> <Name>News 4 Sites: Aerospace</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=692</URL> </Feed> <Feed> <Name>News 4 Sites: Airlines Commercial News</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2365</URL> </Feed> <Feed> <Name>News 4 Sites: Amusement Parks</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=143</URL> </Feed> <Feed> <Name>News 4 Sites: Artificial Intelligence</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=60</URL> </Feed> <Feed> <Name>News 4 Sites: Astrology</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=1072</URL> </Feed> <Feed> <Name>News 4 Sites: CIA</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=1473</URL> </Feed> <Feed> <Name>News 4 Sites: College Baseball</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=849</URL> </Feed> <Feed> <Name>News 4 Sites: College Football</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=848</URL> </Feed> <Feed> <Name>News 4 Sites: College Sports</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=850</URL> </Feed> <Feed> <Name>News 4 Sites: Cub Scouts</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2559</URL> </Feed> <Feed> <Name>News 4 Sites: Disease Outbreaks</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2398</URL> </Feed> <Feed> <Name>News 4 Sites: Earthquakes</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2523</URL> </Feed> <Feed> <Name>News 4 Sites: Extraterrestrial</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2004</URL> </Feed> <Feed> <Name>News 4 Sites: FARC</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=1067</URL> </Feed> <Feed> <Name>News 4 Sites: FBI</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=1471</URL> </Feed> <Feed> <Name>News 4 Sites: Martial Arts</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=300</URL> </Feed> <Feed> <Name>News 4 Sites: Motorsports</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=296</URL> </Feed> <Feed> <Name>News 4 Sites: Music</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=149</URL> </Feed> <Feed> <Name>News 4 Sites: Musicals</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=1898</URL> </Feed> <Feed> <Name>News 4 Sites: National Parks</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2297</URL> </Feed> <Feed> <Name>News 4 Sites: Opera</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2024</URL> </Feed> <Feed> <Name>News 4 Sites: Police</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2298</URL> </Feed> <Feed> <Name>News 4 Sites: Radio</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=148</URL> </Feed> <Feed> <Name>News 4 Sites: Religion</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2299</URL> </Feed> <Feed> <Name>News 4 Sites: Rugby</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=713</URL> </Feed> <Feed> <Name>News 4 Sites: Students</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=727</URL> </Feed> <Feed> <Name>News 4 Sites: Technology</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=14</URL> </Feed> <Feed> <Name>News 4 Sites: Television</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=146</URL> </Feed> <Feed> <Name>News 4 Sites: TV Shows</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=774</URL> </Feed> <Feed> <Name>News 4 Sites: Weather</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2095</URL> </Feed> <Feed> <Name>News 4 Sites: World at a Glance</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=546</URL> </Feed> <Feed> <Name>News 4 Sites: Wrestling</Name> <URL>http://www.news4sites.com/service/newsfeed.php?tech=rss&id=835</URL> </Feed> <Feed> <Name>Slashdot</Name> <URL>http://www.slashdot.org/slashdot.rdf </URL> </Feed> <Feed> <Name>Usenet: alt.games.video.sony-playstation2</Name> <URL>http://www.mikeshea.net/newsfeeds/usenet_playstation2.xml</URL> </Feed> <Feed> <Name>Usenet: alt.games.video.xbox</Name> <URL>http://www.mikeshea.net/newsfeeds/usenet_xbox.xml</URL> </Feed> <Feed> <Name>Wired News</Name> <URL>http://www.mikeshea.net/newsfeeds/wired.xml</URL> </Feed> <Feed> <Name>Xbins</Name> <URL>http://xbins.org/xbins.xml</URL> </Feed> <Feed> <Name>Xbox-Scene</Name> <URL>http://www.xbox-scene.com/xbox1data/xbox-scene.xml</URL> </Feed> </NewsList> </Main>
|
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please
click here.