-
Notifications
You must be signed in to change notification settings - Fork 0
FAQ
Answers to common questions from players and pack developers.
Q: Research isn't showing up in the Research Station list.
A: Run /reload. If it still doesn't appear, check the server log for [ResearchCube] WARN messages they describe JSON parse errors in your research files and name the affected file. Common causes: missing comma, wrong tier name (tier names are case-sensitive: use BASIC not basic), or a missing required field (tier and duration are required).
Q: I can see the research but clicking Start does nothing.
A: All five requirements must be met simultaneously:
- Drive (slot 0) the Drive's tier must equal the research tier exactly
- Cube (slot 1) the Cube's tier must be ≥ the research tier
- Cost slots (slots 2–7) all item costs filled with the correct items and counts
-
Fluid tank the correct fluid type is loaded and the amount is at or above the
fluid_costamount - Prerequisites all required prior research has been completed
Q: Research completed but the Drive shows no new recipe.
A: The Drive is probably full. Each Drive tier has a maxRecipes limit (BASIC = 4, ADVANCED = 8, etc.). Use a Drive of the same tier that still has capacity. Check Research Tiers for the capacity table. SELF_AWARE Drives have no limit.
Q: Can I change how long research takes?
A: Yes. Set researchDurationMultiplier in config/researchcube-common.toml. 0.5 makes all research twice as fast; 2.0 makes it twice as slow. Changes require a server restart (or world reload in singleplayer) to take effect.
Q: Does the mod work without JEI or EMI?
A: Yes. Both are fully optional. The Research Station UI, Drive Crafting Table, and all core mechanics function without any recipe viewer. Without JEI/EMI, Drive tooltips and the Research Chip Drive Inspector show recipe IDs as plain strings rather than resolved item names.
Q: What are IRRECOVERABLE drives for?
A: They are decorative and lore items. maxRecipes = 0 and isFunctional() = false IRRECOVERABLE drives cannot be placed in the Research Station or used in the Drive Crafting Table. They cannot be imprinted with recipes.
Q: Can two players share research progress?
A: If enableTeamSharing = true (the default) and both players are on the same FriendlyTeam set with the vanilla /team command their completed research is pooled server-side. One player completing research counts as completed for all team members.
Q: My datapack research runs but no recipe is imprinted. Why?
A: There are two possible causes:
- The Drive in slot 0 is full (its
maxRecipeslimit is reached). Use a Drive with remaining capacity. - The
recipe_poolfield is absent or empty in your research JSON. Ifrecipe_poolis omitted, no recipe is imprinted on completion this is valid behavior for research that is purely a prerequisite gate.
Q: How do I browse what recipes a Drive can produce before I run the research?
A: Open JEI or EMI and look up the Drive Crafting category. All registered researchcube:drive_crafting recipes are listed there with their required Drive, ingredients, and output. Alternatively, read the Research Book (right-click the research_book item) to see each research's recipe_pool.
Q: How do I report a bug or request a feature?
A: Open an issue on the mod's GitHub repository. Include your mod version, NeoForge version, a description of the problem, and any relevant log output.
- Getting Started first-time setup walkthrough
- Research Station slot layout and requirement checklist
- Research Tiers Drive capacity table
- Configuration duration and cost multipliers
- Datapack Guide troubleshooting datapack issues
Getting Started
Game Mechanics
- Research Tiers
- Research Station
- Drive Crafting Table
- Processing Station
- Fluid System
- Research Book & HUD
Mod Compatibility
For Pack Developers
- Datapack Guide
- Research Definition Schema
- Drive Crafting Recipe Schema
- Processing Recipe Schema
- Example Datapack
Reference