A flag enum representing context where this command operates.
| Enumerator |
|---|
| Chat | Command can be used in Chat in SP and MP.
|
| Server | Command is executed by server in MP.
|
| Console | Command can be used in server console during MP.
|
| World | Command can be used in Chat in SP and MP, but executes on the Server in MP. (SinglePlayer ? Chat : Server)
|
Definition at line 7 of file CommandType.cs.
8{
10 Chat = 1,
12 Server = 2,
16 World = 8
17}
@ Console
Command can be used in server console during MP.