Page 1 of 1

Uaseco remove some plugins, widgets

Posted: 27 Jun 2017, 09:45
by jakvrh1
Greetings,

would someone explain to me how to remove that weird sound and colored counting at the start. And how to remove some widgets that I wouldn't need?

Best regards,
Jaka

Re: Uaseco remove some plugins, widgets

Posted: 27 Jun 2017, 18:48
by hackie
To remove some widgets : records_eyepiece.xml file.

Weird sound and color : effect studio.xml file ( all the way down )
Look at this :

Code: Select all

		<script>
			<enabled>true</enabled>
			<path>config/effect_studio/countdown-3-2-1-GO!.xml</path>
		</script>
remove "true" and plave "false"


At the top of the screen you find the info bar , look into the plugins.xml file to disable this :

Code: Select all

	<!-- Optional plugins -->
	<plugin>plugin.dedimania.php</plugin>
	<plugin>plugin.welcome_center.php</plugin>
	<plugin>plugin.tachometer.php</plugin>
	<plugin>plugin.info_bar.php</plugin>
	<plugin>plugin.stunt_messages.php</plugin>
	<plugin>plugin.donate.php</plugin>
	<plugin>plugin.rounds.php</plugin>
	<plugin>plugin.round_points.php</plugin>
	<plugin>plugin.round_autoend.php</plugin>
	<plugin>plugin.mania_exchange.php</plugin>
to disable the info_bar :

Code: Select all

	<!-- Optional plugins -->
	<plugin>plugin.dedimania.php</plugin>
	<plugin>plugin.welcome_center.php</plugin>
	<plugin>plugin.tachometer.php</plugin>
 <!--	<plugin>plugin.info_bar.php</plugin>  -->
	<plugin>plugin.stunt_messages.php</plugin>
	<plugin>plugin.donate.php</plugin>
	<plugin>plugin.rounds.php</plugin>
	<plugin>plugin.round_points.php</plugin>
	<plugin>plugin.round_autoend.php</plugin>
	<plugin>plugin.mania_exchange.php</plugin>