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 with this update, feel free to reply to this thread, write to me in direct messages or open issue at GitHub
This mod provides a lot of indicators and tooltips for in-game screen and for the 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 post.
Let's look to main features!
We can see information about players and mobs:
Feature has different styles (under spoiler):
We can see information about blocks:
We can see information about dropped items:
Feature has different styles (under spoiler):
It works also for experience:
As 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 first step you should get API sources here: https://db.tt/W8xJ3fhH
2. Then you should to create new empty mod for MC 1.7.10 or MC 1.7.2.
3. Specify dependencies for mod:
4. Create new empty class that implements one of:
6. Connect your module to SmartCursor core:
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.2 | MC 1.8 | MC 1.7.10 | MC 1.7.2
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 (if you has any, please, ask me to add):
Another resources where I created topic about this mod:
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 with this update, feel free to reply to this thread, write to me in direct messages or open issue at GitHub
This mod provides a lot of indicators and tooltips for in-game screen and for the 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 post.
Let's look to main features!
We can see information about players and mobs:
Feature has different styles (under spoiler):
We can see information about blocks:
We can see information about dropped items:
Feature has different styles (under spoiler):
It works also for experience:
As 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 first step you should get API sources here: https://db.tt/W8xJ3fhH
2. Then you should to create new empty mod for MC 1.7.10 or MC 1.7.2.
3. Specify dependencies for mod:
Code:
Mod(modid = ..., dependencies="required-after:SmartCursor")
- IEntityProcessor
- IBlockProcessor
- IDropProcessor
- IPlayerProcessor
Code:
package example.mod;
import java.util.List;
import net.minecraft.entity.Entity;
import com.asaskevich.smartcursor.api.IEntityProcessor;
public class ExampleModule implements IEntityProcessor {
public String getModuleName() {
return "Example mod";
}
public String getAuthor() {
return "user";
}
public void process(List list, Entity entity) {
list.add("Some text");
}
}
Code:
import com.asaskevich.smartcursor.api.ModuleConnector;
...
ModuleConnector.connectModule(new ExampleModule());
---------------------------
Alternatively, you can download all sources from GitHub and play with them.
Releases:
1.5.0: MC 1.12.2 | MC 1.8 | MC 1.7.10 | MC 1.7.2
- Colored tooltips
- New modules
- Beta support of 1.8
- Fixes
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 (if you has any, please, ask me to add):
Review for 1.2.0:
Review for 1.0.0:
Review for 0.0.1:
Last edited: