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
2 Pages V  1 2 >  
Reply to this topicStart new topic
> Add Fan Speed To Config, Change Fan Speed through Config
CompFreak07
post Jan 10 2005, 10:39 PM
Post #1


X-S Senior Member
**

Group: Members
Posts: 216
Joined: 20-January 04
From: Dayton, OH
Member No.: 93597
Xbox Version: v1.6
360 version: v1 (xenon)



This is a code snippet to let you change your fan speed in the Dash Config. You can set it on intervals of 10 only starting from 20 - 100. (example 30 or 40 not 33 or 41 ext) I also added a safety feature that is if by accident it gets set to somthing besides a interval of 10 then your fan wont stop working it will automaticaly set it to 100 % speed. Open default.xip/default.xap.
Locate:
CODE

  theAmbientSound3.Play();

theXboxNetwork.StartServices();
theXboxNetwork.StartFTPServices();


And right after that insert:
CODE
SetFanSpeed();


At the end of default.xap paste:
CODE

// Function to set Fan Speed

function SetFanSpeed() //Exiles
{
var IniFile = new Settings;
IniFile.SetIniSection( "Sys Config" );
var FanSpeedST = IniFile.GetIniValue( "FanSpeed" );
var FanSpeedS = ReturnInteger(FanSpeedST);
if (FanSpeedS==20) { theConfig.SetFanSpeed(20); }
else if (FanSpeedS==30) { theConfig.SetFanSpeed(30); }
else if (FanSpeedS==40) { theConfig.SetFanSpeed(40); }
else if (FanSpeedS==50) { theConfig.SetFanSpeed(50); }
else if (FanSpeedS==60) { theConfig.SetFanSpeed(60); }
else if (FanSpeedS==70) { theConfig.SetFanSpeed(70); }
else if (FanSpeedS==80) { theConfig.SetFanSpeed(80); }
else if (FanSpeedS==90) { theConfig.SetFanSpeed(90); }
else if (FanSpeedS==100) { theConfig.SetFanSpeed(100); }
else { theConfig.SetFanSpeed(100); }
}



Save default.xap and default.xip.

Open default.xip / config.xap

Locate:
CODE
function BuildMainList()


Scroll down until you see
CODE
ClearText();
UpdateText();
}


right above that paste:
CODE
configList[i] = "Fan Speed:";
configValues[i] = "c-Sys Config-FanSpeed";
configSelect[i] = "ConfigKeyB()";
i = i + 1;



Finally add this on the bottom of your uix.ini
CODE

[Sys Config]
FanSpeed=100

ph34r.gif
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
CrakkedOut
post Jan 10 2005, 11:33 PM
Post #2


X-S Expert
***

Group: Members
Posts: 731
Joined: 21-August 03
From: LINY
Member No.: 57638
Xbox Version: none
360 version: none



mmmmm code...... beerchug.gif
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
grindbg
post Jan 11 2005, 01:27 AM
Post #3


X-S Enthusiast


Group: Members
Posts: 22
Joined: 13-July 04
Member No.: 130079



good job, but why fanspeed=100?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Infamous_One
post Jan 11 2005, 02:43 AM
Post #4


X-S Freak
*****

Group: XS-BANNED
Posts: 1646
Joined: 27-May 04
Member No.: 122280
Xbox Version: v1.0



QUOTE(grindbg @ Jan 11 2005, 01:58 AM)
good job, but why fanspeed=100?
*



you change it damn it. is not 100 if you dont want to.




Great Code. beerchug.gif
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
CompFreak07
post Jan 11 2005, 02:58 AM
Post #5


X-S Senior Member
**

Group: Members
Posts: 216
Joined: 20-January 04
From: Dayton, OH
Member No.: 93597
Xbox Version: v1.6
360 version: v1 (xenon)



Fan Speed is 100 because that is what I always run it on because I have a upgraded Hard Drive. You can change it to whatever you want. If any of you are using the "Hard Drive, Free And Used Space Display" I added to it to show your fan speed. Click Here to see it

This post has been edited by CompFreak07: Jan 11 2005, 03:00 AM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
grindbg
post Jan 11 2005, 04:03 AM
Post #6


X-S Enthusiast


Group: Members
Posts: 22
Joined: 13-July 04
Member No.: 130079



QUOTE(Infamous_One @ Jan 11 2005, 03:14 AM)
you change it damn it. is not 100 if you dont want to.
Great Code.  beerchug.gif
*



What's wrong to ask? I don't wanna fry my xbox, my bios runs fanspeed 30 but for the dash 100 looks suspicious and now when I know whats was the reason for that everything is ok and I am so grateful, thax CompFreak07 realy great code.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
CompFreak07
post Jan 11 2005, 04:25 AM
Post #7


X-S Senior Member
**

Group: Members
Posts: 216
Joined: 20-January 04
From: Dayton, OH
Member No.: 93597
Xbox Version: v1.6
360 version: v1 (xenon)



