I write here a few ideas that I would like to implement. You can write down the next and then I put here.
If anyone knows how to do, whether write a solution.
So ... my ideas:
•New features xD 
•enter able building
•Solution of double Esc (for menu) - Complete
•Save/Load game (first only position) - Complete
•Separate the music and effect volume
•New MAPs
•New Models (objects)
•Weapon system
•Missions
•Multiplyer game
•Better working with scripts
Solution of 3. :
This code paste to freeride.tsl . Now, if you hit esc, the Pause menu pop up and, if you hit 2nd time the PauseMenu will disappears. Thanks to
PimpDaddy, well done!!
Code:
unload 'MainMenu';
load 'PauseMenu';
event esc() {
if (false == $engine.paused) {
$engine.paused = true;
$pauseMenu.fadeTo(1);
$pauseMenu.toFront();
}
else if (true == $engine.paused) {
$pauseMenu.fadeTo(0);
$engine.paused = false;
}
}
Solution of 4. :
Fisrt create file in windows note named save.tsl with this code:
Code:
$savex = $engine.player.x;
$savey = $engine.player.y;
$savez = $engine.player.z;
And in pausemenu or other menu with u create paste this code:
Code:
createMenuBtn('Save', 'load "save"; $sl.fadeTo(0); $engine.paused = false;', $menu);
createMenuBtn('Load', '$engine.player.x = $savex; $engine.player.y = $savey+2; $engine.player.z = $savez; $sl.fadeTo(0); $engine.paused = false;', $menu);
this will create 2 buttons. First for save and Second for Load.
well, second we have now next!