xbox-scene.com - your xbox news information source
Quick Links: Main Forums | Xbox360 Forums | Xbox1 Forums | PS3 Forums
Xbox-Scene Forum Help  Search Xbox-Scene Forums   Xbox-Scene Forum Members   Xbox-Scene Calendar

Giganews Usenet Offers: +1150 days binary retention, 99%+ Completion, and Unlimited Speed/Access!

360 ODD Emulators: X360 Key $99 | Wasabi360 FAT $99 | Wasabi360 Slim $99
C4E's iXtreme Burner MAX Drive: LiteOn iHAS124 DROPPED TO JUST $17


Welcome Guest ( Log In | Register )

 Forum Rules Rules
11 Pages V « < 2 3 4 5 6 > »   
Reply to this topicStart new topic
> Share Scripts For Others, Post new scripts and changes here
Habs69M
post Sep 29 2003, 11:34 PM
Post #46


X-S Senior Member
**

Group: Members
Posts: 259
Joined: 13-January 03
Member No.: 19277
Xbox Version: unk



camora i have a Thomson, but with my version of the script i tried with backup games dvd and it works fine hell i even backed up slayer install disk to my games folder biggrin.gif (just to try)

Didnt try the final version of vexx22 script
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
camora
post Sep 29 2003, 11:40 PM
Post #47


X-S Young Member
*

Group: Members
Posts: 53
Joined: 26-May 03
Member No.: 40419



@Habs69M
Can you see your game disc contents over FTP?
Because i cant and i dont know why. Maybe because of my bios. What BIOS are you using?
Maybe my BIOS is the problem...
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Habs69M
post Sep 29 2003, 11:44 PM
Post #48


X-S Senior Member
**

Group: Members
Posts: 259
Joined: 13-January 03
Member No.: 19277
Xbox Version: unk



QUOTE
Can you see your game disc contents over FTP?


Once its finished coping? yeah sure i can or do you mean just put the game dvd in the xbox and look on D if i see the game folders? that too i can see

My bios is Evox 2.6 V1 blue and my kernel is 1.0.4034
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
camora
post Sep 29 2003, 11:49 PM
Post #49


X-S Young Member
*

Group: Members
Posts: 53
Joined: 26-May 03
Member No.: 40419



Yes, i mean when you just put a game dvd in the box.
Maybe i should try another BIOS...
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
BenJeremy
post Sep 30 2003, 12:01 AM
Post #50


X-S Elysian
*************

Group: Head Moderator
Posts: 9688
Joined: 19-July 02
Member No.: 1853
Xbox Version: v1.1
360 version: v1 (xenon)



QUOTE (camora @ Sep 29 2003, 08:49 PM)
Yes, i mean when you just put a game dvd in the box.
Maybe i should try another BIOS...

Yeah, there's something odd with 4978.03, but I was referring to the MXM FTP Server (I think you were using the BIOS FTP Server?)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
camora
post Sep 30 2003, 12:10 AM
Post #51


X-S Young Member
*

Group: Members
Posts: 53
Joined: 26-May 03
Member No.: 40419



QUOTE (BenJeremy @ Sep 30 2003, 02:01 AM)
Yeah, there's something odd with 4978.03, but I was referring to the MXM FTP Server (I think you were using the BIOS FTP Server?)

I tried it with the MXM FTP Server and with EvoX, not with the BIOS FTP.
I will try to change my BIOS tomorrow. Its getting late here.

This post has been edited by camora: Sep 30 2003, 12:10 AM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
camora
post Sep 30 2003, 12:37 AM
Post #52


X-S Young Member
*

Group: Members
Posts: 53
Joined: 26-May 03
Member No.: 40419



Yes! I changed my BIOS and now the script works like a charm.
Thanks @all
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
DBZRacer
post Sep 30 2003, 06:31 AM
Post #53


X-S Expert
***

Group: Members
Posts: 620
Joined: 9-April 03
Member No.: 31259
Xbox Version: v1.1



NewsfeedSwitch Action Script

Purpose: This action script is a temp fix for people who encounter problems with newsfeeds when the website providing the newsfeed slows down MXM as noted by several users here. I know BJ is working on a permanent fix but I think this does the job nicely for the interim. It basically lets you switch between 2 MXM.xml file versions. This same script can be used/modified to swap between 2 menu.xml files if you want to switch between 2 versions of menus as in a kids/limited only menu version that doesnt list apps or inappropriate games.

Usage:Place NewsfeedSwitch.xas anywhere on your xbox and use the callfile function to execute the script or simly imbed the script in your <action> taglines in your menu.xml. Also needed are 2 copies of your mxm.xml file with newsfeeds enabled in mxmnewsfeedon.xml and disabled in mxmnewsfeedoff.xml

