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!
Dieses Paket importieren
Link to dieses-paket-importieren
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 | Rückgabetyp |
---|---|
ZenGetter displayName | Rückgabetyp string |
ZenGetter position | Rückgabetyp IBlockPos |
ZenGetter world | Rückgabetyp IWorld |
ZenGetter server | Rückgabetyp 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);