Hi Folks....im not sure if im gonna be postin this in the right place or not but u seen to discussing quite alot of things here....ok i have my own server which is running smoothly and i have my own tracks to put on it....now i have my own track mod but where does the locator file go on the server so that everybody can see my mod while playing.
I am using servermania with trackmaniaserver....does the .loc file go in the same place as if it were the game
ie/ GameData\Skins\Stadium\Mod or does it go in the same directory as the track file.
Thx in advance
MB
TrackMania Creations FAQ
Moderator: TM-Patrol
-
- wheelbarrow operator
- Posts: 16
- Joined: 23 Jul 2008 13:02
- Owned TM-games: TMNF
-
- sunday driver
- Posts: 65
- Joined: 19 Nov 2008 08:42
- Owned TM-games: TMN, TMU
Re: TrackMania Creations FAQ
Thank you, its very easy to understand ^^ thats nice! I searched so long ago to find out how to set up a server, now I found it! =D
- ManiaMaster
- pedestrian
- Posts: 14
- Joined: 28 Mar 2009 17:34
- Owned TM-games: TMO , TMS ,TMU(f)
- w1lla
- TM-Patrol
- Posts: 1466
- Joined: 23 May 2007 07:20
- Owned TM-games: TMU, TMN, TMF
- Manialink(s): intr
- Location: Venray
Re: TrackMania Creations FAQ
well it states other creations but you may provide them here.
Code: Select all
tmnforever is nations and united makes it special. tmnforever has united. I need united!
-
- wheelbarrow operator
- Posts: 21
- Joined: 09 Jul 2008 14:34
- Owned TM-games: TMO, TMS, TMN, TMU
Re: TrackMania Creations FAQ
If you could add atleast a link to something about manialink creation that would be great!
Re: TrackMania Creations FAQ
There's a whole forum for that.Billybobjoe wrote:If you could add atleast a link to something about manialink creation that would be great!

Developer of XASECO for TMF/TMN ESWC & XASECO2 for TM²: see XAseco.org
Find your way around the Mania community from the TMN ESWC hub, TMF hub, TM² hub, and SM hub
Find your way around the Mania community from the TMN ESWC hub, TMF hub, TM² hub, and SM hub
Re: TrackMania Creations FAQ
for anyone who installs active perl this is a quick script to create all of your .loc files:
my $URL = "http://www.bwtoons.com/music";
foreach $muxFile (<*>)
{
if (open(LOC, "> $muxFile.loc"))
{
print LOC "$URL/$muxFile";
close LOC;
}
else
{
die "$!\n";
}
}
place in a .pl file called "ml.pl" and run "perl ml.pl" to generate your .loc files.
put the .pl file in your ChallengeMusics directory, open a windows cmd shell [Start->run->] "cmd" navigate to your challengemusics directory and run "perl ml.pl"
note: make sure you change the URL to the correct url.
my $URL = "http://www.bwtoons.com/music";
foreach $muxFile (<*>)
{
if (open(LOC, "> $muxFile.loc"))
{
print LOC "$URL/$muxFile";
close LOC;
}
else
{
die "$!\n";
}
}
place in a .pl file called "ml.pl" and run "perl ml.pl" to generate your .loc files.
put the .pl file in your ChallengeMusics directory, open a windows cmd shell [Start->run->] "cmd" navigate to your challengemusics directory and run "perl ml.pl"
note: make sure you change the URL to the correct url.