NewsfeedSwitch.xas
CODE

SETFUNC MXMXMLFileSize FILESIZE c:\mxm.xml
SETFUNC NewsfeedONFileSize FILESIZE c:\mxmnewsfeedon.xml
SETFUNC NewsfeedOFFFileSize FILESIZE c:\mxmnewsfeedoff.xml
IF %MXMXMLFileSize% == %NewsfeedONFileSize% GOTO NewsfeedStatusON
IF %MXMXMLFileSize% == %NewsfeedOFFFileSize% GOTO NewsfeedStatusOFF


:NewsfeedStatusON
SET MXMFileStatus "ON"
GOTO Start

:NewsfeedStatusOFF
SET MXMFileStatus "OFF"
GOTO Start

:Start  
BeginDraw UseCurrent
  MessageBox "     - Newsfeed Status: %MXMFileStatus% -$eol$Press Y to Turn Newsfeed ON$eol$Press X to Turn Newsfeed OFF$eol$Press B to Cancel"
EndDraw

Input
 If %_GP_Y% == "1" GOTO NewsfeedON
 If %_GP_X% == "1" GOTO NewsfeedOFF
 If %_GP_B% == "1" GOTO Cancel
Quit

:NewsfeedON
IF %MXMFileStatus% == "ON" GOTO StatusSame
COPY c:\mxmnewsfeedon.xml c:\mxm.xml
SET MXMFileStatus "ON"
GOTO ExitMessage

:NewsfeedOFF
IF %MXMFileStatus% == "OFF" GOTO StatusSame
COPY c:\mxmnewsfeedoff.xml c:\mxm.xml
SET MXMFileStatus "OFF"
GOTO ExitMessage

:StatusSame
BeginDraw UseCurrent
  MessageBox "Newsfeed Status is already %MXMFileStatus%"
EndDraw
Delay 1
Goto Start

:ExitMessage
BeginDraw UseCurrent
  MessageBox "- Newsfeed Status: %MXMFileStatus% -$eol$     Press A to Accept$eol$         B to Change"
EndDraw
Input
 If %_GP_A% == "1" GOTO Reboot
 If %_GP_B% == "1" GOTO Start

:Reboot
Reboot
Quit

:Cancel
BeginDraw UseCurrent
  MessageBox "- Newsfeed Status: %MXMFileStatus% -$eol$    CHANGE ABORTED"
EndDraw
Delay 2


Sample mxmnewsfeedon.xml
QUOTE

<Config>

<Main>
  <SkinsPath>C:\MXMSkins</SkinsPath>
  <DiscTitle>Media X Menu</DiscTitle>
  <DiscSubtitle>MXM.xml File</DiscSubtitle>
  <RemoveDuplicates>True</RemoveDuplicates>
  <RemoveInvalid>True<RemoveInvalid>
</Main>

<Preferences>
  <FTPPriority>highest</FTPPriority>
  <SynchronizeClock>false</SynchronizeClock>
  <TimeServerIP>192.168.0.100</TimeServerIP>
  <Nickname>MXM</Nickname>
  <AutoLaunchGame>False</AutoLaunchGame>
  <AutoLaunchMovie>False</AutoLaunchMovie>
  <AutoLoadMulti>False</AutoLoadMulti>
  </Preferences>

<Network>
  <UseDHCP>false</UseDHCP>
  <IP>192.168.0.321</IP>
  <DefaultGateway>192.168.0.1</DefaultGateway>
  <SubnetMask>255.255.255.0</SubnetMask>
  <DNS1>192.168.0.1</DNS1>
</Network>



<Overrides>
</Overrides>

<FTPServer>
  <User>
  <Name>xbox</Name>
  <Password>xbox</Password>
  </User>
  <AllowAnon>False</AllowAnon>
  <AnonRoot></AnonRoot>
  <ServerPort>21</ServerPort>
</FTPServer>

<Newsfeed name="newsfeed">
  <Global>True</Global>
  <RotateChannels>True</RotateChannels>
  <URL>http://www.xbox-scene.com/xbox1data/xbox-scene.xml</URL>
  <UpdateIntervalMin>20</UpdateIntervalMin>
  <RotateItemInterval>5</RotateItemInterval>
</Newsfeed>

</Config>



Sample mxmnewsfeedoff.xml
QUOTE

<Config>

<Main>
  <SkinsPath>C:\MXMSkins</SkinsPath>
  <DiscTitle>Media X Menu</DiscTitle>
  <DiscSubtitle>MXM.xml File</DiscSubtitle>
  <RemoveDuplicates>True</RemoveDuplicates>
  <RemoveInvalid>True<RemoveInvalid>
</Main>

