Skip to content
Snippets Groups Projects
Commit 864d21c4 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Merge branch 'mrc' into 'master'

MRC minor tweaks & fixes:

See merge request !369
parents b0e467f5 4005f378
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
......@@ -10,13 +10,13 @@ const ACTIVITY = new Array(
/* 3: HI */ "\x01H\x01RHI"
);
const BBSES_X = 12;
const BBSES_Y = 19;
const BBSES_Y = 18;
const ROOMS_X = 23;
const ROOMS_Y = 19;
const ROOMS_Y = 18;
const USERS_X = 34;
const USERS_Y = 19;
const USERS_Y = 18;
const LEVEL_X = 34;
const LEVEL_Y = 18;
const LEVEL_Y = 17;
const STAT_COLOR = "\x01C\x01H";
......@@ -47,3 +47,6 @@ console.gotoxy(USERS_X, USERS_Y);
printf("%s%s", STAT_COLOR, users);
console.gotoxy(LEVEL_X, LEVEL_Y);
printf("%s%s", STAT_COLOR, level);
// Put cursor at the bottom of the menu when done displaying stats
console.gotoxy(2, 22);
......@@ -134,6 +134,7 @@ function MRC_Session(host, port, user, pass, alias) {
alias: state.alias
}) + '\r\n');
this.send_command('USERLIST', 'ALL');
this.send_command('STATS', 'ALL');
}
this.disconnect = function () {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment