MCCommandSource
Link to mccommandsource
Importare la Classe
Link to importare-la-classe
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 at the very top of the file.
ZenScript Copyimport crafttweaker.api.commands.custom.MCCommandSource;
Metodi
Link to metodi
Name: getName
Return Type: string
ZenScript Copy// MCCommandSource.getName() as string
myMCCommandSource.getName();
Name: getPlayer
Return Type: MCPlayerEntity?
ZenScript Copy// MCCommandSource.getPlayer() as MCPlayerEntity?
myMCCommandSource.getPlayer();
Name: getPlayerNames
Return Type: Collection<string>
ZenScript Copy// MCCommandSource.getPlayerNames() as Collection<string>
myMCCommandSource.getPlayerNames();
Name: getTargetedEntity
Return Type: Collection<string>
ZenScript Copy// MCCommandSource.getTargetedEntity() as Collection<string>
myMCCommandSource.getTargetedEntity();
Name: getTeamNames
Return Type: Collection<string>
ZenScript Copy// MCCommandSource.getTeamNames() as Collection<string>
myMCCommandSource.getTeamNames();
Name: hasPermissionLevel
Return Type: boolean
ZenScript CopyMCCommandSource.hasPermissionLevel(p_197034_1_ as int) as boolean
Parametro | Tipo | Descrizione |
---|---|---|
Parametro p_197034_1_ | Tipo int | Descrizione No Description Provided |
Name: isPlayer
Return Type: boolean
ZenScript Copy// MCCommandSource.isPlayer() as boolean
myMCCommandSource.isPlayer();
Name: sendErrorMessage
Return Type: void
ZenScript CopyMCCommandSource.sendErrorMessage(message as string) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro message | Tipo string | Descrizione No Description Provided |
Name: sendFeedback
Return Type: void
ZenScript CopyMCCommandSource.sendFeedback(feedback as string, allowLogging as boolean) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro feedback | Tipo string | Descrizione No Description Provided |
Parametro allowLogging | Tipo boolean | Descrizione No Description Provided |
Name: withFeedbackDisabled
Return Type: MCCommandSource
ZenScript Copy// MCCommandSource.withFeedbackDisabled() as MCCommandSource
myMCCommandSource.withFeedbackDisabled();
Name: withMinPermissionLevel
Return Type: MCCommandSource
ZenScript CopyMCCommandSource.withMinPermissionLevel(p_197026_1_ as int) as MCCommandSource
Parametro | Tipo | Descrizione |
---|---|---|
Parametro p_197026_1_ | Tipo int | Descrizione No Description Provided |
Name: withPermissionLevel
Return Type: MCCommandSource
ZenScript CopyMCCommandSource.withPermissionLevel(p_197033_1_ as int) as MCCommandSource
Parametro | Tipo | Descrizione |
---|---|---|
Parametro p_197033_1_ | Tipo int | Descrizione No Description Provided |