Jump to content

Recommended Posts

Posted

Forge: 6.0.1.339

 

When I'm using config files, all my itemIDs are over 31000, but I didn't give them such high values. This causes that many Items of my mods have the same ID from the config files, while I actually was using different IDs.

 

Code:

public static int itemIDSentryRed = 2820;
public static int itemIDSentryBlue = 2824;
public static int itemIDSentryBase = 2825;
public static int itemIDSentryHead = 2826;
public static int itemIDMonitor = 2821;
public static int itemIDWrench = 2822;
public static int itemIDGoldenWrench = 2823;

.....

@PreInit
public void preInit(FMLPreInitializationEvent event)
{
	proxy.preInit();

	Configuration configuration = new Configuration(event.getSuggestedConfigurationFile());
	try
	{
		configuration.load();
		Property prop;
		prop = configuration.getItem("itemIDSentryRed", 2820);
		itemIDSentryRed = prop.getInt(2820);
		prop = configuration.getItem("itemIDSentryBlue", 2824);
		itemIDSentryBlue = prop.getInt(2824);
		prop = configuration.getItem("itemIDSentryBase", 2825);
		itemIDSentryBase = prop.getInt(2825);
		prop = configuration.getItem("itemIDSentryHead",  2826);
		itemIDSentryHead = prop.getInt(2826);
		prop = configuration.getItem("itemIDMonitor",  2821);
		itemIDMonitor = prop.getInt(2821);
		prop = configuration.getItem("itemIDWrench", 2822);
		itemIDWrench = prop.getInt(2822);
		prop = configuration.getItem("itemIDGoldenWrench",  2823);
		itemIDGoldenWrench = prop.getInt(2823);
		prop = configuration.get( configuration.CATEGORY_GENERAL,"shootVolume", "0.2");
		prop.comment = "min: 0.0	max 1.0";
		shootVolume = Float.valueOf(prop.value).floatValue();
		prop = configuration.get(configuration.CATEGORY_GENERAL, "spotVolume", "0.2");
		prop.comment = "min: 0.0	max 1.0";
		spotVolume = Float.valueOf(prop.value).floatValue();
		prop = configuration.get(configuration.CATEGORY_GENERAL, "explosionVolume", "0.5");
		prop.comment = "min: 0.0	max 1.0";
		explosionVolume = Float.valueOf(prop.value).floatValue();
		prop = configuration.get(configuration.CATEGORY_GENERAL,"upgradeVolume",  "0.3");
		prop.comment = "min: 0.0	max 1.0";
		upgradeVolume = Float.valueOf(prop.value).floatValue();
		prop = configuration.get(configuration.CATEGORY_GENERAL,"opsOnly",  false);
		prop.comment = "Set to true, if only OPs are allowed to change the targets!";
		opsOnly = prop.getBoolean(false);
	} catch (Exception e)
	{
		FMLLog.log(Level.SEVERE, e, "TF2 Sentry has a problem loading it's configuration");
		FMLLog.severe(e.getMessage());

	} finally
	{
		configuration.save();
	}
}

 

generated config:

# Configuration file
# Generated on 28.10.12 18:02

####################
# general 
####################

general {
   # min: 0.0	max 1.0
   explosionVolume=0.5
   # Set to true, if only OPs are allowed to change the targets!
   opsOnly=false
   # min: 0.0	max 1.0
   shootVolume=0.2
   # min: 0.0	max 1.0
   spotVolume=0.2
   # min: 0.0	max 1.0
   upgradeVolume=0.3
}

####################
# item 
####################

item {
   itemIDGoldenWrench=31706
   itemIDMonitor=31708
   itemIDSentryBase=31710
   itemIDSentryBlue=31711
   itemIDSentryHead=31709
   itemIDSentryRed=31712
   itemIDWrench=31707
}


 

Only happens on Items,but  Blocks and other values are working fine.

I'm not sure if this is a bug or I missed something  :)

Posted

Modded item ids must start above 4096, otherwise they'll coincide with ItemBlock ids.

When you use configuration.getItem(), if the default below 4096, it'll auto-assign it somewhere in the 31000's.

There's an EAQ for a reason. Read it!

"Note that failure to read this will make you look idiotic. You don't want that do you?" -- luacs1998

 

First rule of bug reports: More information is always better.

Oh, and logs OR IT DIDN'T HAPPEN!!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Thanks, I've now installed a slightly newer version and the server is at least starting up now.
    • i have the same issue. Found 1 Create mod class dependency(ies) in createdeco-1.3.3-1.19.2.jar, which are missing from the current create-1.19.2-0.5.1.i.jar Found 11 Create mod class dependency(ies) in createaddition-fabric+1.19.2-20230723a.jar, which are missing from the current create-1.19.2-0.5.1.i.jar Detailed walkthrough of mods which rely on missing Create mod classes: Mod: createaddition-fabric+1.19.2-20230723a.jar Missing classes of create: com/simibubi/create/compat/jei/category/sequencedAssembly/JeiSequencedAssemblySubCategory com/simibubi/create/compat/recipeViewerCommon/SequencedAssemblySubCategoryType com/simibubi/create/compat/rei/CreateREI com/simibubi/create/compat/rei/EmptyBackground com/simibubi/create/compat/rei/ItemIcon com/simibubi/create/compat/rei/category/CreateRecipeCategory com/simibubi/create/compat/rei/category/WidgetUtil com/simibubi/create/compat/rei/category/animations/AnimatedBlazeBurner com/simibubi/create/compat/rei/category/animations/AnimatedKinetics com/simibubi/create/compat/rei/category/sequencedAssembly/ReiSequencedAssemblySubCategory com/simibubi/create/compat/rei/display/CreateDisplay Mod: createdeco-1.3.3-1.19.2.jar Missing classes of create: com/simibubi/create/content/kinetics/fan/SplashingRecipe
    • The crash points to moonlight lib - try other builds or make a test without this mod and the mods requiring it
    • Do you have shaders enabled? There is an issue with the mod simpleclouds - remove this mod or disable shaders, if enabled  
    • Maybe you need to create file in assets/<modid>/items/<itemname>.json with content like this:   { "model": { "type": "minecraft:model", "model": "modname:item/itemname" } }  
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.