Register for your free account! | Forgot your password?

Go Back   elitepvpers > Other Online Games > Minecraft > Minecraft Guides & Strategies
You last visited: Today at 20:22

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Minecraft Mods erstellen [ModLoader]

Discussion on Minecraft Mods erstellen [ModLoader] within the Minecraft Guides & Strategies forum part of the Minecraft category.

View Poll Results: Ist diese Thema Hilfreich ?
Ja 247 89.17%
Nein 30 10.83%
Voters: 277. You may not vote on this poll

Reply
 
Old 04/26/2012, 19:38   #256
 
the_cake's Avatar
 
elite*gold: 0
Join Date: Feb 2011
Posts: 454
Received Thanks: 345
Das waren Fehler Datein. Die waren doch im ordner deinmod/eclipse/client/bin die darfst du nicht mitkopieren
the_cake is offline  
Thanks
1 User
Old 04/26/2012, 19:47   #257
 
elite*gold: 0
Join Date: Aug 2009
Posts: 56
Received Thanks: 2
asound kannst du auch strukturen so machen wie eine festung
chris26 is offline  
Old 04/26/2012, 20:27   #258
 
elite*gold: 0
Join Date: Oct 2010
Posts: 8
Received Thanks: 0
Frage: Ich hab ein Erz Gemacht, nun alles nach Tutorial aber ich finde es NIRGENDS in der Welt hab zuerst gedacht ja da hats nen fehler gegeben und ist nicht in der welt aberich hab ein crafting rezept dazu gemacht und mit dem gehts hab alles nach tutorial gemacht aber es werden in der erde nirgends gespannt
stovon is offline  
Old 04/26/2012, 20:31   #259

 
Njahs's Avatar
 
elite*gold: 574
Join Date: Nov 2010
Posts: 2,498
Received Thanks: 726
Quote:
Originally Posted by stovon View Post
Frage: Ich hab ein Erz Gemacht, nun alles nach Tutorial aber ich finde es NIRGENDS in der Welt hab zuerst gedacht ja da hats nen fehler gegeben und ist nicht in der welt aberich hab ein crafting rezept dazu gemacht und mit dem gehts hab alles nach tutorial gemacht aber es werden in der erde nirgends gespannt
Du musst eine neue Welt erstellen / generieren ^^
Njahs is offline  
Old 04/26/2012, 20:31   #260
 
elite*gold: 0
Join Date: Oct 2010
Posts: 8
Received Thanks: 0
Hab ich gemacht sogar mit nen schönen seed aber ich finde es nirgends!!! der seed hat ne schlucht!
stovon is offline  
Old 04/26/2012, 21:53   #261
 
the_cake's Avatar
 
elite*gold: 0
Join Date: Feb 2011
Posts: 454
Received Thanks: 345
Das darf ihn keine extra datei

