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;

ZenGetterReturn Type
ZenGetter
displayName
Return Type
string
ZenGetter
position
Return Type
IBlockPos
ZenGetter
world
Return Type
IWorld
ZenGetter
server
Return Type
IServer

Takes a String Returns void (nothing).

ZenScript
Copy
sender.sendMessage(String text);

Send Rich Text Message

Link to send-rich-text-message

Takes an ITextComponent Returns void (nothing).

ZenScript
Copy
sender.sendRichTextMessage(ITextComponent textComponent);