https://github.com/serilum/entity-information
ℹ️ Displays entity information on hit with the Information Stick. Useful for debugging and developing.
https://github.com/serilum/entity-information
curseforge entity-information fabric forge minecraft mod modding modrinth natamus neoforge quilt rick-south serilum
Last synced: 3 months ago
JSON representation
ℹ️ Displays entity information on hit with the Information Stick. Useful for debugging and developing.
- Host: GitHub
- URL: https://github.com/serilum/entity-information
- Owner: Serilum
- License: other
- Created: 2023-12-12T09:21:23.000Z (over 1 year ago)
- Default Branch: 1.21.4
- Last Pushed: 2025-02-12T22:35:34.000Z (4 months ago)
- Last Synced: 2025-02-23T02:33:30.972Z (3 months ago)
- Topics: curseforge, entity-information, fabric, forge, minecraft, mod, modding, modrinth, natamus, neoforge, quilt, rick-south, serilum
- Language: Java
- Homepage: https://serilum.com/mod/entity-information
- Size: 195 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- Funding: .github/funding.yml
- License: license.md
Awesome Lists containing this project
README
Entity Information
Download
You can download Entity Information on CurseForge and Modrinth:
CurseForge: https://curseforge.com/minecraft/mc-mods/entity-information
Modrinth: https://modrinth.com/mod/entity-informationIssue Tracker
To keep a better overview of all mods, the issue tracker is located in a separate repository.
For issues, ideas, suggestions or anything else, please follow this link:
Pull Requests
Because of the way mod loader files are bundled into one jar, some extra information is needed to do a PR.
A wiki page entry about it is available here:
Mod Description
Requires the library mod Collective.
Entity Information adds displaying entity information by using the Information Stick. It gives a mod developer an easy way of getting information on an entity, both from the vanilla game and other mods.
The Information Stick may be received by entering the command /informationstick or /istAfter hitting an entity with the stick, various useful information will be sent. It can be used for debugging or developing other mods.
Explanation of variables: (Entity entity = e.getEntity());
Name (1.12): entity.getName();
Name (1.13+): entity.getName().getString();
EntityName: entity.toString().split("\\[")[0];
EntityId: entity.getEntityId();
UUID: entity.getUniqueID();
Position: entity.getPosition().toString().replace("BlockPos{", "").replace("}", "");
isSilent: entity.isSilent();
ticksExisted: entity.ticksExisted;
------------------
You may freely use this mod in any modpack, as long as the download remains hosted within the CurseForge or Modrinth ecosystem.
Serilum.com contains an overview and more information on all mods available.
Comments are disabled as I'm unable to keep track of all the separate pages on each mod.
For issues, ideas, suggestions or anything else there is the Github repo. Thanks!