Code:
		public void generateSurface(World world, Random rand, int chunkX, int chunkZ) {
		for(int i = 0; i < Rate; i++) {
			int randPosX = chunkX + rand.nextInt(16);
			int randPosY = rand.nextInt(255);
			int randPosZ = chunkZ + rand.nextInt(16);
			(new WorldGenMinable(this.testblock.blockID, 16)).generate(world, rand, randPosX, randPosY, randPosZ);
		}
the_cake is offline  
Thanks
1 User
Old 04/27/2012, 09:19   #262
 
elite*gold: 0
Join Date: Oct 2010
Posts: 8
Received Thanks: 0
Ich poste mal meinen code:

Code:
package net.minecraft.src;

import java.util.Random;

public class mod_addamantiumore extends BaseMod
{
	@Override
	public String getVersion() {
		
		return null;
	}
	public static final Block addamantiumore = new Block(230, 0,Material.rock ).setHardness(20.5F).setLightValue(300F).setResistance(1F).setBlockName("Addamantiumore");

	@Override
	public void load() {
		
		ModLoader.registerBlock(addamantiumore);
		 ModLoader.addName(addamantiumore, "Addamantiumore");
		 addamantiumore.blockIndexInTexture = ModLoader.addOverride("/terrain.png","/ore/ore.png");
		 
	}
		 public void generateSurface (World World, Random random, int chunkX, int chunkZ){
			    for(int i= 0; i < 30; i++){
			    	int randpositionX = chunkX + random.nextInt(20);
			    	int randpositionY = random.nextInt(64);
			    	int randpositionZ = chunkX + random.nextInt(20);
			    	(new WorldGenMinable(addamantiumore.blockID, 20)).generate(World, random, randpositionX, randpositionY, randpositionZ);
					 
			    }
			}
	
		
	}
So das war er.
Ist doch richtig oder?


Noch ne Frage:
Habe eine Axt hinzugefügt hab das crafting Rezept gemacht und und und in Minecraft funkt es auch aber es kommt anstatt des Bildes so ein komischer Sack wo man was reintuhen kann.
Und wenn ich was mit der Hacke haue, dann geht es zuerst und dann bleibt Minecraft stehen also nach so ein paar sekunden gehts wieder und nein mein pc is nich zu langsa habe 5gb für Minecraft gemacht^^
stovon is offline  
Old 04/27/2012, 16:22   #263
 
the_cake's Avatar
 
elite*gold: 0
Join Date: Feb 2011
Posts: 454
Received Thanks: 345
probier es mal so

Code:
package net.minecraft.src;
import java.util.Random;

public class mod_addamantiumore extends BaseMod
{
	public String getVersion() {return null;}
	
	public static final Block addamantiumore 
	
	static{
	addamantiumore = new Block(230, 0,Material.rock ).setHardness(20.5F).setLightValue(2F).setResistance(1F).setBlockName("Addamantiumore");
	}

	public void load() {
		
		ModLoader.registerBlock(addamantiumore);
		ModLoader.addName(addamantiumore, "Addamantiumore");
		addamantiumore.blockIndexInTexture = ModLoader.addOverride("/terrain.png","/ore/ore.png");
		 
	}
		 public void generateSurface (World World, Random random, int chunkX, int chunkZ){
			    for(int i= 0; i < 30; i++){
			    	int randpositionX = chunkX + random.nextInt(20);
			    	int randpositionY = random.nextInt(64);
			    	int randpositionZ = chunkX + random.nextInt(20);
			    	(new WorldGenMinable(this.addamantiumore.blockID, 20)).generate(World, random, randposX, randposY, randposZ);
					 
			    }
			}
	
		
	}
the_cake is offline  
Thanks
1 User
Old 04/29/2012, 12:40   #264
 
elite*gold: 0
Join Date: Apr 2012
Posts: 22
Received Thanks: 0
Ich hab da nochmal ne Frage, denn ich habe im Internet ein Tut gefunden wie man Tiere ins Spiel programmiert es ist auch mit Techne.
Folgendes Problem: das Tier spawn nicht!
Was mache ich falsch?
Hier mal die datein
in der Datei sind die mod_meerschwein, ModelMeerschwein, EntityMeerschwein, RenderMeerschwein

Brauche dringend eine Antwort!
Attached Files
File Type: doc meerschwein.doc (50.5 KB, 4 views)
JONMI2000 is offline  
Old 04/30/2012, 10:45   #265
 
elite*gold: 0
Join Date: Aug 2009
Posts: 56
Received Thanks: 2
mod_meerschweinchen muss in die mod_(deinname) class rein

ich brauch auch einmal hilfe wie kann ich die class datein von meinem mod die du mir geschikt hast weiter bearbeiten in eclipse hab schon vieles versucht aber es klappt nicht
chris26 is offline  
Old 04/30/2012, 11:49   #266
 
elite*gold: 0
Join Date: Apr 2012
Posts: 22
Received Thanks: 0
Hä?
mod_meerschwein ist bei mir eine extra Datei genauso wie ModelMeerschwein,EntityMeerschwein,RenderMeerschwe in.
Also ich verstehe es nicht.
JONMI2000 is offline  
Old 04/30/2012, 14:40   #267
 
elite*gold: 0
Join Date: Aug 2009
Posts: 56
Received Thanks: 2
mod_meerschweinchen darf in keine extra datei
es muss in deine haupt Mod_name datei rein

nimmst du das tut von TechGuy?
chris26 is offline  
Old 04/30/2012, 16:39   #268
 
elite*gold: 0
Join Date: Apr 2012
Posts: 22
Received Thanks: 0
1. Ich benutze das Tut von hier
2. Ich habe sehr viele mod_... dateien also zB mod_Name, mod_test, ...
wo soll die also hin?

Hey
Ich habe bei YouTube ein Tut zum erstellen von Pflanzen gefunden es lief auch alles super bis auf einmal minecraft crashte
Hier der Fehler code:
Mods loaded: 19
ModLoader 1.2.5
mod_Armor 1.2.5
mod_bedroackweapon 1.2.5
mod_blockwithligth 1.1
mod_deko 1.1
mod_eat 1.2.5
mod_fluessigkeit 1.2.5
mod_geld 1.1
mod_Kaffepflanze 1.2.5
mod_kiwi 1.1
mod_moos 1.2.5
mod_Name 1.2.5
mod_obsidianundbedrock 1.2.5
mod_saphir 1.1
mod_saphirweapen 1.2.5
mod_toast 1.1
mod_tomatenpflanze 1.2.5
mod_tomatenundtomatensuppe 1.1
mod_tutorial 1.2.5

Minecraft has crashed!
----------------------

Minecraft has stopped running because it encountered a problem.




--- BEGIN ERROR REPORT ff7815c3 --------
Generated 30.04.12 20:32

Minecraft: Minecraft 1.2.5
OS: Windows XP (x86) version 5.1
Java: 1.6.0_30, Sun Microsystems Inc.
VM: Java HotSpot(TM) Client VM (mixed mode), Sun Microsystems Inc.
LWJGL: 2.4.2
OpenGL: GeForce 9800 GT/PCIe/SSE2 version 3.3.0, NVIDIA Corporation

java.lang.Exception: No more empty terrain sprite indices left!
at net.minecraft.src.ModLoader.getUniqueTerrainSprite Index(ModLoader.java:694)
at net.minecraft.src.ModLoader.getUniqueSpriteIndex(M odLoader.java:671)
at net.minecraft.src.ModLoader.addOverride(ModLoader. java:365)
at net.minecraft.src.mod_tomatenpflanze.load(mod_toma tenpflanze.java:32)
at net.minecraft.src.ModLoader.init(ModLoader.java:85 6)
at net.minecraft.src.ModLoader.addAllRenderers(ModLoa der.java:157)
at net.minecraft.src.RenderManager.<init>(RenderManag er.java:85)
at net.minecraft.src.RenderManager.<clinit>(RenderMan ager.java:12)
at net.minecraft.client.Minecraft.startGame(Minecraft .java:424)
at net.minecraft.client.Minecraft.run(Minecraft.java: 786)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT 8af5f49c ----------


Weiß jemand was das ist?
JONMI2000 is offline  
Old 05/01/2012, 15:28   #269
 
elite*gold: 0
Join Date: Aug 2009
Posts: 56
Received Thanks: 2
das darf nur in eine mod_(name des mod´s) datei
außer das mod_crafting(wo die craftingrezepte drin stehen)
chris26 is offline  
Old 05/02/2012, 12:43   #270
 
elite*gold: 0
Join Date: Apr 2012
Posts: 7
Received Thanks: 0
Kannst du mir vielleicht sagen wie ich machen kann dass wenn ich mit einem meiner Items einen Rectsklick mache, dass man dann in den Creativmode gesetzt wird und dann wenn man nochmal rechtsklick macht, wieder in den Survivalmode gesetzt wird?

Könnte schwierig werden, ich weiss aber vielleicht kannst du das ja
nikolaij1998 is offline  
Reply

Tags
java, minecraft, mod, modloader, tutorial


Similar Threads Similar Threads
Minecraft Mods selber erstellen
10/26/2011 - Minecraft - 6 Replies
Vorab: Ich weiß folgende Frage wurde schon oft gestellt: Wie mache ich eigene Mods? Hab keine Java Kentnisse. Bei mir ist der Fall ähnlich ich habe im Internet gesucht und folgendes gefunden: Minecraft Mod Maker - Minecraft Forum Jedoch funktioniert der bei mir nicht :( Meine Frage an euch gibt e einei alternative oder gibt es eine andere Möglichkeit? Es muss nichts großes sein. Ich möchte jedoch nur zb. einen Block erstellen der kwinw besonderen Funktionen hat wie der Grassblock



All times are GMT +1. The time now is 20:22.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.