C# 클래스 Wolfje.Plugins.SEconomy.CmdAliasModule.AliasCommand

Class that represents a command alias,
파일 보기 프로젝트 열기: tylerjwatson/SEconomy 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
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