No problem, I dont mind anyone asking questions. The more questions people ask the more stuff that might get done.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
motofo
post Jan 11 2005, 02:47 PM
Post #8


X-S Member
*

Group: Members
Posts: 86
Joined: 27-January 04
Member No.: 95573



great code....was tryin to figure out same code myself.....now I see what I was missin! Thnx again!
m0t0
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Blasterjumper
post Jan 11 2005, 05:46 PM
Post #9


X-S Member
*

Group: Members
Posts: 131
Joined: 4-July 03
Member No.: 47281



Does changing the speed make the xbox alot louder? Also is there a tuturoil on how to write you own code? I know a little bit of java and i think i could catch on if i had a guide explaining the syntax.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
CompFreak07
post Jan 22 2005, 09:59 AM
Post #10


X-S Senior Member
**

Group: Members
Posts: 216
Joined: 20-January 04
From: Dayton, OH
Member No.: 93597
Xbox Version: v1.6
360 version: v1 (xenon)



For any of you who have used this code you would know you have to type in the fan speed you want on the xbox keyboard app. Well I have mafe it eaiser so all you have to do is click on it in the config and it will go from 20 to 30 and then from 30 to 40 and so on. Open up Default.xip/Config.xap. Then search for :
CODE

configList[i] = "Fan Speed:";


Below that where it says :
CODE

configSelect[i] = "ConfigKeyB()";


replace that with :
CODE

configSelect[i] = "ToggleFan()";


Now at the end of Default.xip/Config.xap add :
CODE

function ToggleFan()
{
   var c = theConfigPanel.children[0].children[0];
   var b = c.theRightSlots.children[LV2Item].children[0].geometry.text;
   if(b.toLowerCase() == "20") { RefreshMenu("30"); }
   else if(b.toLowerCase() == "30") { RefreshMenu("40"); }
  else if(b.toLowerCase() == "40") { RefreshMenu("50"); }
  else if(b.toLowerCase() == "50") { RefreshMenu("60"); }
  else if(b.toLowerCase() == "60") { RefreshMenu("70"); }
  else if(b.toLowerCase() == "70") { RefreshMenu("80"); }
  else if(b.toLowerCase() == "80") { RefreshMenu("90"); }
  else if(b.toLowerCase() == "90") { RefreshMenu("100"); }
  else if(b.toLowerCase() == "100") { RefreshMenu("20"); }
}


That should do it. Restart your xbox and enjoy
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
DaBeast77
post Jan 22 2005, 10:09 AM
Post #11


X-S X-perience
**

Group: Members
Posts: 313
Joined: 16-April 03
From: Richmond, Virginia
Member No.: 32489
Xbox Version: v1.0



Great code
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
CompFreak07
post Jan 22 2005, 10:10 AM
Post #12


X-S Senior Member
**

Group: Members
Posts: 216
Joined: 20-January 04
From: Dayton, OH
Member No.: 93597
Xbox Version: v1.6
360 version: v1 (xenon)



thx
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Godflesh
post May 28 2005, 10:41 AM
Post #13


X-S Enthusiast


Group: Members
Posts: 22
Joined: 22-June 04
Member No.: 126651



Can't get this to work...

I can change the fanspeed in the "System Settings Menu" ..to for instance 80 or something, but when I reboot etc the fan is still at 20 % speed..nothing happens.

What am I doing wrong?

User is offlineProfile CardPM
Go to the top of the page
+Quote Post
Godflesh
post May 28 2005, 11:38 AM
Post #14


X-S Enthusiast


Group: Members
Posts: 22
Joined: 22-June 04
Member No.: 126651



Could someone please have a look at my files and fix em so they will work? Been trying for about 2 hours now ..and still no luck.



http://www.xs4all.nl/~godflesh/lol/uixfanspeed.rar



p.s. XBMC has a nice feature called "Auto Temperature Control" ...would be awesome if UIX had the some option build within it like thise. ..if for instance you play a game the fan automaticly starts to spin harder etc.
They more heat is generated (Movie / Games) the harder it cools.

This post has been edited by Godflesh: May 28 2005, 11:39 AM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
BlackWraith
post May 28 2005, 12:39 PM
Post #15


X-S Member
*

Group: Members
Posts: 133
Joined: 9-February 04
From: United States
Member No.: 98906
Xbox Version: v1.0
360 version: v1 (xenon)



Do me and everyone else a favor before you decide to post links to files. Read the God Damned rules! Sorry for the brashness, but man you cannot have links to xips or the such on the forums. Post your xap as a text file if necessary. Kill the link immediately.

This post has been edited by BlackWraith: May 28 2005, 12:42 PM
User is offlineProfile CardPM
Go to the top of the page
+Quote Post





2 Pages V  1 2 >
Reply to this topicStart new topic

 

Lo-Fi Version Time is now: 21st May 2013 - 06:11 AM