Loading...
Beta Modpages Unclaimed

SmartCursor

Easy solution to watch important information on your screen (Now with API!)

0 Likes
156040 Downloads
Created by asaskevich

Description

SmartCursor - good replacement for WAWLA (With API and for MC1.12.2).

Last Version: 1.5.0
Require: Minecraft Forge
Localization: EN, RU, CN
Works on: MC 1.12.2, 1.7.2, 1.7.10, 1.8

 

Mod is updated to the latest version of Minecraft 1.12.2

If there are any issues, feel free to post a comment, write me in DM or open issue at GitHub!


This mod provides a lot of indicators and tooltips for ingame screen and for cursor. With this mod you can see information about objects looking at: mobs, blocks, players, drops etc. You can configure mod as you want - it's has special configuration menu that you can activate by F key.

For modders released plugins system. How to work with API watch at the end of the post.

Let's look at the main features!

We can see information about players and mobs:

The feature has different styles (under spoiler):

We can see information about blocks:


We can see information about dropped items:

The feature has different styles (under spoiler):

It works also for experience:


As a small piece of cake - mod can display percentage damage for blocks ^_^ (also has different styles):


SmartCursor can be used on multiplayer:

 

Sources: Mod is open-source, that means that everybody can help with improvement. If you want, follow this link: https://github.com/asaskevich/SmartCursor

Contribution: If you do have a contribution(code or idea) for the mod feel free to put up a Pull Request or open Issue on GitHub or write me a PM.

API Tutorial:

1. At the first step, you should get API sources here: https://db.tt/W8xJ3fhH

2. Then you should create a new empty mod for MC  1.12.2, or 1.7.10 or MC 1.7.2.
3. Specify dependencies for the mod:
Mod(modid = ..., dependencies="required-after:SmartCursor")
4. Create a new empty class that implements one of:

  • IEntityProcessor
  • IBlockProcessor
  • IDropProcessor
  • IPlayerProcessor

5. Implement all necessary methods. Example:

package example.mod;

import java.util.List;
import net.minecraft.entity.Entity;
import com.asaskevich.smartcursor.api.IEntityProcessor;

public class ExampleModule implements IEntityProcessor {
@Override
public String getModuleName() {
return "Example mod";
}
@Override
public String getAuthor() {
return "user";
}
@Override
public void process(List list, Entity entity) {
list.add("Some text");
}
}

6. Connect your module to SmartCursor core:

import com.asaskevich.smartcursor.api.ModuleConnector;
...
ModuleConnector.connectModule(new ExampleModule());

7. Build and test your mod!

---------------------------
Alternatively, you can download all sources from GitHub and play with them.

Releases:
1.5.0: MC 1.12.2MC 1.8 | MC 1.7.10 | MC 1.7.2

  • Colored tooltips
  • New modules
  • Beta support of 1.8
  • Fixes


1.4.0:
Download for MC 1.7.10 | Download for MC 1.7.2

1.3.0: Download for MC 1.7.10 | Download for MC 1.7.2

1.2.0: Download for MC 1.7.10 | Download for MC 1.7.2

1.1.6: Download for MC 1.7.10 | Download for MC 1.7.2

1.1.5: Download for MC 1.7.10 | Download for MC 1.7.2

1.1.0: Download

1.0.0: Download

0.0.1: Download

Reviews: All video reviews that I found on YouTube under spoiler:

Another resources where I created a topic about this mod:


AD Become Premium to remove Ads!

What means Verified?

  • Compatibility: The mod should be compatible with the latest version of Minecraft and be clearly labeled with its supported versions.
  • Functionality: The mod should work as advertised and not cause any game-breaking bugs or crashes.
  • Security: The mod should not contain any malicious code or attempts to steal personal information.
  • Performance: The mod should not cause a significant decrease in the game's performance, such as by causing lag or reducing frame rates.
  • Originality: The mod should be original and not a copy of someone else's work.
  • Up-to-date: The mod should be regularly updated to fix bugs, improve performance, and maintain compatibility with the latest version of Minecraft.
  • Support: The mod should have an active developer who provides support and troubleshooting assistance to users.
  • License: The mod should be released under a clear and open source license that allows others to use, modify, and redistribute the code.
  • Documentation: The mod should come with clear and detailed documentation on how to install and use it.

AD Become Premium to remove Ads!

How to Install

1

Download Forge & Java

Download Forge from the offical Site or here. If you dont have Java installed then install it now from here. After Downloading Forge you can run the file with Java.

2

Prepare

Lounch Minecraft and select your Forge istallation as Version this will create a Folder called Mods.

3

Add Mods

Type Win+R and type %appdata% and open the .minecraft Folder. There will you find your Folder called Mods. Place all Mods you want to play in this Folder

4

Enjoy

You are now Ready. Re-start your Game and start Playing.

More Mods like this

Hwyla

Hwyla (Here's What You're Looking At) is a UI improvement mod aimed at providing block information directly in-game. It is also a fork of Waila.

Guide-API

Simple library mod for in-game guide creation

Akashic Tome

The Book of Books. Store every documentation book in one.

Jade 🔍

Shows information about what you are looking at. (Hwyla/WAILA fork for Minecraft 1.16+)

Inventory HUD+

Adds your main inventory, potion effects and your equipments to your HUD. And few other features.

MPUtils

ModPack Utilities making Developer lives simpler by making player experience better