This mod adds a creative mode from modern MC versions to beta 1.7.3.
Requires Fabric Legacy and Station API (2.0-PRE1 or newer)
- Separate creative and survival worlds;
- Modern-like creative GUI (based on beta 1.8 and current creative GUI);
- Creative invulnerability;
- Creative flight (double tap jump key);
- Ability to break any block when in creative;
- Middle click to get block you're looking on when in creative;
- Mobs don't attack you until you attack them;
- Copying item stacks by mouse scroll clicking;
- Buckets will not empty or fill when placing or collecting a fluid
- Download MultiMC instance and import it as zip
- Download Station API and import it as a mod in MultiMC
- Import this mod
Creative has a possibility for mods to add their own tabs, the simple tab can be done like this:
SimpleTab tab = CreativeTabs.register(new SimpleTab("test", "coolmod", YOUR_ITEM_ICON));
tab.addItem(new ItemInstance(YOUR_ITEM_OR_BLOCK, 1, YOUR_META));
CreativeTabs.register(tab);
Where:
- YOUR_ITEM_ICON is an ItemInstance for display as a tab icon;
- YOUR_ITEM_OR_BLOCK is an ItemInstance for your item;
- YOUR_META is meta for your item, if your item don't have meta you can use:
new ItemInstance(YOUR_ITEM_OR_BLOCK)