Search found 352 matches
- 20 Feb 2014, 20:25
- Forum: Maniaplanet Reports
- Topic: [N/A]Maniascript triggers a "multiline string" (equals """)
- Replies: 3
- Views: 9904
Re: Maniascript }}} triggers a "multiline string" (equals ""
Hmm I thought I already reported this bug, as I know it for a long time now, but I am either unable to find the report thread, or I actually didn't report it at all ^^ And yeah, this is a bug in the compiler. As soon as it encounters a }}}, it assumes to be in a triple-quoted string, failing to comp...
- 01 Dec 2013, 11:30
- Forum: Maniaplanet Web Services
- Topic: [Request] Make MPWS-SDK ready for Composer
- Replies: 4
- Views: 3914
[Request] Make MPWS-SDK ready for Composer
Today I have a little request for the MPWS repository: Please make it ready to be used with Composer . Composer is a very nice tool to resolve the dependencies of a project. You write down the packages you need (and the version, if you need a specific one), and the tool will automatically download a...
- 30 Nov 2013, 14:46
- Forum: Maniaplanet
- Topic: [Manialink-Game] Tetris
- Replies: 49
- Views: 17069
Tetris Advent Calendar
As you should know, in few hours the last month of the year will start. As there was very few activity from me for tetris in the last months, I decided to create a little advent claendar to shorten the time waiting for christmas eve ^^ Each day, there will be a small task of playing a game of Tetris...
- 22 Nov 2013, 22:20
- Forum: Maniaplanet Web Services
- Topic: Services return types documentation
- Replies: 14
- Views: 29524
Re: Services return types documentation
"Unknown field" means, that I do neither know the type, nor the meaning, because it was always empty during my tests. And sometimes, a field doesn't make any sense, for example "environment" in titles. If you know the type and meaning of an "unknown" field, I may add it...
- 22 Nov 2013, 21:33
- Forum: Maniaplanet Web Services
- Topic: Services return types documentation
- Replies: 14
- Views: 29524
Re: Services return types documentation
So after a long time, I finally was able to find some time updating the documentation of the return types. It is yet to be completed, but already has a lot more information in it than before. I was kind of surprised, how much changed in the past... 18 months since I last updated the post :D If you h...
- 04 Oct 2013, 19:42
- Forum: ManiaLink
- Topic: [Maniaplanet] Share your manialink on this topic
- Replies: 36
- Views: 71739
- 09 Sep 2013, 20:09
- Forum: Maniaplanet Web Services
- Topic: What information would you like to have access to?
- Replies: 35
- Views: 12851
Re: What information would you like to have access to?
Very nicesteeffeen wrote:planets are shown on https://player.maniaplanet.com/advanced ... ed-servers!!
thank you so much

- 04 Aug 2013, 13:22
- Forum: Maniaplanet
- Topic: Questions and answers
- Replies: 1247
- Views: 400729
Re: Questions and answers
I also got such a mail some while ago (back in June 2012), concering an old TMNF account which I actually never used at all. It had following content: Hallo <TMNF-Account>, Ihrer TrackMania Nations Forever Konto wird bald abgelauft. Um Ihrer Rekorden zu behalten, verbinden Sie sich einmal, oder klic...
- 11 Jul 2013, 20:53
- Forum: ManiaScript
- Topic: [Solved] Http.CreatePost (Text Url, Text Resource)
- Replies: 4
- Views: 1070
Re: Http.CreatePost (Text Url, Text Resource)
You can sniff POST parameters, because you can sniff the whole request which is sent to the servers. Each tool, which is able to view the whole request e.g. in its raw format, will reveal the POST data at the end of it. An example: POST /test.php?param=value HTTP/1.1 Accept: */* Content-Type: applic...
- 11 Jul 2013, 20:08
- Forum: ManiaScript
- Topic: [Solved] Http.CreatePost (Text Url, Text Resource)
- Replies: 4
- Views: 1070
Re: Http.CreatePost (Text Url, Text Resource)
To get the second parameter in your script, you have to use the following line: $resource = file_get_contents('php://input'); This is the same as if you would use the already known POST() function as links in Quads or Labels ;) So in your second example, $resource would be "param=value". I...