xboxscene.org forums

Author Topic: Wip Actionscript Collection  (Read 1905 times)

flattspott

  • Archived User
  • Hero Member
  • *
  • Posts: 1220
Wip Actionscript Collection
« on: February 12, 2004, 07:44:00 PM »

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..

This post has been edited by Yuyu: May 12 2004, 06:28 PM <
Logged

Yuyu

  • Archived User
  • Hero Member
  • *
  • Posts: 908
Wip Actionscript Collection
« Reply #1 on: February 14, 2004, 05:32:00 PM »

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


This post has been edited by Yuyu: Feb 15 2004, 05:11 AM <
Logged

LarryX

  • Archived User
  • Newbie
  • *
  • Posts: 26
Wip Actionscript Collection
« Reply #2 on: March 11, 2004, 05:45:00 PM »

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 newsfeedname in mxm.xml for skinners
;#  
;#  
;#   NewsChanger
;#   Callfile $ActualPath$\Scripts\NewsChanger.xas
;#  

;############################################################
;---------------- 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


This post has been edited by LarryX: Mar 12 2004, 11:37 PM <
Logged

flattspott

  • Archived User
  • Hero Member
  • *
  • Posts: 1220
Wip Actionscript Collection
« Reply #3 on: March 29, 2004, 06:10:00 PM »

Actionscript Name: Skin Switcher
Author: 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 Switcher

Save 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.
;#
;#  
;#      
;#         CallFile $ActualPath$\Scripts\SkinSwitcher\SkinSwitcher.xas
;#      

;#  

;############################################################
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


This post has been edited by flattspott: Apr 2 2004, 04:53 PM <
Logged

flattspott

  • Archived User
  • Hero Member
  • *
  • Posts: 1220
Wip Actionscript Collection
« Reply #4 on: April 01, 2004, 10:26:00 PM »

Actionscript Name: Live Remover
Author: 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: LiveRemover
Save 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.
;#
;#      
;#       Live Remover
:#        
;#            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"
:#        

;#      

;#
;# 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


This post has been edited by flattspott: Apr 2 2004, 04:49 PM <
Logged

Yuyu

  • Archived User
  • Hero Member
  • *
  • Posts: 908
Wip Actionscript Collection
« Reply #5 on: May 12, 2004, 11:28:00 AM »

Actionscript Name: News Changer
Author: 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: NewsChanger


Save 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.
;#  
;#  
;#   NewsChanger
;#   Callfile $ActualPath$\Scripts\NewsChanger\NewsChanger.xas
;#  

;############################################################
;---------------- 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




News Changer



Current Feed:



List






Save



Help



Exit
1




