xboxscene.org forums

Author Topic: How To Display The Xbox4.xbx On The Main Orb  (Read 706 times)

haxjester

  • Archived User
  • Newbie
  • *
  • Posts: 10
How To Display The Xbox4.xbx On The Main Orb
« on: January 03, 2005, 04:41:00 PM »

To display the xbox4.xbx (the pic in the main orb) you need to search for this in default.xap/default.xip
CODE
c.Rotating_Large_X.fade = 0.43;

Add this right beneath it
CODE
var IniFile = new Settings;
   IniFile.SetIniSection( "Orb Style" );
   var e = IniFile.GetIniValue( "xbox4" );
   if( e == "true" ) { c.Modded_Orb.visible = false;
                    c.Stock_Orb.visible = true; }
   else { c.Modded_Orb.visible = true;
               c.Stock_Orb.visible = false; }

 so it looks like this
CODE
c.Rotating_Large_X.fade = 0.43;
        var IniFile = new Settings;
   IniFile.SetIniSection( "Orb Style" );
   var e = IniFile.GetIniValue( "xbox4" );
   if( e == "true" ) { c.Modded_Orb.visible = false;
                    c.Stock_Orb.visible = true; }
   else { c.Modded_Orb.visible = true;
               c.Stock_Orb.visible = false; }

the add this to the uix.ini (can be added anywhere, as in the very bottom of the ini)
CODE
[Orb Style]
xbox4=true

(obviously) true will have it show the xbox4.xbx, and false won't
hope that helped
                 haxjester <
Logged

..::Macro::..

  • Archived User
  • Jr. Member
  • *
  • Posts: 55
How To Display The Xbox4.xbx On The Main Orb
« Reply #1 on: January 07, 2005, 08:03:00 AM »

uhh.gif
Logged