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
 
Reply to this topicStart new topic
> Possibility Of Starting An Actionscript, when running an app or game
spillage
post Dec 23 2003, 08:43 PM
Post #1


X-S Freak
*****

Group: Members
Posts: 1262
Joined: 22-August 03
From: United Kingdom
Member No.: 57836
Xbox Version: v1.4
360 version: none



jester.gif Is it possible to run an actionscript, in this case the fanspeed adjuster, when loading an app or game. What I want to be able to do is have the fan max out when I run XBFTP or do a system link at LAN parties on preset games.

I.e Load Halo fan goto to 100%
Reset to dash fan to 20%

Happy Christmas
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
geniusalz
post Dec 23 2003, 08:57 PM
Post #2


Team MXM
*****

Group: Head Moderator
Posts: 1827
Joined: 3-January 03
Member No.: 16298
Xbox Version: v1.1
360 version: unknown



You need to specify an OnLaunch script in your mxm.xml

<Config>
...
<scripts>
<ActionScript name="_OnLaunch"> (or maybe it's without the underscore, try either)
Set fanspeed whatever
</ActionScript>
</Scripts>
...
</Config>
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
spillage
post Dec 24 2003, 11:04 PM
Post #3


X-S Freak
*****

Group: Members
Posts: 1262
Joined: 22-August 03
From: United Kingdom
Member No.: 57836
Xbox Version: v1.4
360 version: none



geniusalz,

thanks I will try that later today when the f**king relatives invade my space.

Cheers

User is offlineProfile CardPM
Go to the top of the page
+Quote Post
spillage
post Dec 24 2003, 11:32 PM
Post #4


X-S Freak
*****

Group: Members
Posts: 1262
Joined: 22-August 03
From: United Kingdom
Member No.: 57836
Xbox Version: v1.4
360 version: none



Sorry, but after thinking about it I don't understand where to implement the command.

A hint, rather than the answer would be appreciated using this as an example. Thanks

<item>
<dir>F:HDDLOADERProject Gotham Racing 2</dir>
<exe>F:HDDLOADERProject Gotham Racing 2default.xbe</exe>
<title>Project Gotham Racing 2 (PAL)</title>
<media>F:MXM Video Previewst_projectgothamracing2.wmv</media>
</item>
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
geniusalz
post Dec 24 2003, 11:40 PM
Post #5


Team MXM
*****

Group: Head Moderator
Posts: 1827
Joined: 3-January 03
Member No.: 16298
Xbox Version: v1.1
360 version: unknown



The onlaunch executes everytime you launch anything

But if you want it only for certain games, then:
<item>
<dir>F:HDDLOADERProject Gotham Racing 2</dir>
<action>
SETFANSPEED whatever (10-50, i think)
EXEC "F:\\HDDLOADER\\Project Gotham Racing 2\\default.xbe" (Might wanna check on the use of backslashes inside qoutes, i think u have to double them up)
</action>
<title>Project Gotham Racing 2 (PAL)</title>
<media>F:MXM Video Previewst_projectgothamracing2.wmv</media>
</item>

User is offlineProfile CardPM
Go to the top of the page
+Quote Post
spillage
post Dec 24 2003, 11:47 PM
Post #6


X-S Freak
*****

Group: Members
Posts: 1262
Joined: 22-August 03
From: United Kingdom
Member No.: 57836
Xbox Version: v1.4
360 version: none



That was fast.......................

Respect beerchug.gif
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
spillage
post Dec 25 2003, 05:36 PM
Post #7


X-S Freak
*****

Group: Members
Posts: 1262
Joined: 22-August 03
From: United Kingdom
Member No.: 57836
Xbox Version: v1.4
360 version: none



<item>
<dir>F:HDDLOADERProject Gotham Racing 2</dir>
<action>
EXEC "F:HDDLOADERProject Gotham Racing 2default.xbe"
SETFANSPEED Manual 50
</action>
<title>Project Gotham Racing 2 (PAL)</title>
<media>F:MXM Video Previewst_projectgothamracing2.wmv</media>
</item>

The above xml snippett provides an increase in fanspeed up until the game xbe is run. The fanspeed is then returned to the default setting of the bios in use.
Is there anything that can be done as a work around for this.

If the the fanspeed is adjusted by calling the .xas, setting the fanspeed to 50 then running a game xbe, I can confirm that the fanspeed deafults to the bios setting.

Thanks ph34r.gif

This post has been edited by spillage: Dec 25 2003, 05:37 PM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
spillage
post Dec 25 2003, 05:39 PM
Post #8


X-S Freak
*****

Group: Members
Posts: 1262
Joined: 22-August 03
From: United Kingdom
Member No.: 57836
Xbox Version: v1.4
360 version: none



Any reason why the boards current font won't allow backslashes? \\\
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
spillage
post Dec 25 2003, 05:40 PM
Post #9


X-S Freak
*****

Group: Members
Posts: 1262
Joined: 22-August 03
From: United Kingdom
Member No.: 57836
Xbox Version: v1.4
360 version: none



That's wierd I typed 5 of them and only three are visible. \\
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
geniusalz
post Dec 25 2003, 08:07 PM
Post #10


Team MXM
*****

Group: Head Moderator
Posts: 1827
Joined: 3-January 03
Member No.: 16298
Xbox Version: v1.1
360 version: unknown



SETFANSPEED Manual 50
EXEC "F:HDDLOADERProject Gotham Racing 2default.xbe"

Set the speed first, THEN execute. dry.gif

And the board converts two backslashes to one. And I think MXM does that too, if its inside qoutes
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
spillage
post Dec 26 2003, 11:48 AM
Post #11


X-S Freak
*****

Group: Members
Posts: 1262
Joined: 22-August 03
From: United Kingdom
Member No.: 57836
Xbox Version: v1.4
360 version: none



Tried that thanks, but alas the game seems more interested in what the bios thinks than it's user and Master. Might have to have a normal bios and a LAN bios. But it would be neater to have it done in software instead.

Suggestions on a postcard.

Thanks
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
BenJeremy
post Dec 26 2003, 12:32 PM
Post #12


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

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



QUOTE (spillage @ Dec 26 2003, 07:48 AM)
Tried that thanks, but alas the game seems more interested in what the bios thinks than it's user and Master. Might have to have a normal bios and a LAN bios. But it would be neater to have it done in software instead.

Suggestions on a postcard.

Thanks

PRobably right. The fan speed might get reset when the system "reboots" to load the software. sad.gif


Perhaps that's another area to patch dynamically.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
spillage
post Dec 26 2003, 02:23 PM
Post #13


X-S Freak
*****

Group: Members
Posts: 1262
Joined: 22-August 03
From: United Kingdom
Member No.: 57836
Xbox Version: v1.4
360 version: none



Patch Dynamically he says! The words of a God mean nothing to small fry like myself. I understand what you mean but not how to do it. Are you suggesting an MXM mod of something that would need to be done to the bios or the particular xbe?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
BenJeremy
post Dec 26 2003, 03:25 PM
Post #14


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

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



QUOTE (spillage @ Dec 26 2003, 10:23 AM)
Patch Dynamically he says! The words of a God mean nothing to small fry like myself. I understand what you mean but not how to do it. Are you suggesting an MXM mod of something that would need to be done to the bios or the particular xbe?

Basically, MXM can directly patch the BIOS in RAM (where it is cached), to change the way it works.

If I know where the location is for setting the fan speed, I can direclty patch it to force it to any speed when running a program.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
spillage
post Dec 26 2003, 11:08 PM
Post #15


X-S Freak
*****

Group: Members
Posts: 1262
Joined: 22-August 03
From: United Kingdom
Member No.: 57836
Xbox Version: v1.4
360 version: none



I am sure it's not particularly easy but is that something you could issue as a patch for those who want it or are we talking about 09n8 or so?

I found my box running at 61c (CPU) and 59c (MB) after 11 hours of link gaming. My bios was set for 20% (fanspeed). I considered this an issue and as such will use a second bank set to 100% for the time being.

Cheers BenJeremy
User is offlineProfile CardPM
Go to the top of the page
+Quote Post





Reply to this topicStart new topic

 

Lo-Fi Version Time is now: 21st May 2013 - 09:38 AM