Ok, the app's web service is rather prone to manipulation:<p>You just need to HTTP GET the following URL:<p><pre><code> http://www.carrotpop.com/smth/php/save_result.php?id=<UID>&nickname=<NICK>&country=&result=<HEIGHT>&latitude=0&longitude=0
</code></pre>
* UID looks like an autoincrement ID<p>* NICK is what you entered for the highscore<p>* HEIGHT is the float value of the height in meters, i.e. "1.23"<p>In the HTTP response, you get a data structure (not sure which encoding it is, but it is straightforward) of the highscore data:<p><pre><code> [[["1.","LIATO","44.19m"],["2.","ROYBOY_91","43.16m"],["3.","YAIR40","35.12m"],["4.","GABRIEL","34.70m"],["5.","KAI","31.10m"],["6.","KAFAC99","21.06m"],["7.","JOSH","20.37m"],["8.","KEANSKI","17.61m"],["9.","EKREM6363","16.10m"],["10.","LORENZO","12.24m"],["2047.","MY BEST TRY","0.71m"],], ...
</code></pre>
<i></i>Edit:<i></i> just opening the URL <a href="http://www.carrotpop.com/smth/php/save_result.php" rel="nofollow">http://www.carrotpop.com/smth/php/save_result.php</a> you can see the current stats, encoded as above.