Save As - NewsFeeds.xml
CODE


 
     
        All Headline News: Business
        http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=business
     

     
        All Headline News: Entertainment
        http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=entertainment
     

     
        All Headline News: Health
        http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=health
     

     
        All Headline News: Offbeat
        http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=offbeat
     

     
        All Headline News: Politics
        http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=politics
     

     
        All Headline News: Sports
        http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=sports
     

     
        All Headline News: Technology
        http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=technology
     

     
        All Headline News: Top
        http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=top
     

     
        All Headline News: World
        http://www.allheadlinenews.com/cgi-bin/news/xml/newsxml.cgi?cat=world
     

     
        All Xbox Skins: 10 Most Recent
        http://www.allxboxskins.com/rssskins.xml
     

     
        All Xbox Skins: Avalaunch
        http://www.allxboxskins.com/rssavalaunch.xml
     

     
        All Xbox Skins: CPX-MenuX
        http://www.allxboxskins.com/rsscpxmenux.xml
     

     
        All Xbox Skins: Evolution X
        http://www.allxboxskins.com/rssevox.xml
     

     
        All Xbox Skins: Halo Cache Editor
        http://www.allxboxskins.com/rsshce.xml
     

     
        All Xbox Skins: Media X Menu
        http://www.allxboxskins.com/rssmxm.xml
     

     
        All Xbox Skins: Mega X-Key
        http://www.allxboxskins.com/rssmegaxkey.xml
     

     
        All Xbox Skins: MS Dash
        http://www.allxboxskins.com/rssmsdash.xml
     

     
        All Xbox Skins: tHc Dash
        http://www.allxboxskins.com/rssthc.xml
     

     
        All Xbox Skins: Unleash X
        http://www.allxboxskins.com/rssunleashx.xml
     

     
        All Xbox Skins: Xbox Media Center
        http://www.allxboxskins.com/rssxbmc.xml
     

     
        All Xbox Skins: Xbox Media Player
        http://www.allxboxskins.com/rssxbmp.xml
     

     
        All Xbox Skins: Xlink-BoxLink
        http://www.allxboxskins.com/rssxlink-boxlink.xml
     

     
        All Xbox Skins: Xport Emulators
        http://www.allxboxskins.com/rssemu.xml
     

     
        Amazon.com: Top Items
        http://www.mikeshea.net/newsfeeds/amazon_top_dvds.xml
     

     
        Another Useless Website
        http://anotheruselesswebsite.com/backend.php
     

     
        ArsTechnica
        http://arstechnica.com/etc/rdf/ars.rdf
     

     
        BBC News: UK Edition
        http://www.mikeshea.net/newsfeeds/bbc.xml
     

     
        Boing Boing
        http://www.mikeshea.net/newsfeeds/boingboing.xml
     

     
        CNN
        http://www.mikeshea.net/newsfeeds/cnn.xml
     

     
        CNN: Entertainment
        http://www.mikeshea.net/newsfeeds/cnn_entertainment.xml
     

     
        Daypop Top 40
        http://www.mikeshea.net/newsfeeds/daypop.xml
     

     
        Eberts Reviews
        http://www.mikeshea.net/newsfeeds/ebert.xml
     

     
        ESPN
        http://www.mikeshea.net/newsfeeds/espn.xml
     

     
        GameSpot: All Games
        http://www.gamespot.com/misc/rss/gamespot_updates_all_games.xml
     

     
        GameSpot: Downloads
        http://www.gamespot.com/misc/rss/gamespot_updates_downloads.xml
     

     
        GameSpot: Features
        http://www.gamespot.com/misc/rss/gamespot_updates_features.xml
     

     
        GameSpot: Gameboy Advance
        http://www.gamespot.com/misc/rss/gamespot_updates_game_boy_advance.xml
     

     
        GameSpot: Gamecube
        http://www.gamespot.com/misc/rss/gamespot_updates_gamecube.xml
     

     
        GameSpot: Movies
        http://www.gamespot.com/misc/rss/gamespot_updates_movies.xml
     

     
        GameSpot: News
        http://www.gamespot.com/misc/rss/gamespot_updates_news.xml
     

     
        GameSpot: PC
        http://www.gamespot.com/misc/rss/gamespot_updates_pc.xml
     

     
        GameSpot: Playstation 2
        http://www.gamespot.com/misc/rss/gamespot_updates_playstation_2.xml
     

     
        GameSpot: Previews
        http://www.gamespot.com/misc/rss/gamespot_updates_previews.xml
     

     
        GameSpot: Reviews
        http://www.gamespot.com/misc/rss/gamespot_updates_reviews.xml
     

     
        GameSpot: Screens
        http://www.gamespot.com/misc/rss/gamespot_updates_screens.xml
     

     
        GameSpot: Xbox
        http://www.gamespot.com/misc/rss/gamespot_updates_xbox.xml
     

     
        Google News: Business
        http://www.mikeshea.net/newsfeeds/google_news_business.xml
     

     
        Google News: Entertainment
        http://www.mikeshea.net/newsfeeds/google_news_entertainment.xml
     

     
        Google News: Health
        http://www.mikeshea.net/newsfeeds/google_news_health.xml
     

     
        Google News: Playstation 2
        http://www.mikeshea.net/newsfeeds/google_news_xbox.xml
     

     
        Google News: Sci-Tech
        http://www.mikeshea.net/newsfeeds/google_news_sci_tech.xml
     

     
        Google News: Sports
        http://www.mikeshea.net/newsfeeds/google_news_sports.xml
     

     
        Google News: USA
        http://www.mikeshea.net/newsfeeds/google_news_us.xml
     

     
        Google News: World
        http://www.mikeshea.net/newsfeeds/google_news_world.xml
     

     
        Google News: Xbox
        http://www.mikeshea.net/newsfeeds/google_news_xbox.xml
     

     
        Liquid Theater
        http://www.mikeshea.net/newsfeeds/liquidtheater.xml
     

     
        Max Console: Gameboy Advance
        http://www.maxconsole.com/rss/gbafeed.rss
     

     
        Max Console: Gamecube
        http://www.maxconsole.com/rss/gcfeed.rss
     

     
        Max Console: Playstation 2
        http://www.maxconsole.com/rss/ps2feed.rss
     

     
        Max Console: Xbox
        http://www.maxconsole.com/rss/xboxfeed.rss
     

     
        Mobhunter
        http://www.mikeshea.net/newsfeeds/mobhunter.xml
     

     
        Moreover: Biological
        http://p.moreover.com/cgi-local/page?c=Science%3A%20biological%20sciences%20news&o=rss
     

     
        Moreover: Entertainment Gossip
        http://p.moreover.com/cgi-local/page?c=Entertainment%3A%20gossip&o=rss
     

     
        Moreover: Entrepreneur
        http://p.moreover.com/cgi-local/page?c=Entrepreneur%20news&o=rss
     

     
        Moreover: Genetics
        http://p.moreover.com/cgi-local/page?c=Genetics%20news&o=rss
     

     
        Moreover: IBM
        http://p.moreover.com/cgi-local/page?c=IBM%20news&o=rss
     

     
        Moreover: Intel
        http://p.moreover.com/cgi-local/page?c=Intel%20news&o=rss
     

     
        Moreover: Job Markets
        http://p.moreover.com/cgi-local/page?c=Job%20markets%20news&o=rss
     

     
        Moreover: Law
        http://p.moreover.com/cgi-local/page?c=Law%20news&o=rss
     

     
        Moreover: Linux
        http://p.moreover.com/cgi-local/page?c=Linux%20news&o=rss
     

     
        Moreover: Macintosh
        http://p.moreover.com/cgi-local/page?c=Macintosh%20news&o=rss
     

     
        Moreover: McDonalds
        http://p.moreover.com/cgi-local/page?c=McDonalds%20news&o=rss
     

     
        Moreover: MS
        http://p.moreover.com/cgi-local/page?c=MS%20news&o=rss
     

     
        Moreover: MP3
        http://p.moreover.com/cgi-local/page?c=MP3%20news&o=rss
     

     
        Moreover: Nanotechnology
        http://p.moreover.com/cgi-local/page?c=Nanotechnology%20news&o=rss
     

     
        Moreover: Space Science
        http://p.moreover.com/cgi-local/page?c=Space%20science%20news&o=rss
     

     
        Moreover: Tech Events
        http://p.moreover.com/cgi-local/page?c=Tech%20events&o=rss
     

     
        Moreover: Video Games
        http://p.moreover.com/cgi-local/page?c=Videogame%20news&o=rss
     

     
        Moreover: Virus Warnings
        http://p.moreover.com/cgi-local/page?c=Virus%20warnings&o=rss
     

     
        Moreover: Wal-Mart Stores
        http://p.moreover.com/cgi-local/page?c=Wal%2DMart%20Stores%20news&o=rss
     

     
        Moreover: Walt Disney
        http://p.moreover.com/cgi-local/page?c=Walt%20Disney%20news&o=rss
     

     
        Moreover: Windows
        http://p.moreover.com/cgi-local/page?c=Windows%202000%20news&o=rss
     

     
        News 4 Sites: Aerospace
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=692
     

     
        News 4 Sites: Airlines Commercial News
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2365
     

     
        News 4 Sites: Amusement Parks
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=143
     

     
        News 4 Sites: Artificial Intelligence
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=60
     

     
        News 4 Sites: Astrology
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=1072
     

     
        News 4 Sites: CIA
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=1473
     

     
        News 4 Sites: College Baseball
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=849
     

     
        News 4 Sites: College Football
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=848
     

     
        News 4 Sites: College Sports
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=850
     

     
        News 4 Sites: Cub Scouts
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2559
     

     
        News 4 Sites: Disease Outbreaks
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2398
     

     
        News 4 Sites: Earthquakes
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2523
     

     
        News 4 Sites: Extraterrestrial
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2004
     

     
        News 4 Sites: FARC
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=1067
     

     
        News 4 Sites: FBI
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=1471
     

     
        News 4 Sites: Martial Arts
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=300
     

     
        News 4 Sites: Motorsports
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=296
     

     
        News 4 Sites: Music
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=149
     

     
        News 4 Sites: Musicals
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=1898
     

     
        News 4 Sites: National Parks
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2297
     

     
        News 4 Sites: Opera
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2024
     

     
        News 4 Sites: Police
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2298
     

     
        News 4 Sites: Radio
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=148
     

     
        News 4 Sites: Religion
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2299
     

     
        News 4 Sites: Rugby
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=713
     

     
        News 4 Sites: Students
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=727
     

     
        News 4 Sites: Technology
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=14
     

     
        News 4 Sites: Television
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=146
     

     
        News 4 Sites: TV Shows
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=774
     

     
        News 4 Sites: Weather
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=2095
     

     
        News 4 Sites: World at a Glance
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=546
     

     
        News 4 Sites: Wrestling
        http://www.news4sites.com/service/newsfeed.php?tech=rss&id=835
     

     
        Slashdot
        http://www.slashdot.org/slashdot.rdf
     

     
        Usenet: alt.games.video.sony-playstation2
        http://www.mikeshea.net/newsfeeds/usenet_playstation2.xml
     

     
        Usenet: alt.games.video.xbox
        http://www.mikeshea.net/newsfeeds/usenet_xbox.xml
     

     
        Wired News
        http://www.mikeshea.net/newsfeeds/wired.xml
     

     
        Xbins
        http://xbins.org/xbins.xml
     

     
        Xbox-Scene
        http://www.xbox-scene.com/xbox1data/xbox-scene.xml
     

 


 <
Logged