gameboy Posted January 13, 2012 Report Share Posted January 13, 2012 I found a strange problem in the game,I like a clean game menu screen, how can I remove this information, thank you!BTW:Picture painted blue circle inside the place! Quote Link to comment Share on other sites More sharing options...
MishFTW Posted January 13, 2012 Report Share Posted January 13, 2012 Because the game is in alpha testing phase, its there. (Version identification and such for debugging) It won't be there later on in the future. As far as I know, its part of the GUI and I'm not sure which files you would modify to remove it. But its normal, so don't worry. Quote Link to comment Share on other sites More sharing options...
fcxSanya Posted January 13, 2012 Report Share Posted January 13, 2012 I found a strange problem in the game,I like a clean game menu screen, how can I remove this information, thank you!Session gui layout is defined in the binaries/data/mods/public/gui/session/session.xml file. This particular block is:337 <!-- ================================ ================================ -->338 <!-- ALPHA LABELS (alpha, build time, revision) -->339 <!-- ================================ ================================ -->340 341 <!-- Displays Alpha name and number -->342 <object size="70%-128 0 70%+128 100%" name="alphaLabel" type="text" style="CenteredLabelText" text_valign="top" ghost="true">343 ALPHA VIII : HaxÄmaniÅ¡344 345 <!-- Displays build date and revision number-->346 <object size="50%-128 0 50%+128 100%-2" name="buildTimeLabel" type="text" text_align="center" text_valign="bottom" font="serif-12" textcolor="white" ghost="true">347 <action on="Load"><![CDATA[this.caption = buildTime(0) + " (" + buildTime(2) + ")";]]></action>348 </object>349 </object>You can try to add hidden="false" to the alphaLabel object, or comment/remove the entire block (in case if it is not referred from other code, I did not checked this). Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.