Help - Search - Members - Calendar
Full Version: How To Display The Xbox4.xbx On The Main Orb
Scenyx Entertainment Community > Xbox1 Forums > Dashboard Forums > Official Team UIX Forums > User.Interface.X (UIX) Tutorials
haxjester
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
..::Macro::..
But how do you add the .xm orbs? uhh.gif
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2013 Invision Power Services, Inc.