Skip to content

lijek/Creative-b1.7.3

 
 

Repository files navigation

Creative

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)

Features:

  • 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

How to install (MultiMC):

Mod Api

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)

About

Creative mod for Minecraft beta 1.7.3

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%