Update 'mbchc-local.user.js'
This commit is contained in:
parent
f7e571b26a
commit
18702fa607
|
@ -38,6 +38,7 @@ var bcModSdk=function(){"use strict";const o="1.0.2";function e(o){alert("Mod ER
|
||||||
RE_TZ: /(?:GMT|UTC)([+-]\d\d?)/i,
|
RE_TZ: /(?:GMT|UTC)([+-]\d\d?)/i,
|
||||||
RE_ALL_LEFT: /^<+$/,
|
RE_ALL_LEFT: /^<+$/,
|
||||||
RE_ALL_RIGHT: /^>+$/,
|
RE_ALL_RIGHT: /^>+$/,
|
||||||
|
RE_CARET: /^\^/,
|
||||||
RGB_MUTE: "#6c2132",
|
RGB_MUTE: "#6c2132",
|
||||||
RGB_POLLY: "#81b1e7",
|
RGB_POLLY: "#81b1e7",
|
||||||
UTC_OFFSET: new Date().getTimezoneOffset() * 60 * 1000,
|
UTC_OFFSET: new Date().getTimezoneOffset() * 60 * 1000,
|
||||||
|
@ -151,21 +152,20 @@ var bcModSdk=function(){"use strict";const o="1.0.2";function e(o){alert("Mod ER
|
||||||
"ItemEars": ["ear", "ears", "earlobe", "earlobes"],
|
"ItemEars": ["ear", "ears", "earlobe", "earlobes"],
|
||||||
"ItemHead": ["head", "face", "hair", "eyes", "forehead"],
|
"ItemHead": ["head", "face", "hair", "eyes", "forehead"],
|
||||||
},
|
},
|
||||||
USAGE_MBCHC_LINES: [
|
|
||||||
"<div>Usage: /mbchc SUBCOMMAND [ARGS...]</div>",
|
|
||||||
"<div>/mbchc versions : show the mod versions across the room</div>",
|
|
||||||
"<div>/mbchc autohack : toggle the autohack feature</div>",
|
|
||||||
"<div>/mbchc disappear : become invisible (requires anal hook -> hair)</div>",
|
|
||||||
"<div>/mbchc donate TARGET : Buy data and send it to recipient</div>",
|
|
||||||
"<div>/mbchc title TITLE : set a custom title (<b>WIP</b>)</div>",
|
|
||||||
"<div>/mbchc tz TARGET NUM : set target's UTC offset</div>",
|
|
||||||
"<div>/mbchc purge! : delete MBCHC online saved data</div>",
|
|
||||||
],
|
|
||||||
COMMANDS: [
|
COMMANDS: [
|
||||||
{ Tag: "mbchc", Description: ": Utility functions (\"/mbchc\" for help)", Action: (argline, cmdline, args) => { window.MBCHC.command_mbchc(argline, cmdline, args) } },
|
{ Tag: "mbchc", Description: ": Utility functions (\"/mbchc\" for help)", Action: (argline, cmdline, args) => window.MBCHC.command_mbchc(argline, cmdline, args) },
|
||||||
{ Tag: "activity", Description: "[Message]: Send a custom activity (or \"@@Message\", or \"@Message\" as yourself)", Action: (argline, cmdline, args) => { window.MBCHC.command_activity(argline, cmdline, args) } },
|
{ Tag: "activity", Description: "[Message]: Send a custom activity (or \"@@Message\", or \"@Message\" as yourself)", Action: (argline, cmdline, args) => window.MBCHC.command_activity(argline, cmdline, args) },
|
||||||
{ Tag: "do", Description: ": Do an activity, as if clicked on its button (\"/do\" for help)", Action: (argline, cmdline, args) => { window.MBCHC.command_do(argline, cmdline, args) } },
|
{ Tag: "do", Description: ": Do an activity, as if clicked on its button (\"/do\" for help)", Action: (argline, cmdline, args) => window.MBCHC.command_do(argline, cmdline, args) },
|
||||||
],
|
],
|
||||||
|
SUBCOMMANDS_MBCHC: {
|
||||||
|
"versions": {desc: "show the mod versions across the room", cb: mbchc => mbchc.inform(mbchc.gather_versions().map(c => `<div><b>${c.name}</b> (${c.cid}): ${c.version}</div>`).join(""))},
|
||||||
|
"autohack": {desc: "toggle the autohack feature", cb: mbchc => mbchc.inform(`Autohack is now ${(mbchc.AUTOHACK_ENABLED = !mbchc.AUTOHACK_ENABLED) ? "enabled" : "disabled"}`)},
|
||||||
|
"disappear": {desc: "become invisible (requires anal hook -> hair)", cb: mbchc => mbchc.disappear()},
|
||||||
|
"donate": {desc: "Buy data and send it to recipient", args: {TARGET: {}}, cb: (mbchc, args) => mbchc.donate_data(args[0])},
|
||||||
|
"title": {desc: "set a custom title (<b>WIP</b>)", args: {TITLE: {}}, cb: (mbchc, args) => mbchc.title(args[0])},
|
||||||
|
"tz": {desc: "set target's UTC offset", args: {TARGET: {}, OFFSET: {}}, cb: (mbchc, args) => mbchc.set_timezone(args)},
|
||||||
|
"purge!": {desc: "delete MBCHC online saved data", cb: mbchc => {if (window.Player.OnlineSettings.MBCHC) {delete window.Player.OnlineSettings.MBCHC; mbchc.save_settings()}}},
|
||||||
|
},
|
||||||
ensure: function(error, callback) {
|
ensure: function(error, callback) {
|
||||||
let result = callback.call(this)
|
let result = callback.call(this)
|
||||||
if (!result) throw error
|
if (!result) throw error
|
||||||
|
@ -230,15 +230,14 @@ var bcModSdk=function(){"use strict";const o="1.0.2";function e(o){alert("Mod ER
|
||||||
return(window.ChatRoomCharacter[pos])
|
return(window.ChatRoomCharacter[pos])
|
||||||
},
|
},
|
||||||
rel2char: function(target) {
|
rel2char: function(target) {
|
||||||
let me = this.ensure("can't find my position", () => window.ChatRoomCharacter.findIndex(char => char.IsPlayer()) + 1)
|
let me = this.ensure("can't find my position", () => window.ChatRoomCharacter.findIndex(char => char.IsPlayer()) + 1) - 1
|
||||||
me = me - 1
|
let pos = null
|
||||||
let index = null
|
if (target.match(this.RE_ALL_LEFT)) pos = me - target.length
|
||||||
if (target.match(this.RE_ALL_LEFT)) index = me - target.length
|
if (target.match(this.RE_ALL_RIGHT)) pos = me + target.length
|
||||||
if (target.match(this.RE_ALL_RIGHT)) index = me + target.length
|
if (null === pos) throw `failed to parse target "${target}"`
|
||||||
if (null === index) throw `failed to parse target "${target}"`
|
pos = pos % window.ChatRoomCharacter.length
|
||||||
index = index % window.ChatRoomCharacter.length
|
if (pos < 0) pos = pos + window.ChatRoomCharacter.length
|
||||||
if (index < 0) index = window.ChatRoomCharacter.length + index
|
return(this.pos2char(pos))
|
||||||
return(window.ChatRoomCharacter[index])
|
|
||||||
},
|
},
|
||||||
target2char: function(target) {
|
target2char: function(target) {
|
||||||
let input = target
|
let input = target
|
||||||
|
@ -322,14 +321,13 @@ var bcModSdk=function(){"use strict";const o="1.0.2";function e(o){alert("Mod ER
|
||||||
item.Property = {Type: "Hair", Hide: this.HIDE_ALL}
|
item.Property = {Type: "Hair", Hide: this.HIDE_ALL}
|
||||||
window.CharacterRefresh(window.Player, true, true)
|
window.CharacterRefresh(window.Player, true, true)
|
||||||
},
|
},
|
||||||
title: function(args) { // WIP
|
title: function(title) { // WIP
|
||||||
let title = args.shift()
|
|
||||||
if (this.empty(title)) throw "empty title"
|
if (this.empty(title)) throw "empty title"
|
||||||
title = this.normalise_message(title, {trim: true, up: true, low: true})
|
title = this.normalise_message(title, {trim: true, up: true, low: true})
|
||||||
if (title.length > 16) throw "title too long"
|
if (title.length > 16) throw "title too long"
|
||||||
if (!title.match(this.RE_TITLE)) throw "invalid title"
|
if (!title.match(this.RE_TITLE)) throw "invalid title"
|
||||||
window.TitleSet(title)
|
window.TitleSet(title)
|
||||||
//window.TitleList.push({Name: title, Requirement: () => {return true}}) // check for existing first
|
//window.TitleList.push({Name: title, Requirement: () => true}) // check for existing first
|
||||||
},
|
},
|
||||||
patch_handheld: function() {
|
patch_handheld: function() {
|
||||||
let options = InventoryItemHandsSpankingToysOptions /* eslint-disable-line no-undef */ // window.InventoryItemHandsSpankingToysOptions is undefined
|
let options = InventoryItemHandsSpankingToysOptions /* eslint-disable-line no-undef */ // window.InventoryItemHandsSpankingToysOptions is undefined
|
||||||
|
@ -345,7 +343,7 @@ var bcModSdk=function(){"use strict";const o="1.0.2";function e(o){alert("Mod ER
|
||||||
let result = {
|
let result = {
|
||||||
Type: "Action",
|
Type: "Action",
|
||||||
Event: trigger.Event,
|
Event: trigger.Event,
|
||||||
Matchers: trigger.Matchers.map(m => ({Tester: new RegExp(m.Tester.source.replace(/^\^/, "^SourceCharacter\\s+"), "u")}))
|
Matchers: trigger.Matchers.map(m => ({Tester: new RegExp(m.Tester.source.replace(this.RE_CARET, "^SourceCharacter\\s+"), "u")}))
|
||||||
}
|
}
|
||||||
return(result)
|
return(result)
|
||||||
},
|
},
|
||||||
|
@ -372,12 +370,12 @@ var bcModSdk=function(){"use strict";const o="1.0.2";function e(o){alert("Mod ER
|
||||||
this.hello()
|
this.hello()
|
||||||
},
|
},
|
||||||
set_timezone: function(args) {
|
set_timezone: function(args) {
|
||||||
let char = this.cid2char(args[0])
|
let char = this.target2char(args[0])
|
||||||
let tz = Number.parseInt(args[1])
|
let tz = Number.parseInt(args[1])
|
||||||
if (isNaN(tz)) throw "invalid offset"
|
if (isNaN(tz)) throw "invalid offset"
|
||||||
if (!this.in(tz, -12, 12)) throw "offset should be [-12,12]"
|
if (!this.in(tz, -12, 12)) throw "offset should be [-12,12]"
|
||||||
char.MBCHC_LOCAL.TZ = tz
|
char.MBCHC_LOCAL.TZ = tz
|
||||||
this.save_settings((s) => { if (!s.timezones) s.timezones = {}; s.timezones[char.cid] = tz })
|
this.save_settings(s => {if (!s.timezones) s.timezones = {}; s.timezones[char.cid] = tz})
|
||||||
},
|
},
|
||||||
update_char: function(char) {
|
update_char: function(char) {
|
||||||
char.cid = char.MemberNumber // Club ID (shorter)
|
char.cid = char.MemberNumber // Club ID (shorter)
|
||||||
|
@ -385,26 +383,11 @@ var bcModSdk=function(){"use strict";const o="1.0.2";function e(o){alert("Mod ER
|
||||||
if (!char.MBCHC_LOCAL) char.MBCHC_LOCAL = {}
|
if (!char.MBCHC_LOCAL) char.MBCHC_LOCAL = {}
|
||||||
if (!char.MBCHC_LOCAL.TZ) char.MBCHC_LOCAL.TZ = this.find_timezone(char)
|
if (!char.MBCHC_LOCAL.TZ) char.MBCHC_LOCAL.TZ = this.find_timezone(char)
|
||||||
},
|
},
|
||||||
|
|
||||||
// Command actions
|
|
||||||
command_mbchc: function(argline, cmdline, args) { try {
|
command_mbchc: function(argline, cmdline, args) { try {
|
||||||
if (args.length < 1) return(this.inform(this.USAGE_MBCHC_LINES.join("")))
|
if (args.length < 1) return(this.inform(Object.entries(this.SUBCOMMANDS_MBCHC).map(([cmd, sub]) => `<div>/mbchc ${cmd} ${sub.args ? Object.keys(sub.args).join(" ") : ""}: ${sub.desc}</div>`).join("")))
|
||||||
let cmd = String(args.shift())
|
let cmd = String(args.shift())
|
||||||
switch (cmd) {
|
let sub = this.ensure(`unknown subcommand "${cmd}"`, () => this.SUBCOMMANDS_MBCHC[cmd])
|
||||||
case "versions": this.inform(this.gather_versions().map(c => { return(`<div><b>${c.name}</b> (${c.cid}): ${c.version}</div>`) }).join("")); break
|
sub.cb.call(this, this, args, argline, cmdline)
|
||||||
case "disappear": this.disappear(); break
|
|
||||||
case "title": this.title(args); break
|
|
||||||
case "autohack": this.inform(`Autohack is now ${(this.AUTOHACK_ENABLED = !this.AUTOHACK_ENABLED) ? "enabled" : "disabled"}`); break
|
|
||||||
case "donate": this.donate_data(args[0]); break
|
|
||||||
case "tz": this.set_timezone(args); break
|
|
||||||
case "purge!":
|
|
||||||
if (window.Player.OnlineSettings.MBCHC) {
|
|
||||||
delete window.Player.OnlineSettings.MBCHC
|
|
||||||
this.save_settings()
|
|
||||||
}
|
|
||||||
break
|
|
||||||
default: throw `unknown subcommand "${cmd}"`
|
|
||||||
}
|
|
||||||
} catch (x) { this.report(x) } },
|
} catch (x) { this.report(x) } },
|
||||||
command_activity: function(argline, cmdline, args) { if (!this.empty(argline)) { try {
|
command_activity: function(argline, cmdline, args) { if (!this.empty(argline)) { try {
|
||||||
let message = this.normalise_message(cmdline.replace(this.RE_ACTIVITY, ''), {trim: true, dot: true, up: true})
|
let message = this.normalise_message(cmdline.replace(this.RE_ACTIVITY, ''), {trim: true, dot: true, up: true})
|
||||||
|
@ -503,6 +486,9 @@ var bcModSdk=function(){"use strict";const o="1.0.2";function e(o){alert("Mod ER
|
||||||
}
|
}
|
||||||
return(next(args))
|
return(next(args))
|
||||||
})
|
})
|
||||||
|
window.MBCHC.sdk.hookFunction("CommandAutoComplete", 0, (args, next) => {
|
||||||
|
return(next(args))
|
||||||
|
})
|
||||||
window.MBCHC.sdk.hookFunction("ElementCreateInput", 0, (args, next) => {
|
window.MBCHC.sdk.hookFunction("ElementCreateInput", 0, (args, next) => {
|
||||||
let [ID, Type, Value, MaxLength] = args
|
let [ID, Type, Value, MaxLength] = args
|
||||||
let result = next(args)
|
let result = next(args)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user