• Minecraft mod maker?
    5 replies, posted
Hello! I am wondering if somebody is willing to make a minecraft mod maker, or know one that exists. If you are reading this, you have probably found out that I suck at mods and I always will. Please give me info about this or if you are making a mod maker, send me the link for a download when it is done. Thanks! (EDIT: Nevermind.)
What Do you mean a program? Have you checked the minecraft forum? It's most likely in there. And the only mods you could make within a program can very easily be done manually (If you're talking about simple crafting recipies and such). Take a while to study basic java, and then look at the onobsufacted minecraft code, and then go off.
You should check out luacraft, it's by far the easiest way to mod minecraft now and the makers are really actively improving and adding to it. The wiki is at [url]http://wiki.luacraft.com/LuaCraft[/url] and there's a thread in this forum section. Example mod (prevents creepers from spawning, and prevents endermen from spawning in the overworld): [code] function MobPrevention( ent ) -- returning true prevents the spawn if ( ent:GetClass() == "Creeper" ) then return true end if ( ent:GetClass() == "Enderman" ) then if ( ent:Dimension() == 0 ) then return true end end end hook.Add("entity.spawn", "MobPrevention", MobPrevention )[/code]
On the second page of minecraft tools. [url]http://www.minecraftforum.net/topic/592631-123-mcmodgen-minecraft-mods-no-coding060/[/url] There are others, but I don't care to find them for you.
Oh. [editline]18th March 2012[/editline] that changes everything.
hey, this is now useless. is there a way to delete this? [editline]19th March 2012[/editline] [QUOTE=CountOlaf;35198156]Oh. [editline]18th March 2012[/editline] that changes everything.[/QUOTE] Anyway, that was helpful [editline]19th March 2012[/editline] Thanks for putting it as 1.2.3
Sorry, you need to Log In to post a reply to this thread.