-
Posts
9273 -
Joined
-
Last visited
-
Days Won
68
Everything posted by LexManos
-
Plz help me out... been trying to fix for like 3 days....
LexManos replied to OwnAgePau's topic in Support & Bug Reports
EnumArmorMaterial.BRONZE http://media.giantbomb.com/uploads/2/24773/1982197-wtf_is_this_shit_Very_Disturbing_Childrens_Book_RE_We_dont_say_ampquotGermanampquot_in_America-s400x297-59009.jpg[/img] -
Seems to be an issue with ICBM/EU, go talk to there authors.
-
(mod_Ores.java:305) still uses ModLoader.addOverride Stop Fairly clear statement here, dont use addOverride at all, ever.
-
Found the issue, you're spawning entities on the server, using the client thread. You need to edit your tick handler to use the server ticks. Aside form that you really need to re-design your mod for the clear separation of client and server, else you're gunna be doomed to be a old outdated single player only mod forever.
-
If they are purly ModLoader mods and dont do stupid stuff, then they should be fine. However, we cant help without a log so, ya.. logs or stfu.
-
Yay for not giving me the full version. I'm going to ASSUME because of the way you're talking that you are using 4.0.0.200 or 4.0.0.2004 Go update to the LATEST build. we at 228 already.
-
What EXACT version of forge are you using?
-
I know for a fact that PlayerAPI uses classes we do. Either way You need to do some basic debugging Start from scratch add on mod at a time when shit breaks you know it was the last mod you added. Then go complain to the maker of that mod to stop editing base classes.
-
SpriteHelper intracts with one of the local Sprites ?
LexManos replied to 0xC6607Eo1's topic in Modder Support
You shouldnt be editing any base classes, for any reason. Make sure the install script has no errors as it will recompile and update md5s when done. -
Then you should not be getting this error, as it has been fixed for quite some time.
-
Something does
-
If you're willing zip up your source and send it to me so I can do some testing. I cant seem to figure out why this is happening as the two threads that deal with the entity list deal with different chunk instances. So having a mod that can reproduce this and figure out exactly what causes this. If it is indeed Forge, or if its user error.
-
take a look at the classes forge ships {the files inside the zip} If any of your mods overwrite those classes there will probably be an issue....
-
Do I really have to spell it out? Its the same damn download, the exact same one for both sides. EXACTLY THE SAME. So update Forge. Q) Is the client side up to date with the latest build? Y) Move on N) Update it Q) Is the server side up to date with the latest build? Y) Move on N) Update it
-
FML / Forge error loading Modloader Mod 'Rei's Minimap'
LexManos replied to Phuka's topic in Support & Bug Reports
Not exactly sure what reis is doing, but setInGameHook(LBaseMod;ZZ)Z does not exist in ModLoader, setInGameHook(LBaseMod;ZZ)V does though.... Link to what you downloaded? -
Something you use overrides Forge's Block class, figure out what, and stop using it.
-
mm, ModLoader limits you to just the net.minecraft.src package for mods when developing, which is unacceptable. Hence the searching along the entire classpath. However, we'll see if something can be done to clean up excessive searching. Wouldn't be an issue if MCPatcher didn't add the root for no reason
-
SpriteHelper intracts with one of the local Sprites ?
LexManos replied to 0xC6607Eo1's topic in Modder Support
It does, it appears to be a bug that cpw fixed recently that didnt apply the overrides properly. Wait for the next FML update in forge and try again. However, you do know, that adding a 32x32 texture using a override, to a 16x16 sprite sheet doesnt work right? You're better off, as I said, using your own full sprite sheet, and not using addOverride at all. -
1) You're editing base classes by adding your tool types to the enums, use Forge's EnumHelper classes 2) You can condense all of those addRecipie calls down to one line each, you do not need to wrap them in Object[]'s..
-
https://github.com/cpw/FML/commit/907cf2d925ae0c29b58fd1fcd8b4a34feb88160a Due to Risugami not publishing javadocs, we require modders to give us example mods that use any new functionality of ML. So if you know of a mod that uses serverSendPacket, post it and it'll get added. Remember, FML is made by cpw using purely user input and documentation of ML. cpw does not look at ML itself, its all clean room for him. Like I said, Risugami didn't publish his javadocs, so, cpw cant update all functionality till he gets test cases.
-
Issues with CJB's modpack and Forge 4.0.0
LexManos replied to shinji's topic in Support & Bug Reports
reading your log leads me to beleive that whatever zip you have that contains 'CJB_PlayerController.class' is corrupt and has a corrupt class file. Try redownloading everything fresh. -
This is nothing to do with the other thread, the other thread states that he is adding things specifically to the mods folder, that he does not want to be loaded as a mod. I think we can all agree that's fucking moronic. Now, onto your issue. This does indeed seem odd, it stems from, as you say, MCPatcher adding the root minecraft folder to the classpath. For what reason we do not know. However, I've made cpw aware of this and he is taking a look into what needs to be done to play nicer together. From my understanding the full classpath walk was designed so that modders could debug there mods easily in MCP. And in any package/folder they wished. Being limited to just "<MinecraftHome>/mods" would cause issues on that front. So ya, cpw is working on it.