mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-08-04 14:25:43 +02:00
debugging merge
This commit is contained in:
parent
8c2bd816b7
commit
4d2e2c9b31
3 changed files with 245 additions and 43 deletions
2
main.js
2
main.js
|
@ -4,7 +4,7 @@ import yargs from 'yargs';
|
||||||
import { hideBin } from 'yargs/helpers';
|
import { hideBin } from 'yargs/helpers';
|
||||||
import { createMindServer } from './src/server/mind_server.js';
|
import { createMindServer } from './src/server/mind_server.js';
|
||||||
import { mainProxy } from './src/process/main_proxy.js';
|
import { mainProxy } from './src/process/main_proxy.js';
|
||||||
import { readFileSync } from 'fs';
|
import {readFileSync} from "fs";
|
||||||
|
|
||||||
function parseArguments() {
|
function parseArguments() {
|
||||||
return yargs(hideBin(process.argv))
|
return yargs(hideBin(process.argv))
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { Coder } from './coder.js';
|
||||||
import { Prompter } from '../models/prompter.js';
|
import { Prompter } from '../models/prompter.js';
|
||||||
import { initModes } from './modes.js';
|
import { initModes } from './modes.js';
|
||||||
import { initBot } from '../utils/mcdata.js';
|
import { initBot } from '../utils/mcdata.js';
|
||||||
import { containsCommand, commandExists, executeCommand, truncCommandMessage, isAction, blacklistCommands } from './commands/index.js';
|
import { containsCommand, commandExists, executeCommand, truncCommandMessage, isAction } from './commands/index.js';
|
||||||
import { ActionManager } from './action_manager.js';
|
import { ActionManager } from './action_manager.js';
|
||||||
import { NPCContoller } from './npc/controller.js';
|
import { NPCContoller } from './npc/controller.js';
|
||||||
import { MemoryBank } from './memory_bank.js';
|
import { MemoryBank } from './memory_bank.js';
|
||||||
|
@ -13,10 +13,14 @@ import { handleTranslation, handleEnglishTranslation } from '../utils/translator
|
||||||
import { addViewer } from './viewer.js';
|
import { addViewer } from './viewer.js';
|
||||||
import settings from '../../settings.js';
|
import settings from '../../settings.js';
|
||||||
import { serverProxy } from './agent_proxy.js';
|
import { serverProxy } from './agent_proxy.js';
|
||||||
|
// import { loadTask } from '../agent/tasks.js';
|
||||||
|
// import { TechTreeHarvestValidator } from '../../tasks/validation_functions/task_validator.js';
|
||||||
|
import {getPosition} from './library/world.js'
|
||||||
import { Task } from './tasks.js';
|
import { Task } from './tasks.js';
|
||||||
|
|
||||||
export class Agent {
|
export class Agent {
|
||||||
async start(profile_fp, load_mem=false, init_message=null, count_id=0, task_path=null, task_id=null) {
|
async start(profile_fp, load_mem=false, init_message=null, count_id=0, task_path=null, task_id=null) {
|
||||||
|
|
||||||
this.last_sender = null;
|
this.last_sender = null;
|
||||||
this.count_id = count_id;
|
this.count_id = count_id;
|
||||||
try {
|
try {
|
||||||
|
@ -47,8 +51,8 @@ export class Agent {
|
||||||
await this.prompter.initExamples();
|
await this.prompter.initExamples();
|
||||||
console.log('Initializing task...');
|
console.log('Initializing task...');
|
||||||
this.task = new Task(this, task_path, task_id);
|
this.task = new Task(this, task_path, task_id);
|
||||||
const blocked_actions = this.task.blocked_actions || [];
|
this.task.loadTask(task_path, task_id)
|
||||||
blacklistCommands(blocked_actions);
|
this.blocked_actions = this.task.blocked_actions || [];
|
||||||
|
|
||||||
serverProxy.connect(this);
|
serverProxy.connect(this);
|
||||||
|
|
||||||
|
@ -62,6 +66,37 @@ export class Agent {
|
||||||
save_data = this.history.load();
|
save_data = this.history.load();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// TODO: TASK LOADING ERRORS ARE HAPPENING HERE
|
||||||
|
if (task) {
|
||||||
|
// this.task = loadTask(task)
|
||||||
|
// this.task = this.task.loadTask(task_path, task_id);
|
||||||
|
this.taskTimeout = this.task.timeout || 300;
|
||||||
|
this.taskStartTime = Date.now();
|
||||||
|
if (this.task.type === 'harvest' || this.task.type === 'techtree') {
|
||||||
|
// this.validator = new TechTreeHarvestValidator(this.task, this.bot);
|
||||||
|
}
|
||||||
|
// this.validator = new TechTreeHarvestValidator(this.task, this.bot);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
this.task = null;
|
||||||
|
this.taskTimeout = null;
|
||||||
|
this.validator = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// handle blocked actions
|
||||||
|
if (this.task && "blocked_actions" in this.task) {
|
||||||
|
if ("agent_number" in this.task && this.task.agent_number > 1) {
|
||||||
|
this.blocked_actions = this.task.blocked_actions[this.name];
|
||||||
|
console.log(`Blocked actions for ${this.name}:`, this.blocked_actions);
|
||||||
|
} else {
|
||||||
|
this.blocked_actions = this.task.blocked_actions;
|
||||||
|
console.log(`Blocked actions:`, this.blocked_actions);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log("Is validated:", this.validator && this.validator.validate());
|
||||||
|
|
||||||
this.bot.on('login', () => {
|
this.bot.on('login', () => {
|
||||||
console.log(this.name, 'logged in!');
|
console.log(this.name, 'logged in!');
|
||||||
|
|
||||||
|
@ -77,6 +112,7 @@ export class Agent {
|
||||||
const spawnTimeout = setTimeout(() => {
|
const spawnTimeout = setTimeout(() => {
|
||||||
process.exit(0);
|
process.exit(0);
|
||||||
}, 30000);
|
}, 30000);
|
||||||
|
|
||||||
this.bot.once('spawn', async () => {
|
this.bot.once('spawn', async () => {
|
||||||
try {
|
try {
|
||||||
clearTimeout(spawnTimeout);
|
clearTimeout(spawnTimeout);
|
||||||
|
@ -88,14 +124,107 @@ export class Agent {
|
||||||
console.log(`${this.name} spawned.`);
|
console.log(`${this.name} spawned.`);
|
||||||
this.clearBotLogs();
|
this.clearBotLogs();
|
||||||
|
|
||||||
|
if (this.task) {
|
||||||
|
this.bot.chat(`/clear ${this.name}`);
|
||||||
|
console.log(`Cleared ${this.name}'s inventory.`);
|
||||||
|
}
|
||||||
|
|
||||||
|
//wait for a bit so inventory is cleared
|
||||||
|
await new Promise((resolve) => setTimeout(resolve, 500));
|
||||||
|
|
||||||
|
console.log(this.task && "agent_number" in this.task && this.task.agent_number > 1);
|
||||||
|
if (this.task && "agent_number" in this.task && this.task.agent_number > 1) {
|
||||||
|
var initial_inventory = this.task.initial_inventory[this.name];
|
||||||
|
console.log("Initial inventory:", initial_inventory);
|
||||||
|
} else if (task) {
|
||||||
|
console.log("Initial inventory:", this.task.initial_inventory);
|
||||||
|
var initial_inventory = this.task.initial_inventory;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.task && "initial_inventory" in this.task) {
|
||||||
|
console.log("Setting inventory...");
|
||||||
|
console.log("Inventory to set:", initial_inventory);
|
||||||
|
for (let key of Object.keys(initial_inventory)) {
|
||||||
|
console.log('Giving item:', key);
|
||||||
|
this.bot.chat(`/give ${this.name} ${key} ${initial_inventory[key]}`);
|
||||||
|
};
|
||||||
|
//wait for a bit so inventory is set
|
||||||
|
await new Promise((resolve) => setTimeout(resolve, 500));
|
||||||
|
console.log("Done giving inventory items.");
|
||||||
|
}
|
||||||
|
// Function to generate random numbers
|
||||||
|
|
||||||
|
function getRandomOffset(range) {
|
||||||
|
return Math.floor(Math.random() * (range * 2 + 1)) - range;
|
||||||
|
}
|
||||||
|
|
||||||
|
let human_player_name = null;
|
||||||
|
|
||||||
|
// Finding if there is a human player on the server
|
||||||
|
for (const playerName in this.bot.players) {
|
||||||
|
const player = this.bot.players[playerName];
|
||||||
|
if (!isOtherAgent(player.username)) {
|
||||||
|
console.log('Found human player:', player.username);
|
||||||
|
human_player_name = player.username
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// If there are multiple human players, teleport to the first one
|
||||||
|
|
||||||
|
// teleport near a human player if found by default
|
||||||
|
|
||||||
|
if (this.task && "agent_number" in this.task) {
|
||||||
|
var agent_names = this.task.agent_names;
|
||||||
|
if (human_player_name) {
|
||||||
|
console.log(`Teleporting ${this.name} to human ${human_player_name}`)
|
||||||
|
this.bot.chat(`/tp ${this.name} ${human_player_name}`) // teleport on top of the human player
|
||||||
|
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.bot.chat(`/tp ${this.name} ${agent_names[0]}`) // teleport on top of the first agent
|
||||||
|
}
|
||||||
|
|
||||||
|
await new Promise((resolve) => setTimeout(resolve, 200));
|
||||||
|
}
|
||||||
|
|
||||||
|
else if (this.task) {
|
||||||
|
if (human_player_name) {
|
||||||
|
console.log(`Teleporting ${this.name} to human ${human_player_name}`)
|
||||||
|
this.bot.chat(`/tp ${this.name} ${human_player_name}`) // teleport on top of the human player
|
||||||
|
|
||||||
|
}
|
||||||
|
await new Promise((resolve) => setTimeout(resolve, 200));
|
||||||
|
}
|
||||||
|
|
||||||
|
// now all bots are teleport on top of each other (which kinda looks ugly)
|
||||||
|
// Thus, we need to teleport them to random distances to make it look better
|
||||||
|
|
||||||
|
/*
|
||||||
|
Note : We don't want randomness for construction task as the reference point matters a lot.
|
||||||
|
Another reason for no randomness for construction task is because, often times the user would fly in the air,
|
||||||
|
then set a random block to dirt and teleport the bot to stand on that block for starting the construction,
|
||||||
|
This was done by MaxRobinson in one of the youtube videos.
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (this.task && this.task.type !== 'construction') {
|
||||||
|
const pos = getPosition(this.bot);
|
||||||
|
const xOffset = getRandomOffset(5);
|
||||||
|
const zOffset = getRandomOffset(5);
|
||||||
|
this.bot.chat(`/tp ${this.name} ${Math.floor(pos.x + xOffset)} ${pos.y + 3} ${Math.floor(pos.z + zOffset)}`);
|
||||||
|
await new Promise((resolve) => setTimeout(resolve, 200));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
this._setupEventHandlers(save_data, init_message);
|
this._setupEventHandlers(save_data, init_message);
|
||||||
this.startEvents();
|
this.startEvents();
|
||||||
|
|
||||||
// this.task.initBotTask();
|
|
||||||
|
|
||||||
if (!load_mem) {
|
|
||||||
this.task.initBotTask();
|
this.task.initBotTask();
|
||||||
}
|
|
||||||
|
|
||||||
|
await new Promise((resolve) => setTimeout(resolve, 10000));
|
||||||
|
this.checkAllPlayersPresent();
|
||||||
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Error in spawn event:', error);
|
console.error('Error in spawn event:', error);
|
||||||
|
@ -104,10 +233,11 @@ export class Agent {
|
||||||
});
|
});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// Ensure we're not losing error details
|
// Ensure we're not losing error details
|
||||||
console.error('Agent start failed with error')
|
console.error('Agent start failed with error:', {
|
||||||
console.error(error.message);
|
message: error.message || 'No error message',
|
||||||
console.error(error.stack);
|
stack: error.stack || 'No stack trace',
|
||||||
|
error: error
|
||||||
|
});
|
||||||
throw error; // Re-throw with preserved details
|
throw error; // Re-throw with preserved details
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -133,7 +263,7 @@ export class Agent {
|
||||||
console.log(this.name, 'received message from', username, ':', message);
|
console.log(this.name, 'received message from', username, ':', message);
|
||||||
|
|
||||||
if (convoManager.isOtherAgent(username)) {
|
if (convoManager.isOtherAgent(username)) {
|
||||||
console.warn('received whisper from other bot??')
|
console.warn('recieved whisper from other bot??')
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
let translation = await handleEnglishTranslation(message);
|
let translation = await handleEnglishTranslation(message);
|
||||||
|
@ -144,8 +274,6 @@ export class Agent {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.respondFunc = respondFunc
|
|
||||||
|
|
||||||
this.bot.on('whisper', respondFunc);
|
this.bot.on('whisper', respondFunc);
|
||||||
if (settings.profiles.length === 1)
|
if (settings.profiles.length === 1)
|
||||||
this.bot.on('chat', respondFunc);
|
this.bot.on('chat', respondFunc);
|
||||||
|
@ -158,10 +286,10 @@ export class Agent {
|
||||||
};
|
};
|
||||||
|
|
||||||
if (save_data?.self_prompt) {
|
if (save_data?.self_prompt) {
|
||||||
if (init_message) {
|
let prompt = save_data.self_prompt;
|
||||||
this.history.add('system', init_message);
|
// add initial message to history
|
||||||
}
|
this.history.add('system', prompt);
|
||||||
await this.self_prompter.handleLoad(save_data.self_prompt, save_data.self_prompting_state);
|
await this.self_prompter.start(prompt);
|
||||||
}
|
}
|
||||||
if (save_data?.last_sender) {
|
if (save_data?.last_sender) {
|
||||||
this.last_sender = save_data.last_sender;
|
this.last_sender = save_data.last_sender;
|
||||||
|
@ -170,7 +298,7 @@ export class Agent {
|
||||||
message: `You have restarted and this message is auto-generated. Continue the conversation with me.`,
|
message: `You have restarted and this message is auto-generated. Continue the conversation with me.`,
|
||||||
start: true
|
start: true
|
||||||
};
|
};
|
||||||
convoManager.receiveFromBot(this.last_sender, msg_package);
|
convoManager.recieveFromBot(this.last_sender, msg_package);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (init_message) {
|
else if (init_message) {
|
||||||
|
@ -181,6 +309,18 @@ export class Agent {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
checkAllPlayersPresent() {
|
||||||
|
if (!this.task || !this.task.agent_names) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const missingPlayers = this.task.agent_names.filter(name => !this.bot.players[name]);
|
||||||
|
if (missingPlayers.length > 0) {
|
||||||
|
console.log(`Missing players/bots: ${missingPlayers.join(', ')}`);
|
||||||
|
this.cleanKill('Not all required players/bots are present in the world. Exiting.', 4);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
requestInterrupt() {
|
requestInterrupt() {
|
||||||
this.bot.interrupt_code = true;
|
this.bot.interrupt_code = true;
|
||||||
this.bot.collectBlock.cancelTask();
|
this.bot.collectBlock.cancelTask();
|
||||||
|
@ -195,13 +335,16 @@ export class Agent {
|
||||||
|
|
||||||
shutUp() {
|
shutUp() {
|
||||||
this.shut_up = true;
|
this.shut_up = true;
|
||||||
if (this.self_prompter.isActive()) {
|
if (this.self_prompter.on) {
|
||||||
this.self_prompter.stop(false);
|
this.self_prompter.stop(false);
|
||||||
}
|
}
|
||||||
convoManager.endAllConversations();
|
convoManager.endAllConversations();
|
||||||
}
|
}
|
||||||
|
|
||||||
async handleMessage(source, message, max_responses=null) {
|
async handleMessage(source, message, max_responses=null) {
|
||||||
|
if (this.task && this.validator && this.validator.validate()) {
|
||||||
|
this.killBots();
|
||||||
|
}
|
||||||
if (!source || !message) {
|
if (!source || !message) {
|
||||||
console.warn('Received empty message from', source);
|
console.warn('Received empty message from', source);
|
||||||
return false;
|
return false;
|
||||||
|
@ -236,6 +379,13 @@ export class Agent {
|
||||||
this.routeResponse(source, execute_res);
|
this.routeResponse(source, execute_res);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
console.log('Self-prompting:', message);
|
||||||
|
// if self_prompt contains something that indicates the goal is complete, stop self-prompting
|
||||||
|
if (message.includes('goal complete')) {
|
||||||
|
this.self_prompter.stop();
|
||||||
|
process.exit(0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (from_other_bot)
|
if (from_other_bot)
|
||||||
|
@ -261,9 +411,11 @@ export class Agent {
|
||||||
await this.history.add(source, message);
|
await this.history.add(source, message);
|
||||||
this.history.save();
|
this.history.save();
|
||||||
|
|
||||||
if (!self_prompt && this.self_prompter.isActive()) // message is from user during self-prompting
|
if (!self_prompt && this.self_prompter.on) // message is from user during self-prompting
|
||||||
max_responses = 1; // force only respond to this message, then let self-prompting take over
|
max_responses = 1; // force only respond to this message, then let self-prompting take over
|
||||||
for (let i=0; i<max_responses; i++) {
|
for (let i=0; i<max_responses; i++) {
|
||||||
|
|
||||||
|
|
||||||
if (checkInterrupt()) break;
|
if (checkInterrupt()) break;
|
||||||
let history = this.history.getHistory();
|
let history = this.history.getHistory();
|
||||||
let res = await this.prompter.promptConvo(history);
|
let res = await this.prompter.promptConvo(history);
|
||||||
|
@ -324,7 +476,6 @@ export class Agent {
|
||||||
}
|
}
|
||||||
|
|
||||||
async routeResponse(to_player, message) {
|
async routeResponse(to_player, message) {
|
||||||
if (this.shut_up) return;
|
|
||||||
let self_prompt = to_player === 'system' || to_player === this.name;
|
let self_prompt = to_player === 'system' || to_player === this.name;
|
||||||
if (self_prompt && this.last_sender) {
|
if (self_prompt && this.last_sender) {
|
||||||
// this is for when the agent is prompted by system while still in conversation
|
// this is for when the agent is prompted by system while still in conversation
|
||||||
|
@ -366,8 +517,14 @@ export class Agent {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
startEvents() {
|
async startEvents() {
|
||||||
// Custom events
|
// Custom events
|
||||||
|
// this.bot.on('spawn', () => {
|
||||||
|
|
||||||
|
// //check that inventory has been set
|
||||||
|
// });
|
||||||
|
|
||||||
|
|
||||||
this.bot.on('time', () => {
|
this.bot.on('time', () => {
|
||||||
if (this.bot.time.timeOfDay == 0)
|
if (this.bot.time.timeOfDay == 0)
|
||||||
this.bot.emit('sunrise');
|
this.bot.emit('sunrise');
|
||||||
|
@ -419,6 +576,9 @@ export class Agent {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.bot.on('idle', () => {
|
this.bot.on('idle', () => {
|
||||||
|
if (this.task && this.validator && this.validator.validate()) {
|
||||||
|
this.killBots();
|
||||||
|
}
|
||||||
this.bot.clearControlStates();
|
this.bot.clearControlStates();
|
||||||
this.bot.pathfinder.stop(); // clear any lingering pathfinder
|
this.bot.pathfinder.stop(); // clear any lingering pathfinder
|
||||||
this.bot.modes.unPauseAll();
|
this.bot.modes.unPauseAll();
|
||||||
|
@ -444,34 +604,76 @@ export class Agent {
|
||||||
}, INTERVAL);
|
}, INTERVAL);
|
||||||
|
|
||||||
this.bot.emit('idle');
|
this.bot.emit('idle');
|
||||||
|
|
||||||
|
// Check for task completion
|
||||||
|
if (this.task.data) {
|
||||||
|
setInterval(() => {
|
||||||
|
let res = this.task.isDone();
|
||||||
|
if (res) {
|
||||||
|
// TODO kill other bots
|
||||||
|
this.cleanKill(res.message, res.code);
|
||||||
|
}
|
||||||
|
}, 1000);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async killBots() {
|
||||||
|
this.bot.chat('Task completed!');
|
||||||
|
this.bot.chat(`/clear @p`);
|
||||||
|
|
||||||
|
// Kick other bots
|
||||||
|
if (!this.task || !this.task.agent_number) {
|
||||||
|
await this.cleanKill('Task completed', 2);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const agent_names = this.task.agent_names;
|
||||||
|
console.log('All agent names:', agent_names);
|
||||||
|
console.log('My name:', this.name);
|
||||||
|
const botNames = agent_names.filter(botName => botName !== this.name);
|
||||||
|
console.log('Kicking bots:', botNames);
|
||||||
|
botNames.forEach(botName => {
|
||||||
|
this.bot.chat(`/kick ${botName}`);
|
||||||
|
console.log(`/kick ${botName}`);
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
await this.cleanKill('Task completed, exiting', 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
async update(delta) {
|
async update(delta) {
|
||||||
await this.bot.modes.update();
|
await this.bot.modes.update();
|
||||||
|
await this.self_prompter.update(delta);
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (this.task && this.taskTimeout) {
|
||||||
|
const elapsedTime = (Date.now() - this.taskStartTime) / 1000;
|
||||||
|
if (elapsedTime >= this.taskTimeout) {
|
||||||
|
console.log('Task timeout reached. Task unsuccessful.');
|
||||||
|
await this.cleanKill('Task unsuccessful: Timeout reached', 3);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Caught an error while checking timeout reached",e);
|
||||||
|
}
|
||||||
this.self_prompter.update(delta);
|
this.self_prompter.update(delta);
|
||||||
if (this.task.data) {
|
|
||||||
let res = this.task.isDone();
|
|
||||||
if (res) {
|
|
||||||
await this.history.add('system', `${res.message} ended with code : ${res.code}`);
|
|
||||||
await this.history.save();
|
|
||||||
console.log('Task finished:', res.message);
|
|
||||||
this.killAll();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
isIdle() {
|
isIdle() {
|
||||||
return !this.actions.executing && !this.coder.generating;
|
return !this.actions.executing && !this.coder.generating;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
cleanKill(msg='Killing agent process...', code=1) {
|
cleanKill(msg='Killing agent process...', code=1) {
|
||||||
this.history.add('system', msg);
|
this.history.add('system', msg);
|
||||||
|
|
||||||
|
if (code === 2 || code === 3 || code === 4) {
|
||||||
|
this.bot.chat('Exiting the world permanently.');
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.bot.chat('Restarting.')
|
||||||
|
}
|
||||||
this.bot.chat(code > 1 ? 'Restarting.': 'Exiting.');
|
this.bot.chat(code > 1 ? 'Restarting.': 'Exiting.');
|
||||||
this.history.save();
|
this.history.save();
|
||||||
process.exit(code);
|
process.exit(code);
|
||||||
}
|
}
|
||||||
|
|
||||||
killAll() {
|
|
||||||
serverProxy.shutdown();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -87,7 +87,7 @@ export class Task {
|
||||||
try {
|
try {
|
||||||
const tasksFile = readFileSync(task_path, 'utf8');
|
const tasksFile = readFileSync(task_path, 'utf8');
|
||||||
const tasks = JSON.parse(tasksFile);
|
const tasks = JSON.parse(tasksFile);
|
||||||
const task = tasks[task_id];
|
let task = tasks[task_id];
|
||||||
console.log('Loaded task:', task);
|
console.log('Loaded task:', task);
|
||||||
if (!task) {
|
if (!task) {
|
||||||
throw new Error(`Task ${task_id} not found`);
|
throw new Error(`Task ${task_id} not found`);
|
||||||
|
|
Loading…
Add table
Reference in a new issue