22 mars 2014, 17:19

Bonjour j’ai entamé le tutoriel de jambon sur le launcher mais avec la version 1.7, contrairement au autre personne ayant un problème a ce niveau la je n’ai pas (pour l’instant) de problème de version, je sais lire des logs et savoir a peut près ou le launcher a crach sauf que cette fois ci je suis largué O_o donc je fais appel a vous 🙂
Voila mon premier problème est celui ci :
quand je créer mon launcher en suivant les étapes une par une tout vas bien , je le lance et là je tombe sur ce logs :


Looking for update
Downloading: http://emergia.pulseheberg.me/launcher/launcher.jar
Got reply in: 51ms
Found update in time, waiting to download
Downloaded 0,0kb in 0s at 0,0kb/s
Renaming C:\Users\Thomas\AppData\Roaming\.Emergia\launcher.jar.new to C:\Users\Thomas\AppData\Roaming\.Emergia\launcher.jar
Unable to rename - could be on another filesystem, trying copy & delete.
Copy & delete succeeded.
Starting launcher.
FATAL ERROR: net.minecraft.bootstrap.FatalBootstrapError: Unable to start: java.lang.ClassNotFoundException: net.minecraft.launcher.Launcher
at net.minecraft.bootstrap.Bootstrap.startLauncher(Bootstrap.java:368)
at net.minecraft.bootstrap.Bootstrap.execute(Bootstrap.java:271)
at net.minecraft.bootstrap.Bootstrap.main(Bootstrap.java:144)

Please fix the error and restart.

Bon là tout ce que je sais c’est que ça vient du bootstrap mais alors quesqui ce passe … ?
Je vous donne mes codes :
Code du bootstrapConstant :

package net.minecraft.bootstrap;

public class BootstrapConstants {
public static final String MD5_FILE = "http://emergia.pulseheberg.me/launcher/md5.txt"; //Lien vers le fichier md5.txt situé dans votre dossier launcher sur votre serveur FTP.
public static final String SERVER_NAME = "Emergia"; //Votre nom de serveur (IDENTIQUE A CELUI DANS LE LAUNCHER)
public static final String APPLICATION_NAME = "Emergia"; //nom donné à votre dossier d'installation situé dans %appdata% sur votre PC.
public static final String LAUNCHER_URL = "http://emergia.pulseheberg.me/launcher/launcher.jar"; //Lien vers votre ficher launcher.jar situé dans votre serveur FTP.
}

Code du LauncherConstant :


package net.minecraft.launcher;

import java.net.URI;
import java.net.URISyntaxException;

public class LauncherConstants {
public static final String VERSION_NAME = "1.1"; //Version du Launcher
public static final int VERSION_NUMERIC = 9;
public static final String DEFAULT_PROFILE_NAME = "kevin"; //Nom de Profil par Defaut.
public static final String SERVER_NAME = "Emergia"; //Nom de votre Serveur.
public static final URI URL_REGISTER = constantURI("https://account.mojang.com/register"); //Lien géré par le bouton Register dans le Launcher.
// public static final String URL_DOWNLOAD_BASE =
// "https://s3.amazonaws.com/Minecraft.Download/";
public static final String URL_DOWNLOAD_BASE = "http://emergia.pulseheberg.me/launcher/"; //Dossier principal de votre launcher sur votre serveur FTP.
public static final boolean useModResource = true; //Si vous utilisez des mods hébergés sur FTP, mettez sur true. Sinon mettez false.
public static final String URL_DOWNLOAD_MODS = "http://emergia.pulseheberg.me/ressources/"; //Dossier principal de vos ressouces perso sur votre serveur FTP.
public static final String URL_RESOURCE_BASE = "http://resources.download.minecraft.net/"; //Dossier principal des ressources officielles du jeu. (par defaut "https://s3.amazonaws.com/Minecraft.Resources/" ou "http://resources.download.minecraft.net/")
public static final String LIBRARY_DOWNLOAD_BASE = "https://libraries.minecraft.net/"; //Dossier principal des librairies utilisées par le jeu. (par defaut https://libraries.minecraft.net/ ou "https://s3.amazonaws.com/Minecraft.Download/libraries/")
public static final String URL_BLOG = "http://emergia.pulseheberg.me/launcher/news.html"; //Blog affiché dans le launcher au démarrage. (par defaut "http://mcupdate.tumblr.com")
public static final String URL_STATUS_CHECKER = "http://status.mojang.com/check"; //Lien de Vérification de Compte chez MOJANG. ("http://status.mojang.com/check")
public static final String URL_BOOTSTRAP_DOWNLOAD = "http://emergia.pulseheberg.me/launcher/bootstrap.jar"; //Adresse de votre fichier bootstrap.jar sur votre serveur FTP.
public static final URI URL_FORGOT_USERNAME = constantURI("http://help.mojang.com/customer/portal/articles/1233873"); //Lien URL de "Pseudo oublié ?". ("http://help.mojang.com/customer/portal/articles/1233873")
public static final URI URL_FORGOT_PASSWORD_MINECRAFT = constantURI("http://help.mojang.com/customer/portal/articles/329524-change-or-forgot-password"); //Lien URL de "Mot de passe oublié ?". ("http://help.mojang.com/customer/portal/articles/329524-change-or-forgot-password")
public static final URI URL_FORGOT_MIGRATED_EMAIL = constantURI("http://help.mojang.com/customer/portal/articles/1205055-minecraft-launcher-error---migrated-account"); //Lien URL de Migration Mail. ("http://help.mojang.com/customer/portal/articles/1205055-minecraft-launcher-error---migrated-account")
public static final String URL_AUTHENTICATION_SERVER = "https://authserver.mojang.com/"; //Serveur d'authentification, par defaut : "https://authserver.mojang.com/"

public static URI constantURI(final String input) {
try {
return new URI(input);
}
catch(final URISyntaxException e) {
throw new Error(e);
}
}
}

Voila je vous donne mon adresse web (qui est encore une arboréssance sans thème ni CSS donc vous pourrez voir les fichiers)
http://emergia.pulseheberg.me/launcher/
Merci pour votre futur aide
cordialement azatom.