XASECO2 (TM²) v1.03
-
- sunday driver
- Posts: 67
- Joined: 29 Jul 2006 10:53
- Contact:
Re: XASECO2 (TM²) v1.03
oh, I didnt saw the new version, was unexpected so short after the other one.
The server runs in TM2Stadium, Timeattack mode,
I restarted the older server-dedicated version again and everyting is fine (30.04.2014),
I made these fetch updates manually and I hope I can add new maps from MX now, atm it worked,
Just Im wondering, why others hadnt this problem, so it must be a problem with my folders or something.
So I will use the older version until it works fine.
thanks for your help!
RT
The server runs in TM2Stadium, Timeattack mode,
I restarted the older server-dedicated version again and everyting is fine (30.04.2014),
I made these fetch updates manually and I hope I can add new maps from MX now, atm it worked,
Just Im wondering, why others hadnt this problem, so it must be a problem with my folders or something.
So I will use the older version until it works fine.
thanks for your help!
RT
Re: XASECO2 (TM²) v1.03
I have some problems with dedimania :
I was driving a map yesterday and managed to get dedi time nr2 , I wanted dedi 1 so I restarted the map.
The dedi time 2 was saved ( its still there even after a day ) so I started driving and did get dedi time 1.
I succeded so I left de server.
The next day I was looking on MX and saw that my dedi 2 is still there.
It should be a dedi 1.
So I went to the server and juked the map , and yes somehow it did not saved my dedi 1 , the local shows that it was a dedi 1.
Why is it that sometimes dedis are not saved ?
It was the same map , already have done that temp fix.
But it should work cause dedi 2 is still there.
Some one up for a suggestion ?
I was driving a map yesterday and managed to get dedi time nr2 , I wanted dedi 1 so I restarted the map.
The dedi time 2 was saved ( its still there even after a day ) so I started driving and did get dedi time 1.
I succeded so I left de server.
The next day I was looking on MX and saw that my dedi 2 is still there.
It should be a dedi 1.
So I went to the server and juked the map , and yes somehow it did not saved my dedi 1 , the local shows that it was a dedi 1.
Why is it that sometimes dedis are not saved ?
It was the same map , already have done that temp fix.
But it should work cause dedi 2 is still there.
Some one up for a suggestion ?
Re: XASECO2 (TM²) v1.03
Xymph not active anymore ?
Re: XASECO2 (TM²) v1.03
As little as I can get away with.weasel wrote:Xymph not active anymore ?

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: XASECO2 (TM²) v1.03
So , no comment for dedimania thingy ? a few post earlier.
Re: XASECO2 (TM²) v1.03
Could the last updates effect Xaseco2 ?
/history does not work normally.
It only shows the map that is now playing.
So /prev also does not work.
Xaseco problem or database ?
/history does not work normally.
It only shows the map that is now playing.
So /prev also does not work.
Xaseco problem or database ?
Re: XASECO2 (TM²) v1.03
I think I found the problem : Jukebox buffer size.
-
- smooth traffic navigator
- Posts: 232
- Joined: 16 Oct 2010 19:45
- Owned TM-games: TMN! TMF
- Location: Germany
Re: XASECO2 (TM²) v1.03
hi,
since dedimania is broken in tm2 with all the different amounts of possible dedimania records, is it possible to modify the dedimania plugin in a way to display, if dedicps is enabled, the time of the last possible to reach dedimania record, so on basic setup 15? Because dedicp and so on is useless atm. Because if there is a donator that have rank 98 with 2 mins rec on a 30 sec track, you don't play against this time, you play against dedimania rec 15.
since dedimania is broken in tm2 with all the different amounts of possible dedimania records, is it possible to modify the dedimania plugin in a way to display, if dedicps is enabled, the time of the last possible to reach dedimania record, so on basic setup 15? Because dedicp and so on is useless atm. Because if there is a donator that have rank 98 with 2 mins rec on a 30 sec track, you don't play against this time, you play against dedimania rec 15.
Re: XASECO2 (TM²) v1.03
Hi there 
After setting up a Trackmania 2 test server I think i have stumbled upon a small but quite annoying bug: The autotime plugin would sometimes work and sometimes it would not. Having debugged around a bit i think I figured out why:
if <mintime>4.5</mintime> has decimals the calculation will convert it to float. But the method used to change it expects an integer.
var_dump($newtime) (with decimals)
float(270000)
var_dump($newtime) (without decimals)
int(240000)
A quick fix is to set the type to integer before the addcall:
settype($newtime,'integer');
$aseco->client->addcall('SetTimeAttackLimit', array($newtime));
Btw very nice work with both xaseco and xaseco2. You have come a way since i was last around
Regards

After setting up a Trackmania 2 test server I think i have stumbled upon a small but quite annoying bug: The autotime plugin would sometimes work and sometimes it would not. Having debugged around a bit i think I figured out why:
if <mintime>4.5</mintime> has decimals the calculation will convert it to float. But the method used to change it expects an integer.
var_dump($newtime) (with decimals)
float(270000)
var_dump($newtime) (without decimals)
int(240000)
A quick fix is to set the type to integer before the addcall:
settype($newtime,'integer');
$aseco->client->addcall('SetTimeAttackLimit', array($newtime));
Btw very nice work with both xaseco and xaseco2. You have come a way since i was last around

Regards
-
- highway camper
- Posts: 1
- Joined: 02 Jun 2016 02:59
- Owned TM-games: TM²
Re: XASECO2 (TM²) v1.03
Hello,
I would like to download xaseco2 but every link is dead. Looks like because gamers.org is down?
Could anyone upload the version they downloaded (or maybe there is already a link for it somewhere but I didn't found anything)?
Please help me
I would like to download xaseco2 but every link is dead. Looks like because gamers.org is down?
Could anyone upload the version they downloaded (or maybe there is already a link for it somewhere but I didn't found anything)?
Please help me

Re: XASECO2 (TM²) v1.03
It was, I restarted Apache just now.ShellMaster wrote:Looks like because gamers.org is down?
No need, just be patient when this happens, an incident like this never lasts long.ShellMaster wrote:Could anyone upload the version they downloaded (or maybe there is already a link for it somewhere but I didn't found anything)?
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
-
- highway camper
- Posts: 4
- Joined: 12 Jul 2016 17:50
- Owned TM-games: TM2S, TMU, TMN
Re: XASECO2 (TM²) v1.03
Please Update the Plugin "Plugin.Localdatabase.php" for Php7.0 they have removed the "mysql_connect" function
Re: XASECO2 (TM²) v1.03
viewtopic.php?p=229039#p229039Zerbröseler wrote:Please Update the Plugin "Plugin.Localdatabase.php" for Php7.0 they have removed the "mysql_connect" function
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: XASECO2 (TM²) v1.03
Hey. I have problem with xaseco2 on TM2 stadium.
Xaseco2 doesn't send the dedimania records
I bought 40 dedi and edit dedimania.xml
And nothing 
Please help
Now i create servers with fast 4.0.0t becouse fast send dedimania records and all is ok.
Xaseco2 doesn't send the dedimania records

I bought 40 dedi and edit dedimania.xml
Code: Select all
<!-- so typically this is the same as your Server MaxRank -->
<limit_recs>40</limit_recs>

Please help


Now i create servers with fast 4.0.0t becouse fast send dedimania records and all is ok.
