C# Класс Wolfje.Plugins.SEconomy.CmdAliasModule.AliasCommand

Class that represents a command alias,
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
CommandAlias string
CommandsToExecute List
CooldownSeconds int
Cost string
Permissions string
UsageHelpText string

Открытые методы

Метод Описание
Create ( string CommandAlias, string Permissions, string Cost, string HelpText, int CooldownSeconds ) : AliasCommand

Описание методов

Create() публичный статический Метод

public static Create ( string CommandAlias, string Permissions, string Cost, string HelpText, int CooldownSeconds ) : AliasCommand
CommandAlias string
Permissions string
Cost string
HelpText string
CooldownSeconds int
Результат AliasCommand

Описание свойств

CommandAlias публичное свойство

The command alias.
public string CommandAlias
Результат string

CommandsToExecute публичное свойство

The in-order list of commands to execute in place of this
public List CommandsToExecute
Результат List

CooldownSeconds публичное свойство

Time in seconds between when the user is allowed to run the command again
public int CooldownSeconds
Результат int

Cost публичное свойство

How much the command costs the player to execute. If zero, the command is free.
public string Cost
Результат string

Permissions публичное свойство

List of permissions the user needs to access this command alias.
public string Permissions
Результат string

UsageHelpText публичное свойство

This is the text to display when a user inputs your alias wrong and it doesn't parse, put some useful information about it here
public string UsageHelpText
Результат string