Do you guys want me to update to 1.6.4?
[Addon v2.0.367+?] (Minecraft 1.6.2/4) Transformer Converters Development Thread
- master801
- Closed
-
-
Do you guys want me to update to 1.6.4?
Does your mod have ANY structures?
No.
What update? Use srg reobfuscation. -
Does your mod have ANY structures?
No.
What update? Use srg reobfuscation.Good point. I haven't had time to mess around with 1.6.4 so, I don't know what changed much and things.
-
Also, anyone want me to make the blocks have metadata? Like, silver ore will be also silver block. For example, if it's id is 350, then the first metadata will be 350:1 and the second block will be 350:2. Currently the engines are taking up a lot of block ids. So, it's up to you people on how I do it.
-
You should do that. Occupying less IDs makes ID conflicts less likely to happen (and solves them easier).
-
You should do that. Occupying less IDs makes ID conflicts less likely to happen (and solves them easier).
Still need a couple more people to agree on that topic.
-
You should do that. Occupying less IDs makes ID conflicts less likely to happen (and solves them easier).
But handling many blocks with different IDs is far easier than having one blockID and messing with metadata stuff..
That's a nightmare IMHO. -
Well, since it is a "simple" mod (that doesnt add tons of stuff like gregtech or any major mod)... a few IDs wouldn't be so bad i think.
-
Still waiting for people to make the silver textures. Also, I might make the recipes really hard. As in the form of making a real engine. (Psstt.... It's aluminum :D)
-
So, if I dropped this project, what would happen?
-
So, if I dropped this project, what would happen?
Nothing. -
So, if I dropped this project, what would happen?
Well, if you dropped it, then it would fall on the ground, unless you have no gravity where you are.
-
Nothing.
A few people would get sad. You'd fail. Nothing ELSE. -
A few people would get sad. You'd fail. Nothing ELSE.That makes me feel a lot worse than it should... Oh! Greg, I need your help with the api for ic2 experimental!
-
That makes me feel a lot worse than it should... Oh! Greg, I need your help with the api for ic2 experimental!
Ask any questions you have.
ANY.
E-Items? Energy Sources? Or Sinks? Or what?Take a look at my TEs. They are not ideal, but still they are pretty darn good.
https://github.com/mak326428/L…s/levelstorage/tileentity -
Ask any questions you have.
ANY.
E-Items? Energy Sources? Or Sinks? Or what?Take a look at my TEs. They are not ideal, but still they are pretty darn good.
https://github.com/mak326428/L…s/levelstorage/tileentityIt's more like, I can't get my engines to connect to any kind of cables and its really making me mad. And also, I need to talk to Covert or anyone in the buildcraft department. But, I think he's kinda ignoring me I guess?
-
It's more like, I can't get my engines to connect to any kind of cables and its really making me mad. And also, I need to talk to Covert or anyone in the buildcraft department. But, I think he's kinda ignoring me I guess?
Ah, that one is easy.
You need to add your TileEntity to ENet, in order for it to work out.
https://github.com/mak326428/L…EntityBasicSink.java#L105
And you must also disconnect your TE from ENet on invalidate() and onChunkUnload() -
Ah, that one is easy.
You need to add your TileEntity to ENet, in order for it to work out.
https://github.com/mak326428/L…EntityBasicSink.java#L105
And you must also disconnect your TE from ENet on invalidate() and onChunkUnload()Hmmm.... Seems as if I didn't bother to put in a onChunkUnload(), and a method to turn enet to true and false in my code... But, thank you for the help. I also need to make a gui. I've been researching that for awhile but never found any sufficient tutorials. And yours to me are kinda messed-up... As in, I have no clue what this is. Also, did you guys notice whats on the front page?
-
Hmmm.... Seems as if I didn't bother to put in a onChunkUnload(), and a method to turn enet to true and false in my code... But, thank you for the help. I also need to make a gui. I've been researching that for awhile but never found any sufficient tutorials. And yours to me are kinda messed-up... As in, I have no clue what this is. Also, did you guys notice whats on the front page?
Learn stuff, read code, be active, don't be lazy, ask questions, but don't expect anybody to do all the stuff for you.
What is wrong with GUI stuff? Make your mod @NetworkMod, create a GUI handler..
Actually, you know what, here you go:
http://www.minecraftforge.net/wiki/Basic_GUI
http://www.minecraftforge.net/wiki/Containers_and_GUIs (this one is better than previous)
This one is pretty good for n00bs , just don't forget about @NetworkMod annotation, it IS important.
Really important. -
Learn stuff, read code, be active, don't be lazy, ask questions, but don't expect anybody to do all the stuff for you.
What is wrong with GUI stuff? Make your mod @NetworkMod, create a GUI handler..
Actually, you know what, here you go:
http://www.minecraftforge.net/wiki/Basic_GUI
http://www.minecraftforge.net/wiki/Containers_and_GUIs (this one is better than previous)
This one is pretty good for n00bs , just don't forget about @NetworkMod annotation, it IS important.
Really important.Okay, so the outdated ones still work then?