This mod adds a creative mode from modern MC versions to beta 1.7.3.
Requires Fabric Legacy and Station API (>= 1.3)
- Separate creative and survival worlds;
- Modern-like creative GUI (based on beta 1.8 and current creative GUI)
- Creative invulnerability;
- Creative flight (pressing 'G' key).
- Any block destruction;
- Smooth creative flight;
- 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:
TabRegister.EVENT.register(new TabRegister() {
@Override
public void registerTabs() {
SimpleTab tab = CreativeTabs.register(new SimpleTab("test", "coolmod", YOUR_ITEM_ICON));
tab.addItem(new ItemInstance(YOUR_ITEM_OR_BLOCK, 1, YOUR_META));
}
});
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)