Search found 1621 matches
- 06 Jan 2021, 17:29
- Forum: UASECO
- Topic: Change chat color
- Replies: 5
- Views: 261
Re: Change chat color
Well... I think that these brakets can not be changed, they are from the dedicated server (if I remember right).
- 06 Jan 2021, 11:03
- Forum: UASECO
- Topic: Change chat color
- Replies: 5
- Views: 261
Re: Change chat color
Check config/UASECO.xml at <colors> 

- 28 Dec 2020, 22:05
- Forum: UASECO
- Topic: Uaseco for the new TM?
- Replies: 18
- Views: 1904
Re: Uaseco for the new TM?
Well... I created already a port of UASECO for Trackmania Grand League: https://github.com/undeflabs/UASECO-GrandLeague But as at the first release of the dedicated server there where to many missing parts that I didn't invested many time into it. But since the game got some updates I think I can ta...
- 19 Dec 2020, 18:21
- Forum: UASECO
- Topic: ManiaKarma database for TM2020?
- Replies: 2
- Views: 127
Re: ManiaKarma database for TM2020?
Sure, if I find time and motivation I want to make it possible.
- 27 Aug 2020, 18:45
- Forum: UASECO
- Topic: xlist and mxlist not working properly?
- Replies: 4
- Views: 329
Re: xlist and mxlist not working properly?
Right, the version at Github has a fix for that problem: https://github.com/undeflabs/UASECO-Maniaplanet
- 26 Aug 2020, 14:03
- Forum: UASECO
- Topic: xlist and mxlist not working properly?
- Replies: 4
- Views: 329
Re: xlist and mxlist not working properly?
Btw.: You posted the same screenshot twice.
The chat command "/mxlist" is under heavy development and not yet working, do not use. Use the deprecated "/xlist" instead.

The chat command "/mxlist" is under heavy development and not yet working, do not use. Use the deprecated "/xlist" instead.
- 10 Aug 2020, 20:36
- Forum: UASECO
- Topic: Where would I change the colors of the panels in-game?
- Replies: 1
- Views: 267
Re: Where would I change the colors of the panels in-game?
Which panels? Please add a screenshot and mark which one you mean.
- 10 Aug 2020, 20:35
- Forum: UASECO
- Topic: Music isn't playing on my server :( Any help would be great!
- Replies: 1
- Views: 211
- 27 Jul 2020, 16:49
- Forum: UASECO
- Topic: write the player vote in the database (maniakarma)
- Replies: 4
- Views: 404
Re: write the player vote in the database (maniakarma)
You can listen on the event "onKarmaChange" from the ManiaKarma plugin to receive the current Karma (and many more). Code from the ManiaKarma plugin // Release a KarmaChange Event $aseco->releaseEvent('onKarmaChange', array( 'Karma' => $this->karma['global']['votes']['karma'], 'Total' => $this->karm...
- 27 Jul 2020, 10:55
- Forum: UASECO
- Topic: write the player vote in the database (maniakarma)
- Replies: 4
- Views: 404
Re: write the player vote in the database (maniakarma)
The ManiaKarma plugin calculates the Karma on the fly (with the same method the server does) and therefore the Karma has the correct value in that moment as a player vote. The ManiaKarma plugins sends the votes at once to the server to reduce the load of the server. This has been changed several yea...