mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
11 lines
260 B
C#
11 lines
260 B
C#
//MCCScript 1.0
|
|
|
|
string[] commands = new[] {
|
|
"send command1",
|
|
"send command2",
|
|
"send command3"
|
|
};
|
|
|
|
int randomIndex = new Random().Next(0, commands.Length);
|
|
string randomCommand = commands[randomIndex];
|
|
MCC.PerformInternalCommand(randomCommand);
|