<Preferences>
  <FTPPriority>highest</FTPPriority>
  <SynchronizeClock>false</SynchronizeClock>
  <TimeServerIP>192.168.0.100</TimeServerIP>
  <Nickname>MXM</Nickname>
  <AutoLaunchGame>False</AutoLaunchGame>
  <AutoLaunchMovie>False</AutoLaunchMovie>
  <AutoLoadMulti>False</AutoLoadMulti>
  </Preferences>

<Network>
  <UseDHCP>false</UseDHCP>
  <IP>192.168.0.321</IP>
  <DefaultGateway>192.168.0.1</DefaultGateway>
  <SubnetMask>255.255.255.0</SubnetMask>
  <DNS1>192.168.0.1</DNS1>
</Network>



<Overrides>
</Overrides>

<FTPServer>
  <User>
  <Name>xbox</Name>
  <Password>xbox</Password>
  </User>
  <AllowAnon>False</AllowAnon>
  <AnonRoot></AnonRoot>
  <ServerPort>21</ServerPort>
</FTPServer>

</Config>


Please post feedback and/or bugs in the script... I have tested it on my personal xbox and have not run into any problems yet. beerchug.gif

PS: I even tried to get the character spacing right by adding whitespaces in the display screens. Hopefully there's a CENTER TEXT command in a future release of MXM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
irajames1176
post Sep 30 2003, 08:32 AM
Post #54


X-S X-perience
**

Group: Members
Posts: 337
Joined: 21-October 02
From: Alaska
Member No.: 5426
Xbox Version: v1.0
360 version: v1 (xenon)



Would it be possible to customize the DVD Copy script so it can add the copied game to the Menu.XML? I think it would be really great to try something like that for people that don't use menu caching or already have there menu all manually setup the way they like it? or am i missing something can you already have the menu cache set to autoadd games to your game list in the menu?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
vexx22
post Sep 30 2003, 12:13 PM
Post #55


X-S Member
*

Group: Members
Posts: 96
Joined: 22-September 03
From: Germany
Member No.: 63907
Xbox Version: v1.1



i donīt think that it can added know, but nobody knows what BJ will add in next version.

BJ added now a fully functional Mediapatch string for ActionScript, but isnīt useable yet. But in next version.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Madgame
post Sep 30 2003, 01:12 PM
Post #56


X-S Member
*

Group: Members
Posts: 72
Joined: 24-August 03
Member No.: 58279
Xbox Version: v1.0
360 version: v1 (xenon)



I am in the same boat with the copy script not working. Same setup as vexx. Can see the disc through MXM FTP. Do I need to change my bios in order for the script to work? All I get now is a reboot and the empty game folder in my games directory.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
BenJeremy
post Sep 30 2003, 01:28 PM
Post #57


X-S Elysian
*************

Group: Head Moderator
Posts: 9688
Joined: 19-July 02
Member No.: 1853
Xbox Version: v1.1
360 version: v1 (xenon)



QUOTE (Madgame @ Sep 30 2003, 10:12 AM)
I am in the same boat with the copy script not working. Same setup as vexx. Can see the disc through MXM FTP. Do I need to change my bios in order for the script to work? All I get now is a reboot and the empty game folder in my games directory.

What BIOS are you using?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
vexx22
post Sep 30 2003, 01:42 PM
Post #58


X-S Member
*

Group: Members
Posts: 96
Joined: 22-September 03
From: Germany
Member No.: 63907
Xbox Version: v1.1



I tried it now with several games originaal and backups and all copied perfect. Without one game but that was ok because it has an error in XBE title that make sthe Problem because in DExbe it was shown as 007|:|Nightfire and exactly this sign "|" made the problem i think bcause other games with space like "Dead or Alive 3" don t make a problem.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Madgame
post Sep 30 2003, 01:47 PM
Post #59


X-S Member
*

Group: Members
Posts: 72
Joined: 24-August 03
Member No.: 58279
Xbox Version: v1.0
360 version: v1 (xenon)



My bios is X2 4976.02.

I was trying it with TWPGA2004.

This post has been edited by Madgame: Sep 30 2003, 01:52 PM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
vexx22
post Sep 30 2003, 02:02 PM
Post #60


X-S Member
*

Group: Members
Posts: 96
Joined: 22-September 03
From: Germany
Member No.: 63907
Xbox Version: v1.1



I mean i have EvolutionX D6 bios it to long that i put in on the chip, sorry.

I think its because the xecuter Bios becasue HABS69M has Xecuter too i mean. And has problems too.

This post has been edited by vexx22: Sep 30 2003, 02:03 PM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post





11 Pages V « < 2 3 4 5 6 > » 
Reply to this topicStart new topic

 

Lo-Fi Version Time is now: 20th May 2013 - 08:23 PM