ディレクトリ ゲーム
英語 フランス語フィンランド語チェコ語ポルトガル語ポルトガル語イタリア語ポーランド語ドイツ語トルコ語ノルウェー語イタリア語スペイン語ヘブライ語デンマーク語ルーマニア語スロバキア語ハンガリー語スウェーデン語カタロニア語クロアチア語ギリシャ語中国語簡体字アルバニア語ロシア語エスペラント
日本語
あなたの好きな言語への翻訳をお手伝いください。アラビア語韓国語スロベニア語エストニア語Icelandic

新しいゲームを投稿する


メンバー・オンリー・エリア

Uploading a game

This is the starting page for uploading a game on pepere.org. Be aware that we don't accept the games that you didn't develop yourself. Depending on the quality of the graphics and the gameplay, we accept or not the game. When the game is developed with a minimum of care, it's usually accepted.
All the games must must implement the pepere.org highscore system. There are only a few lines of code to insert in your game source code, just after the "game over", to make it compatible with the pepere.org highscore system. Only the members of pepere.org can register their scores with this system, that's why the system is so easy to implement and doesn't require a graphic interface.

Note that the highscore system only accept integers (no floating point numbers), and that the higher score is the best.

Feel free to contact us for any questions.
[翻訳する日本語]   [修正を投稿する英語 ]
翻訳者:jp




このMX2004のActionScript 2コードを参考にして、ハイスコアを管理してください。
    import flash.external.ExternalInterface;

...

// The score variable contains the score of the player. It's an integer. The higher it is, the best the score is.
if (ExternalInterface.available) {
    ExternalInterface.call("saveGlobalScore",score);
} else {
    fscommand("saveGlobalScore",score);
}


このCS3のActionScript 3コードを参考にして、ハイスコアを管理してください。
    import flash.external.ExternalInterface;

...

// The score variable contains the score of the player. It's an integer. The higher it is, the best the score is.
ExternalInterface.call("saveGlobalScore",score);