ICommandSender
Link to icommandsender
The ICommandSender interface is used the base of each Entity and also some other types in CraftTweaker.
Each IEntity and IPlayer implements this!
Importing the package
Link to importing-the-package
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import.
import crafttweaker.command.ICommandSender;
ZenGetter
Link to zengetter
ZenGetter | Return Type |
---|---|
ZenGetter displayName | Return Type string |
ZenGetter position | Return Type IBlockPos |
ZenGetter world | Return Type IWorld |
ZenGetter server | Return Type IServer |
ZenMethods
Link to zenmethods
Send Message
Link to send-message
Takes a String Returns void (nothing).
ZenScript Copysender.sendMessage(String text);
Send Rich Text Message
Link to send-rich-text-message
Takes an ITextComponent Returns void (nothing).
ZenScript Copysender.sendRichTextMessage(ITextComponent textComponent);