FoxControl is a new server controller for TrackMania Forever.
Since the start of the beta I have adapted it to TrackMania².
Now the beta version is ready!
Some features aren't available yet. So I deactivated Dedimania, the SKP System and the alternative Scorepanel.
I am working on a solution to adapt the SKP System to TM².
If you want more information about FoxControl, please read the topic at the tm-forum.de!
FoxControl has now a completly new style! But you can modify it in the config file

You can test FoxControl at the "FoxControl" server at Germany/Bavaria/Munich.
Download HERE!
If there are any problems feel free to post them here. But remember: It is an beta version! There could be some bugs. If you found one, please report it.
We worked hard to fix bugs and update many files for the best result.
Now FoxControl has a complete new style! But you can modify it in the config file

Our Team Member Jens made a new Homepage. Thanks Jens

http://www.fox-control.de
And we have now a own support forum: http://forum.fox-control.de


Now you can add tracks directly from ManiaExchange by typing in the following command:
/add track MXId
The script is running on our Master Server so that everyone can use it.
Changelog:
Have fun**************************
*****v0.2 -> v0.3*****
**************************
- Overworked and bugfixed plugin.records.php -> You now can hide the widgets by pressing F7
- New function in chat.admin.php -> Use the command "/add track MXid" to add a track from ManiaExchange
- Bugfixed plugin.scorepanel.php
- Updated control.php
- Updated plugin.menu.php
- Updated plugin.adminpanel.php
- Updated plugin.newsupdate.php

EDIT:
You could leafe the COmmunity code empty for the moment because there exists no community code at this time for tm2
EDIT2: IF you want to power up Fox COntrol for the Moment remove the "chatlog.plugin" from plugins.xml. This will bring fox controll faster. We will fix this with next update in the next days
EDIT3 (i will do the 100 ^^): Please be carefull. For the Moment Fox Control cant handle more then 30 players and maps had to be longer then 20sec. We will fix this also with the next update. Its still a beta

EDIT4 (Jeah^^): The Guys from the Mania Community (http://www.mania-community.de/content.php) foound a solution to fight against the crash bug. But this will be just a stopgap up to the time the real fix will be released
Code: Select all
#! /bin/sh
#
# Your pathes looks like:
# ~~~~~~~~~~~~~~~~~~~~~~~
# /path/to/dir/GameData
# /path/to/dir/Logs
# /path/to/dir/foxbeta
#path to fox control folder
BASEPATH="EDIT THIS"
LOGPATH="$BASEPATH"
PATH=$BASEPATH:$PATH
cd $BASEPATH/
while [ true ]
do
if [ -f $LOGPATH/FoxControl.log ]; then
rm $LOGPATH/FoxControl.log
fi
if [ -f $BASEPATH/logfile.txt ]; then
rm $BASEPATH/logfile.txt
fi
# Return the PID from THIS Bash-Script
echo $$
/usr/bin/php -d safe_mode=0 $BASEPATH/control.php MC</dev/null >$LOGPATH/FoxControl.log 2>&1
done