T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: how can i label a button that is the equiv of down arrow. up arrow i can use "^" i guess T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: does your font have a down arrow glyph? T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: how do i check T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: dunno, I never thought about it before T3/r7/2022-03-01.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: open character map and pick your font, click the box for advanced options and use search box to search for "arrow" T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: the real pickle will be getting the arrow into the lua code T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: yes T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you'd have to convert it to bytes first...hmmm...I forget how T3/r7/2022-03-01.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: naw when you got advanced clicked it gives shell code, ascii code, and alt code for it T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: thats over my head T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I could be wrong T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: let's see... T3/r7/2022-03-01.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: print(utf8.char(unicode#)) T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: \\\print(utf8.char(2191)) doesnt work T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: utf8.char isn't a thing T3/r7/2022-03-01.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: might be using an old lua engine T3/r7/2022-03-01.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: 5x something has it T3/r7/2022-03-01.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: http://www.lua.org/manual/5.3/manual.html#pdf-utf8.char T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: aardwolf mushclient uses luajit 2.1 T3/r7/2022-03-01.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: ouch. really old lol T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: no it's not T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it's just frozen at Lua 5.1 like most of the rest of the world T3/r7/2022-03-01.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: 5.1 is from 2006 man T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: 5.1 is just a specification T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: https://github.com/LuaJIT/LuaJIT T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: The world doesn't care about Lua 5.2+ largely because LuaJIT doesn't care about it and basically everyone who uses Lua except for inside games like WoW actually uses some fork of LuaJIT T3/r7/2022-03-01.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: 5.1 is NOT a specification. A specification is a RFC. 5.1 is a release version. It was released on 21st of Feburary 2006. They stopped maintainining it even for security in 2012 lol T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Lua is a specification and reference implementation. LuaJIT is compatible with the 5.1 spec plus some additions from later versions. T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: All languages are specifications. T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: The interpreter is an implementation of the spec. T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Szzilleriel is now ignoring you. wow. T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: if i supply "^" to create 3d button it doesnt create it lol T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: rly? T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: mmm wait it does. i musta messed it up T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I don't know what a good font is :| T3/r7/2022-03-01.txt.gz:{chan ch=tech}Aliera Tech: Roboto T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I don't have roboto :| T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ooh I got it T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Gaballon try... T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: utils.utf8encode(8595) as the button text, and set the utf8 flag to true T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I used Hack Nerd Font and it shows me a down arrow T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: ok ill try T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: 8595 is https://www.compart.com/en/unicode/U+2193 T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: 0x2193 -> 8595 T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: how do i set the flag to true for a 3d button T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: after the text T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it's the next input T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: utils.utf8encode(bit.tonumber("2193", 16)) will do the same thing for the text if you want to use the hex code instead of the decimal version T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: oh damn it works T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: can i leave utf8 flag true for the rest of the buttons T3/r7/2022-03-01.txt.gz:{chan ch=tech}Sheriff Shindo Tech: the only time Fiendish will let you down is when you make a mistake in your code T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: almost certainly T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'm _pretty_ sure that it's safe to leave the utf8 flag on? T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: the others look ok at first glance T3/r7/2022-03-01.txt.gz:{chan ch=tech}Tech: IAC DO Fiendish laughs out loud at Sheriff Shindo. T3/r7/2022-03-01.txt.gz:{chan ch=tech}LordPain Tech: how can i set up a trigger to make a sound when a gq is in range? T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: doesn't the soundpack already have one for that? T3/r7/2022-03-01.txt.gz:{chan ch=tech}LordPain Tech: i switched it off...hmmm. let me see T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I see one for gq has been declared T3/r7/2022-03-01.txt.gz:{chan ch=tech}LordPain Tech: oh , i had the soundpack off. makes this squishy noise during cps T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hehe T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: new problem is trying to figure out why DoCommand("PreviousCommand") doesnt work when called from the plugin T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you could just turn off the sounds you don't want T3/r7/2022-03-01.txt.gz:{chan ch=tech}LordPain Tech: i just noticed the helpfile T3/r7/2022-03-01.txt.gz:{chan ch=tech}LordPain Tech: i will forever be thankful T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: why are you trying to docommandpreviouscommand? T3/r7/2022-03-01.txt.gz:{chan ch=tech}Tech: IAC DO Fiendish beams a smile at LordPain. T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: bc thats what my uparrow does T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: it works if i type \\\DoCommand("PreviousCommand") T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hmm T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it's an interesting question T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: might be worth posting on the forum to get an answer from Nick T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what if instead of PreviousCommand you do Up? T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oh, never mind, that appears to send "up" to the game T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: yea. i guess theres no easy way to just simulate a keypress T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ooh but if you activate the Ctrl+P for previous command checkbox in keyboard preferences, then you can DoCommand("CtrlP") T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: might work? T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: (Under Game->Configure->Commands, the Keyboard button on the right side) T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: oooo that works, ty T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: very sneaky T3/r7/2022-03-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: woot T3/r7/2022-03-01.txt.gz:{chan ch=tech}LordPain Tech: i am looking for a consider plugin,anyone have some links? T3/r7/2022-03-01.txt.gz:{chan ch=tech}Sheriff Shindo Tech: finger shindo T3/r7/2022-03-01.txt.gz:{chan ch=tech}Tech: Zarra tells Sheriff Shindo, "Aren't you the guy who hit me in the eye?" T3/r7/2022-03-01.txt.gz:{chan ch=tech}LordPain Tech: for android and windows? T3/r7/2022-03-01.txt.gz:{chan ch=tech}LordPain Tech: his the guy who invented blowtorch T3/r7/2022-03-01.txt.gz:{chan ch=tech}Sheriff Shindo Tech: yes for blowtorch and one for mushclient T3/r7/2022-03-01.txt.gz:{chan ch=tech}Sheriff Shindo Tech: i did not invent or code blowtorch... just ported stuff for it T3/r7/2022-03-01.txt.gz:{chan ch=tech}Zarra Tech: id be dead without blowtorch T3/r7/2022-03-01.txt.gz:{chan ch=tech}LordPain Tech: okay, his the blowtorch messiah T3/r7/2022-03-01.txt.gz:{chan ch=tech}Zarra Tech: ty Shindo :) every little bit helps T3/r7/2022-03-01.txt.gz:{chan ch=tech}Sheriff Shindo Tech: i know it's a little out of date... but maybe oneday i'll be bopped on the head and work on it again T3/r7/2022-03-01.txt.gz:{chan ch=tech}Tech: LordPain thanks Sheriff Shindo heartily. T3/r7/2022-03-01.txt.gz:{chan ch=tech}LordPain Tech: i got it T3/r7/2022-03-01.txt.gz:{chan ch=tech}LordPain Tech: okay, what's that thingie to make a portal alias? T3/r7/2022-03-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Gotta love when you sign up for something and you untick the box for "YES! Sign me up for newletters and other stuff!" and they still send you stuff anyway... T3/r7/2022-03-01.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley sighs. T3/r7/2022-03-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Be better, Marvel. T3/r7/2022-03-01.txt.gz:{chan ch=tech}Cilmarill Tech: in mushclient, how do I get the mapper to just tell me the route it calculated rather than execute it - like "mapper goto " but, just output the route it decides on not actually start running T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: Cil: mapper where T3/r7/2022-03-01.txt.gz:{chan ch=tech}Gaballon Tech: that gives you the directions to the room T3/r7/2022-03-02.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: anyone have a Helium miner? T3/r7/2022-03-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hmm T3/r7/2022-03-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Dinv errors if you have a script that disables triggers while writing notes :( T3/r7/2022-03-02.txt.gz:{chan ch=tech}Evl Tech: *runs away!* T3/r7/2022-03-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: well..error is the wrong word T3/r7/2022-03-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but it clearly is unhappy T3/r7/2022-03-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: And durel hasn't been on in 18 days. Scary sign. T3/r7/2022-03-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Durel won't be active for quite some time, unfortunately. Real life matters that he has to tend to. T3/r7/2022-03-02.txt.gz:{chan ch=tech}Algaru Tech: hm... my mapper seems to be stuck. while i was afk i got an error about my database table being locked while trying to create a backup, and now no matter where i go it thinks i'm in aard hotel. has anyone else had this happen? it's happenened to me before and restarting mush fixes it, but curious what could be causing it T3/r7/2022-03-03.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if the database is locked, something outside of the plugin is interfering with it T3/r7/2022-03-03.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: maybe windows, maybe some crappy antivirus software, maybe dropbox/onedrive/etc syncing poorly T3/r7/2022-03-03.txt.gz:{chan ch=tech}LordPain Tech: let's say a certain mob is always in the same room. is there away to make my snd to run directly there instead of using 'where (mob name)' at the begining of the area? T3/r7/2022-03-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: If you're using mine, it's not quite a feature yet, but something in the works. T3/r7/2022-03-03.txt.gz:{chan ch=tech}LordPain Tech: I am using yours T3/r7/2022-03-03.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2022-03-03.txt.gz:{chan ch=tech}LordPain Tech: I will be waiting:) T3/r7/2022-03-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: So yeah, not quite a feature yet. T3/r7/2022-03-03.txt.gz:{chan ch=tech}LordPain Tech: ah, i need that plugin that shows how long you took to level/quest... anyone got that? T3/r7/2022-03-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I think Hadar has one, which would be considerably newer than Bast's. I'm off to work now, though, so I can't help more than that for now. T3/r7/2022-03-03.txt.gz:{chan ch=tech}LordPain Tech: thanks:) T3/r7/2022-03-03.txt.gz:{chan ch=tech}LordPain Tech: where can i find that plugin that tells someone that you haven't been around around for a certain amount of time when they send you a tell? T3/r7/2022-03-03.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: Have you tried the "AFK" command? :-p T3/r7/2022-03-03.txt.gz:{chan ch=tech}LordPain Tech: no, i don't want to use that command. I want a plugin that automatically responds to a player telling them i am afk T3/r7/2022-03-03.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: Not sure of one myself, since the AFK command does exactly what you want.... T3/r7/2022-03-03.txt.gz:{chan ch=tech}LordPain Tech: i saw it on someone before T3/r7/2022-03-03.txt.gz:{chan ch=tech}LordPain Tech: 'Sorry LordPain, I haven't typed anything in 13h 16m 5s. It doesn't look like I'm here.' T3/r7/2022-03-03.txt.gz:{chan ch=tech}LordPain Tech: see? T3/r7/2022-03-03.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: Well then, maybe ask THAT person T3/r7/2022-03-03.txt.gz:{chan ch=tech}LordPain Tech: i found it . i was struggling to remember the person T3/r7/2022-03-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That was Abelinc. :P He doesn't use MUSH. T3/r7/2022-03-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: However, I also have an AFK responder, too. T3/r7/2022-03-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That maybe I should make public. T3/r7/2022-03-03.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley shrugs helplessly. T3/r7/2022-03-03.txt.gz:{chan ch=tech}LordPain Tech: heh? howcome it installed here? T3/r7/2022-03-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Only difference is, you have to physically go afk. It doesn't work on idle time. T3/r7/2022-03-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It isn't installed here. It's installed on his client. Aardwolf is a cross-platform game. T3/r7/2022-03-03.txt.gz:{chan ch=tech}LordPain Tech: i found it on his link and it seems to be working properly T3/r7/2022-03-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well then. Maybe he made a MUSH version, not sure. T3/r7/2022-03-03.txt.gz:{chan ch=tech}Anssett Tech: looks like he has a section of mush plugins, one of which is indeed an idle autoresponder. T3/r7/2022-03-03.txt.gz:{chan ch=tech}LordPain Tech: yeah , pretty nice plugins too T3/r7/2022-03-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Interesting. I still like mine *shifty* T3/r7/2022-03-03.txt.gz:{chan ch=tech}Tech: LordPain throws back his head and cackles with insane glee! T3/r7/2022-03-03.txt.gz:{chan ch=tech}Jegeas Tech: anyone recommend a decent laptop not really expensive....$300 to $500 bucks or so? T3/r7/2022-03-03.txt.gz:{chan ch=tech}LordPain Tech: Acer T3/r7/2022-03-03.txt.gz:{chan ch=tech}Amarufox Tech: maybe a refurbed laptop from refurb.io? I haven't done business with them but I've heard good things T3/r7/2022-03-03.txt.gz:{chan ch=tech}Jegeas Tech: aye. thx T3/r7/2022-03-03.txt.gz:{chan ch=tech}Gaballon Tech: how do i check char.status gmcp in an alias in mush? T3/r7/2022-03-04.txt.gz:{chan ch=tech}Katsumoto Tech: Is there any way to save the outpot of the mush mapper? T3/r7/2022-03-04.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: like the path too a room? T3/r7/2022-03-04.txt.gz:{chan ch=tech}Odorless Nuanse Tech: mapper help searching T3/r7/2022-03-04.txt.gz:{chan ch=tech}Katsumoto Tech: Like the actual mapper window. I want to view the changes of the map when I walked from a lovation to another over time. T3/r7/2022-03-04.txt.gz:{chan ch=tech}Katsumoto Tech: location* T3/r7/2022-03-04.txt.gz:{chan ch=tech}Odorless Nuanse Tech: no, there is nothing for window T3/r7/2022-03-04.txt.gz:{chan ch=tech}Katsumoto Tech: I assume because it is directly from the server and not some sort of grab from the main window right? T3/r7/2022-03-04.txt.gz:{chan ch=tech}Odorless Nuanse Tech: it's grab from window. you can if you wish grab movements on map servers shows. but that is it T3/r7/2022-03-04.txt.gz:{chan ch=tech}Odorless Nuanse Tech: your scripts just gag map command. you can use it still if you wish T3/r7/2022-03-04.txt.gz:{chan ch=tech}Odorless Nuanse Tech: in aardmush it is just moved to miniwindow and gagged from main window T3/r7/2022-03-04.txt.gz:{chan ch=tech}Katsumoto Tech: anyway to retroactively have it show me what happened over the last 10 steps I took, for instance? T3/r7/2022-03-04.txt.gz:{chan ch=tech}Odorless Nuanse Tech: walk 10 steps back T3/r7/2022-03-04.txt.gz:{chan ch=tech}Tech: Odorless Nuanse snickers softly. T3/r7/2022-03-04.txt.gz:{chan ch=tech}Katsumoto Tech: No, the graphics of the map. I'm trying to get a log. T3/r7/2022-03-04.txt.gz:{chan ch=tech}Odorless Nuanse Tech: graphics are there, they are just gagged by minimap T3/r7/2022-03-04.txt.gz:{chan ch=tech}Katsumoto Tech: can I log the gag somehow? T3/r7/2022-03-04.txt.gz:{chan ch=tech}Katsumoto Tech: or is it gone T3/r7/2022-03-04.txt.gz:{chan ch=tech}Odorless Nuanse Tech: yes. you can. just create trigger for map T3/r7/2022-03-04.txt.gz:{chan ch=tech}Odorless Nuanse Tech: it will be still used if you just make sure it is run before minimap T3/r7/2022-03-04.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Are you trying to see the minimap from the Mud BTW? T3/r7/2022-03-04.txt.gz:{chan ch=tech}Katsumoto Tech: So say I wanted to log the gag from 5 minutes ago, is it possible to do that? T3/r7/2022-03-04.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: When you run? T3/r7/2022-03-04.txt.gz:{chan ch=tech}Odorless Nuanse Tech: server still sends you the map, aardmush just removes it from view T3/r7/2022-03-04.txt.gz:{chan ch=tech}Katsumoto Tech: Or can I only make a trigger to do it moving forward? T3/r7/2022-03-04.txt.gz:{chan ch=tech}Odorless Nuanse Tech: if you wish to see history, nope, kinda gone if you havent yourself saved it to file. T3/r7/2022-03-04.txt.gz:{chan ch=tech}Katsumoto Tech: Bummer, okay, nevermind. T3/r7/2022-03-04.txt.gz:{chan ch=tech}Katsumoto Tech: Thanks all. T3/r7/2022-03-04.txt.gz:{chan ch=tech}Parian Melfiss Tech: is it just me, or does firefox crash a LOT now? T3/r7/2022-03-04.txt.gz:{chan ch=tech}Gaballon Tech: mine doesnt T3/r7/2022-03-04.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: probably not the right balance of adult and gambling websites? T3/r7/2022-03-04.txt.gz:{chan ch=tech}Parian Melfiss Tech: it's literally just youtube and text webpages :( T3/r7/2022-03-04.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Gaballon: As for your question earlier, in an alias, you can do: require 'gmcphelper' and then check gmcp("char.status.state") (or whatever). T3/r7/2022-03-04.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: exactly, so not the "right" balance there T3/r7/2022-03-04.txt.gz:{chan ch=tech}Enoon Tech: OK i tried logging into MushClinet and it gave me a "File does not have a valid MUSHclient XML signature".....can anybody help with this please T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: did it say what file? T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oh that was a long time ago T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: MUSHclient questions answered here, lol T3/r7/2022-03-05.txt.gz:{chan ch=tech}Enoon Tech: no it didnt say which file....I just ended up reinstalling it T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Had you tried installing a new plugin from the internet at some point before that? T3/r7/2022-03-05.txt.gz:{chan ch=tech}Enoon Tech: not in a while.....but I have been having some computer problems T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ah, that sucks. sorry to hear that. T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hopefully the mushclient part is resolved now, but it's generally a bad sign when files randomly stop being readable T3/r7/2022-03-05.txt.gz:{chan ch=tech}Enoon Tech: yeah...I did save my alias/triggers though T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: that's good at least T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: side note: my installers should always preserve world aliases and triggers when you point them at an existing mushclient directory T3/r7/2022-03-05.txt.gz:{chan ch=tech}Enoon Tech: cool T3/r7/2022-03-05.txt.gz:{chan ch=tech}A Girthy Redwood Tech: it is cool, man. T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: because they won't replace an existing Aardwolf.mcl world file T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: they'll only create one if it doesn't exist T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: these are the files that won't be replaced during a replacement install: https://github.com/fiendish/aardwolfclientpackage-installer/blob/master/aardmush_installer.nsi#L67-L75 T3/r7/2022-03-05.txt.gz:{chan ch=tech}Tech: Enoon nods. T3/r7/2022-03-05.txt.gz:{chan ch=tech}Parian Melfiss Tech: is more recent mapper faster or slower than older versions? T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: no T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: at some point I may go back and replace all the mapper drawing code so that it draws faster and I can safely draw more at a time without lagging the UI, but I haven't done it yet, and I'll never improve the pathfinding because that part is weird and inefficient intentionally T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: though often when I say that last part the response I get is "really? it seems fast to me" T3/r7/2022-03-05.txt.gz:{chan ch=tech}Parian Melfiss Tech: how is it weird and inefficient? T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it does pathfinding through successively more complex SQL queries, which I find amazing and hilarious T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: restructuring the way data gets loaded so that the pathfinding happened purely in the Lua would be like 1000x faster T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but I'm not going to T3/r7/2022-03-05.txt.gz:{chan ch=tech}Parian Melfiss Tech: like, it recursively builds longer and longer queries with each step, or ... ? T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yes T3/r7/2022-03-05.txt.gz:{chan ch=tech}Parian Melfiss Tech: i see, so there might be a 'faster' way but this one works and is interesting so just use it? T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: no, there is definitely a much faster way, but I actually don't want pathfinding to be faster T3/r7/2022-03-05.txt.gz:{chan ch=tech}Tinypotato Tech: does it really do the pathfinding in sql? i thought it was jut using sql at each step of the bfs search to relook up exits for each room T3/r7/2022-03-05.txt.gz:{chan ch=tech}Parian Melfiss Tech: like, how much faster? couldn't be more than a fraction of a second? T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Melfiss: that depends on how many paths you want to find at once T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but generally yes it's not a very big time difference T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Tp: right, just as melfiss said it composes longer and longer queries for each next step T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: the logic itself is not in the sql T3/r7/2022-03-05.txt.gz:{chan ch=tech}Parian Melfiss Tech: wouldn't it eventually exceed some upper bound and crash> T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I don't think sqlite does functions? or didn't at the time anyway, maybe it does now T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Aardwolf isn't that big T3/r7/2022-03-05.txt.gz:{chan ch=tech}Iron Duck Chuft Tech: that's what she said T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it won't crash but it does exceed the number of prepared arguments you can have T3/r7/2022-03-05.txt.gz:{chan ch=tech}Amarufox Tech: to chuft T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: so I don't use prepared arguments T3/r7/2022-03-05.txt.gz:{chan ch=tech}Parian Melfiss Tech: should make a customized 'aard lua' that 'fixes' some of Lua's more annoying features, like issues with nil and changing ~= to != T3/r7/2022-03-05.txt.gz:{chan ch=tech}Tinypotato Tech: we're talking findpath() in aard_GMCP_mapper.xml right? just out of curiosity T3/r7/2022-03-05.txt.gz:{chan ch=tech}Tinypotato Tech: ah..the visited set gets larger in the query T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: there are no issues with nil and ~= has precedence in other languages like e.g. MATLAB T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: visited and rooms_list both T3/r7/2022-03-05.txt.gz:{chan ch=tech}Parian Melfiss Tech: I mean when referencing a variable that was never declared it returns nil instead of throwing an exception, oh well T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Lua doesn't have exceptions T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: not really T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I guess technically there's an abort stopping feature via pcall T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but using it is kinda gross and I only do it when critically needed T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I believe pcall only sees real use when something outside of the Lua creates an error like when using FFI T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I guess also resonate and illuminate T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mis T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: who was it that wanted transparent miniwindow buttons? gaballon? T3/r7/2022-03-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: anyway it's added now T3/r7/2022-03-06.txt.gz:{chan ch=tech}Psycho! Dillon Tech: is there a way to add a mob to Pwar's snd? T3/r7/2022-03-06.txt.gz:{chan ch=tech}Sheriff Shindo Tech: only while it is on your campaign/quest list T3/r7/2022-03-06.txt.gz:{chan ch=tech}Sheriff Shindo Tech: for example mobsub 3 will popup a questionare about the mob in campaign slot #3 T3/r7/2022-03-06.txt.gz:{chan ch=tech}Sheriff Shindo Tech: similarly mobsub q will be for your quest mob T3/r7/2022-03-06.txt.gz:{chan ch=tech}Psycho! Dillon Tech: gotcha T3/r7/2022-03-06.txt.gz:{chan ch=tech}Psycho! Dillon Tech: ty T3/r7/2022-03-06.txt.gz:{chan ch=tech}LordPain Tech: is there a global quest cycle manager for mushclient? T3/r7/2022-03-06.txt.gz:{chan ch=tech}LordPain Tech: my mushclient app...err, i restarted my pc and the app was like 0kb and wasn't functioning. i had to copy exe file from a usb into my old folder. anyone understand what happened? T3/r7/2022-03-06.txt.gz:{chan ch=tech}LordPain Tech: I just scanned my pc for viruses and malware and there's nothing T3/r7/2022-03-06.txt.gz:{chan ch=tech}Thooven Tech: coming back after several years off does anyone have a good place to get some handy plubins / addons T3/r7/2022-03-06.txt.gz:{chan ch=tech}Thooven Tech: plugins T3/r7/2022-03-06.txt.gz:{chan ch=tech}Thooven Tech: quality of life stuff T3/r7/2022-03-06.txt.gz:{chan ch=tech}Thooven Tech: can anyone point me to quality of life plugins link T3/r7/2022-03-06.txt.gz:{chan ch=tech}Tavrin Tech: Is there a way to delete a specific cexit in mushclient? T3/r7/2022-03-06.txt.gz:{chan ch=tech}Ayasinda Tech: mapper help exits T3/r7/2022-03-06.txt.gz:{chan ch=tech}Ayasinda Tech: it doesnt seem like it T3/r7/2022-03-06.txt.gz:{chan ch=tech}Veritheia Tech: You can edit the database directly T3/r7/2022-03-06.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: go to the room and type 'mapper delete cexits' T3/r7/2022-03-06.txt.gz:{chan ch=tech}A Calm Stormwind Tech: i have a portal to aventures to sendhia, when I mapper goto the room right outside that area, it taked me to vidblain, then uses the sendhia portal, then goes 1 east to that room. Is that expected behavior? T3/r7/2022-03-06.txt.gz:{chan ch=tech}Odorless Nuanse Tech: mapper portals and check that your portal takes you to right vnum T3/r7/2022-03-06.txt.gz:{chan ch=tech}Odorless Nuanse Tech: mapper thisroom will give you right vnum T3/r7/2022-03-06.txt.gz:{chan ch=tech}Odorless Nuanse Tech: after entering portal manually T3/r7/2022-03-06.txt.gz:{chan ch=tech}Odorless Nuanse Tech: you might have moved before timer for setting it runs out. T3/r7/2022-03-06.txt.gz:{chan ch=tech}A Calm Stormwind Tech: it takes me to the correct room, which is super odd. T3/r7/2022-03-06.txt.gz:{chan ch=tech}Odorless Nuanse Tech: if you have snd, set the room where portal takes as first room T3/r7/2022-03-06.txt.gz:{chan ch=tech}Odorless Nuanse Tech: depending on version. for crowleys it is xset mark T3/r7/2022-03-06.txt.gz:{chan ch=tech}A Calm Stormwind Tech: hrm that didn't fix it either. xrt sendhia takes me to vidblain first, then uses the sendhia portal to take me to the correct room.. T3/r7/2022-03-06.txt.gz:{chan ch=tech}A Calm Stormwind Tech: but when i use mapper goto 20286 it uses the portal correctly. T3/r7/2022-03-06.txt.gz:{chan ch=tech}Odorless Nuanse Tech: do you have some speedwalk set from vidblain to sendhia? T3/r7/2022-03-06.txt.gz:{chan ch=tech}Odorless Nuanse Tech: other than entering ofcourse T3/r7/2022-03-06.txt.gz:{chan ch=tech}A Calm Stormwind Tech: ahhhh i found the issue. there is a setting in SnD that I had to turn off for a hack that speedwalks to an area through vidblain T3/r7/2022-03-06.txt.gz:{chan ch=tech}A Calm Stormwind Tech: turned that off and it works as expected T3/r7/2022-03-06.txt.gz:{chan ch=tech}Odorless Nuanse Tech: oh yeah, that T3/r7/2022-03-06.txt.gz:{chan ch=tech}Odorless Nuanse Tech: vidblain fix for those who do not have direct portals T3/r7/2022-03-06.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: you can also set it to still run to vidblain under a certain level if say there's not a vidblain place you can portal to and walk out of under level 35 for example T3/r7/2022-03-06.txt.gz:{chan ch=tech}Odorless Nuanse Tech: yeah szzzz.. useful if you do not have golden cp or tp portal for sendhia for gq but otherwise kinda useless. T3/r7/2022-03-06.txt.gz:{chan ch=tech}Odorless Nuanse Tech: as sendhia doesnt have portal of it's own T3/r7/2022-03-07.txt.gz:{chan ch=tech}Yajirobe Roninleader Tech: is there a way to copy or view a cexit after youve put it into mapper? I have a long command string that I inputted in mapper a while back that I want to change, so I wanna just be able to copy the command and tweak what went wrong. T3/r7/2022-03-07.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: go to the room and do: mapper cexits here T3/r7/2022-03-07.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: you'll need to re-double the ; T3/r7/2022-03-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Or start the line with ; T3/r7/2022-03-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Starting the entire line with ; negates the need to double them. T3/r7/2022-03-07.txt.gz:{chan ch=tech}Yajirobe Roninleader Tech: that doesn't really let my copy the past input, or does it? T3/r7/2022-03-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Useful when you don't want to have to do: open d;;d;;open w;;w;;open n;;n... T3/r7/2022-03-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: If you go to the room, you can do 'mapper thisroom' to get the full cexit. T3/r7/2022-03-07.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: Yeah, copy the "dir" column in the output T3/r7/2022-03-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: The 'dir' is truncated, though. T3/r7/2022-03-07.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: Ah yeah, it is T3/r7/2022-03-07.txt.gz:{chan ch=tech}Yajirobe Roninleader Tech: Kelaire, the command is quite long T3/r7/2022-03-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: So if you have 15 commands in it, it's only going to show xx amount of characters. T3/r7/2022-03-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Hence go to the room, 'mapper thisroom', and copy it from there. T3/r7/2022-03-07.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: Yeah do mapper thisroom and copy from there T3/r7/2022-03-07.txt.gz:{chan ch=tech}Yajirobe Roninleader Tech: this room is what I was looking for! thanks! T3/r7/2022-03-07.txt.gz:{chan ch=tech}Yajirobe Roninleader Tech: ok I acidently did something and number my heal bar and output window shrunk to 1/4 the size and wont enlarge. any ideas? T3/r7/2022-03-07.txt.gz:{chan ch=tech}Yajirobe Roninleader Tech: Still dont know what happened but I found a fix, ty T3/r7/2022-03-07.txt.gz:{chan ch=tech}Katsumoto Tech: Is there anyway to tell if a current room is norecall or noportal through a variable of sorts? T3/r7/2022-03-07.txt.gz:{chan ch=tech}Mannec Tech: if you are using the mapper, then there is a command to ask it what it knows about the room - no idea what that is. you could also use 'recall' or 'enter' to find out :p T3/r7/2022-03-07.txt.gz:{chan ch=tech}Katsumoto Tech: I know mapper thisroom can show that, just wondering how to get that in variable form T3/r7/2022-03-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: You can use the 'recon' skill if you have it. T3/r7/2022-03-07.txt.gz:{chan ch=tech}Katsumoto Tech: Is there a way to capture print()'s output? T3/r7/2022-03-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: No, no way to capture print output. T3/r7/2022-03-07.txt.gz:{chan ch=tech}Tech: Katsumoto sighs. T3/r7/2022-03-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: But you can query the mapper database. That's about the only 'variable' you'll find. T3/r7/2022-03-07.txt.gz:{chan ch=tech}Mannec Tech: ... so you cant build a trigger to catch it? how odd. T3/r7/2022-03-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: If you know anything about SQL, you can build a quick query to the mapper database to determine if the room is norecall or noportal. T3/r7/2022-03-07.txt.gz:{chan ch=tech}Gaballon Tech: should be possible to do a simple plugin to show if a room is norecall T3/r7/2022-03-07.txt.gz:{chan ch=tech}Katsumoto Tech: Looks like https://www.gammon.com.au/scripts/doc.php?function=DatabaseGetField would be it T3/r7/2022-03-07.txt.gz:{chan ch=tech}Katsumoto Tech: Now I just need to figure out what the mapper's db name is called. T3/r7/2022-03-07.txt.gz:{chan ch=tech}Katsumoto Tech: Is it aardwolf.db in the main folder? T3/r7/2022-03-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Yes. T3/r7/2022-03-07.txt.gz:{chan ch=tech}Katsumoto Tech: Ill presume filename ~= db name inside mush T3/r7/2022-03-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well, the World name should equal the mapper DB name. T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2022-03-08.txt.gz:{chan ch=tech}Doge Water Yajan Tech: did you invent Mushclient or did Nick Gammon or however his name is spelled? T3/r7/2022-03-08.txt.gz:{chan ch=tech}Doge Water Yajan Tech: do you know him in real life, are you friends? T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I did not. Nick did. Yes, sort of. Yes, I think so. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Doge Water Yajan Tech: wow, that's cool T3/r7/2022-03-08.txt.gz:{chan ch=tech}Kers Tech: Is Mushclient still being actively developed? I wish it'd look less dated T3/r7/2022-03-08.txt.gz:{chan ch=tech}Doge Water Yajan Tech: Wen futuristic themes? T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: not very T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but it is on github T3/r7/2022-03-08.txt.gz:{chan ch=tech}Kers Tech: add some Win11 vibes T3/r7/2022-03-08.txt.gz:{chan ch=tech}Gaballon Tech: Fiendish: the styles didnt work unless i used a string without 'Themed.' at the start T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Gaballon: the Theme ones aren't strings T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Theme.STYLE_TRANSPARENT should be equivalent to "STYLE_TRANSPARENT" T3/r7/2022-03-08.txt.gz:{chan ch=tech}Tech: Doge Water Yajan plays Adagio for Strings as a Theme song T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: see https://github.com/fiendish/aardwolfclientpackage/blob/MUSHclient/MUSHclient/lua/mw_theme_base.lua#L275-L277 T3/r7/2022-03-08.txt.gz:{chan ch=tech}Gaballon Tech: so i supply Theme.STYLE_TRANSPARENT instead of that as a string? T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: right T3/r7/2022-03-08.txt.gz:{chan ch=tech}Gaballon Tech: ok i see T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: sorry for not making it clear T3/r7/2022-03-08.txt.gz:{chan ch=tech}Gaballon Tech: supplying the string worked ok. i just had to dig into the mw_theme lua T3/r7/2022-03-08.txt.gz:{chan ch=tech}Gaballon Tech: in doing so i think i answered my other question. if i do aard layout lock, that will lock my window from being drag moved? T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it should T3/r7/2022-03-08.txt.gz:{chan ch=tech}Gaballon Tech: i was gonna delete the hotspot that drag moves, but that didnt seem like the best solution T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you could do that too T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it's not terrible T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if you need to only freeze just that window T3/r7/2022-03-08.txt.gz:{chan ch=tech}Dhalsim Tech: IS anyone getting MCCP error messages? T3/r7/2022-03-08.txt.gz:{chan ch=tech}Dhalsim Tech: IS anyone getting MCCP error messages? T3/r7/2022-03-08.txt.gz:{chan ch=tech}I heard a Ruckus Tech: all of a sudden I see double! T3/r7/2022-03-08.txt.gz:{chan ch=tech}Tech: I heard a Ruckus looks around and whistles innocently. T3/r7/2022-03-08.txt.gz:{chan ch=tech}I heard a Ruckus Tech: but, otherwise, nopers T3/r7/2022-03-08.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: not here. I'd restart your mud client T3/r7/2022-03-08.txt.gz:{chan ch=tech}Summoner Yuna Tech: Anyone here who uses Discord? Is it down? T3/r7/2022-03-08.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: Yes T3/r7/2022-03-08.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: It is down down down T3/r7/2022-03-08.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: They are having issues with their APIs and their engineers are wroking on it T3/r7/2022-03-08.txt.gz:{chan ch=tech}Summoner Yuna Tech: Aight, thanks T3/r7/2022-03-08.txt.gz:{chan ch=tech}Non-Binary Starky Tech: been down for an hour+ they're working on it TM T3/r7/2022-03-08.txt.gz:{chan ch=tech}Zathrus Tech: is there a mapper command to goto first room of a zone (like the marked entrance) instead of using rt? T3/r7/2022-03-08.txt.gz:{chan ch=tech}Ayasinda Tech: no T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Only through scripts like SnD. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Zathrus Tech: ty T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: The mapper does not effectively know what the "first room of an area" is. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Zathrus Tech: i guess i combined two separate things there T3/r7/2022-03-08.txt.gz:{chan ch=tech}Ogreskull Tech: mapper goto , SND is a convenient function + hash table to do that for you T3/r7/2022-03-08.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods at Ogreskull. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: playing with a new mush here and for some reason, the 'auto repeat command' option isnt working. any thoughts? T3/r7/2022-03-08.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: ALT+ENTER -> input -> commands -> check box on right to turn it on. First check. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Heracles Tech: enabled it in Config > Input > Commands T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: i tried that, it's checked, but it doesn't work T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: do i need to close down and reopen mush? T3/r7/2022-03-08.txt.gz:{chan ch=tech}Anssett Tech: shouldn't need to T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: also, my old old mush used to allow me to do multiples of a command using #. e.g. #5 c desolation. I tried looking on google, but can't figure it out. suggestions? T3/r7/2022-03-08.txt.gz:{chan ch=tech}Heracles Tech: Sounds more like cmud or zmud T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: the old mush was like 10+ yrs old. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: the auto repeat command thing not working is bugging me tho. very used to that :P T3/r7/2022-03-08.txt.gz:{chan ch=tech}Gaballon Tech: theres a plugin somewhere for that T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I actually created an alias for that, Simetra. T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: No plugin, just an alias. T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Hold on, let me pull it pu. T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: up, to. T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: too, too. I suck today. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: thnx. i saw some alias to a script thingy but couldn't figure it out T3/r7/2022-03-08.txt.gz:{chan ch=tech}Anssett Tech: http://www.gammon.com.au/forum/?bbsubject_id=3311 maybe T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: i saw that page. i can't figure it out heh T3/r7/2022-03-08.txt.gz:{chan ch=tech}Anssett Tech: turn on speedwalk, #5 c deso should then cast deso 5x T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: turn on speedwalk? where/how? T3/r7/2022-03-08.txt.gz:{chan ch=tech}Anssett Tech: same window as the auto-repeat commands T3/r7/2022-03-08.txt.gz:{chan ch=tech}Anssett Tech: "enable speedwalking" i think T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: https://pastebin.com/VJLsJpvm T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: enabling sw's with # doesn't work when i type #4 c desol. it says must be a direction T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Just use that alias. Much more simpler. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods at Simetra. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: ok. thnx. will try T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I use it all the time myself. :) T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Especially when I'm trying to convert 40 tps into trivia points. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: what do i name the alias, crowley? T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Don't have to name it anything. Go to the link, select the text, copy, then go to the Gui and select 'paste' T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: (alias gui, paste in bottom right corner of the button group) T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: hmm, can i get a step by step pls? I assume i have to 'add' alias first? T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: i feel like such a noob T3/r7/2022-03-08.txt.gz:{chan ch=tech}Anssett Tech: you can paste an alias copied like that if it's structured properly T3/r7/2022-03-08.txt.gz:{chan ch=tech}Anssett Tech: in the aliases window T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Negative. The link I pasted, select everything from to T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Then open up the alias window (clicking the a (with the arrow) in the toolbar will do it). Then in the bottom right corner of the button group, there is 'paste'. Click paste, and it inserts it. T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: (Well, select, and copy from that link) T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: sweet! thanks T3/r7/2022-03-08.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: I had a problem with aliases recently T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: it works. now just have to figure out how to get auto-repeat to work T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That's easy. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: I wanted an alias to mapper cexit open east;east T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: i had like 6 aliases total so i don't need much. but the auto repeat one is something that's coded into my dna :P T3/r7/2022-03-08.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: but when i do it is says sorry Gisbo you can't do that T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Simetra - Go to Game - Configure - Commands, and then click Auto-Repeat in the top right. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: crowley, i did, and it's checked now, but it doesn't work T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Gisbourne: You have to set the send to Execute. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: nice, thanks Crowley T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Interesting. Simetra, you can use ! to repeat the last command, by the way. It's not fully automatic, but it's shorter than typing it out and faster than up arrow enter. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: nice, thanks Crowley T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: or i'm at commands/input/auto-repeat command T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: is games somewhere else? T3/r7/2022-03-08.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: whoops, just tried ! and it worked T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I'm talking about from the Menu Bar. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Ticktock Tech: I recently updated mush and now my mapper window is hidden every time I open mush. I can make it appear with mapper show, but any idea why it is hidden every time I restart? T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Ticktock: That's... very odd behavior. Not sure why it would do that... T3/r7/2022-03-08.txt.gz:{chan ch=tech}Ticktock Tech: Ok, I noticed it also does it every time I enable or disable any plugin. T3/r7/2022-03-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That is a new one for me. T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: i closed mush and reopened. auto repeat now works. thanks again, guys :) T3/r7/2022-03-08.txt.gz:{chan ch=tech}Simetra Tech: i was going crazy, clicking and unclicking the bugger T3/r7/2022-03-08.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: Curious what y'all think will be faster for someone (moi) who hasn't coded in ~15+ years, last was Python 2x. Go through a couple refresher tutorials and code from scratch to do what I want, which is relatively simple I/O and logic to mix lines of text for poetry generation. or find and adapt someone else's github package to do that T3/r7/2022-03-08.txt.gz:{chan ch=tech}Hellion Tech: you wanna code mock ai to compile poetry using existing poetry? T3/r7/2022-03-08.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: well it's already GPT-2 generated from a model I trained, i want to take the same seed text and switch up the line orders T3/r7/2022-03-08.txt.gz:{chan ch=tech}Hellion Tech: sounds like you know what u wanna do and how, whats the question to the "public?" T3/r7/2022-03-08.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: what is likely to be faster, given the ease of finding "which" package out there does something simlar T3/r7/2022-03-08.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: nevermind ill find out by doing and report bakc to yall :) going to try the scratch approach T3/r7/2022-03-08.txt.gz:{chan ch=tech}Nemesis Numenor Tech: my mush is stuck in a split screen mode. Completely blank on one side an super minimized on other any ideas? T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: RIP T3/r7/2022-03-08.txt.gz:{chan ch=tech}Negader Tech: do you have aard_splitscreen_scrollback plugin installed? T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: jk. can you post a screenshot of what that looks like for my edification? T3/r7/2022-03-08.txt.gz:{chan ch=tech}Nemesis Numenor Tech: I can try T3/r7/2022-03-08.txt.gz:{chan ch=tech}Nemesis Numenor Tech: reset toolbar location fixed it T3/r7/2022-03-08.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yay T3/r7/2022-03-08.txt.gz:{chan ch=tech}Charlottee Tech: well, thank you for your buffs. How do I see how long they will last? or even what buffs I have? T3/r7/2022-03-08.txt.gz:{chan ch=tech}Charlottee Tech: sorry - wrong copy/pase. --- Is there a way to make comms only appear in my communication log instead of also bogging down my main interaction window? T3/r7/2022-03-08.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: right click comm window and goto echo in main window settings T3/r7/2022-03-08.txt.gz:{chan ch=tech}Charlottee Tech: thank you T3/r7/2022-03-09.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I think my code is right.. but my calculations say that I'm 78.24% of the way to T9 R7 at my current T8 R5, does that sound right? T3/r7/2022-03-09.txt.gz:{chan ch=tech}Doge Water Yajan Tech: seems even further away than I thought T3/r7/2022-03-09.txt.gz:{chan ch=tech}Dogwater Welding Tech: i mean you do have 7 morts of 10k tnl to go, i think so T3/r7/2022-03-09.txt.gz:{chan ch=tech}Tech: Doge Water Yajan pout T3/r7/2022-03-09.txt.gz:{chan ch=tech}Tech: Doge Water Yajan pouts. T3/r7/2022-03-09.txt.gz:{chan ch=tech}Doge Water Yajan Tech: actually funnier the first time T3/r7/2022-03-09.txt.gz:{chan ch=tech}Tech: Doge Water Yajan pout T3/r7/2022-03-09.txt.gz:{chan ch=tech}Tech: Contigo laff T3/r7/2022-03-09.txt.gz:{chan ch=tech}Contigo Tech: your entire first tier is almost 1 mort of t9 T3/r7/2022-03-09.txt.gz:{chan ch=tech}Doge Water Yajan Tech: what about my entire second tier? T3/r7/2022-03-09.txt.gz:{chan ch=tech}Doge Water Yajan Tech: and my third? T3/r7/2022-03-09.txt.gz:{chan ch=tech}Tech: Doge Water Yajan pout T3/r7/2022-03-09.txt.gz:{chan ch=tech}Contigo Tech: yajan: yes T3/r7/2022-03-09.txt.gz:{chan ch=tech}Doge Water Yajan Tech: all these tiers for nothin! T3/r7/2022-03-09.txt.gz:{chan ch=tech}Doge Water Yajan Tech: gonna quit at T8 R7 SH I can tell already T3/r7/2022-03-09.txt.gz:{chan ch=tech}404 Eroe Tech: I don't think I changed anything, but s&d is suddenly randomly turning noexp on. is there a way to disable this? T3/r7/2022-03-09.txt.gz:{chan ch=tech}Amarufox Tech: xset noexp off T3/r7/2022-03-09.txt.gz:{chan ch=tech}Princess Alison Tech: I had that issue. It was some stupid plugin that kept doing it. I can't remember which T3/r7/2022-03-09.txt.gz:{chan ch=tech}404 Eroe Tech: thanks T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: all plugins are stupid plugins T3/r7/2022-03-09.txt.gz:{chan ch=tech}Princess Alison Tech: I can't remember which one, so just disable/enable stuff one by one until you isolate the cause. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Quite odd. I'm not sure what the problem is, but occasionally I am getting an error moving a DIY miniwindow around: Cannot find the function - 'mw_Daily_movewindow_info.dragmove' - item 'dragmove' is nil -- It's a pop up box if I'm dragging it around. Happens a few times, but no reliable way to reproduce it. I have to wonder if it was due to a hard reboot from my laptop last night, but if I grab a window title and move it around rapidly now (make circles!), it errors out for me eventually. T3/r7/2022-03-09.txt.gz:{chan ch=tech}404 Eroe Tech: mine will have AI built in because you can't have a tech convo without AI and ml and nn. T3/r7/2022-03-09.txt.gz:{chan ch=tech}404 Eroe Tech: and therefore it will be a smart plugin. T3/r7/2022-03-09.txt.gz:{chan ch=tech}Princess Alison Tech: Don't forget the blockchain. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: crowley: do you have a trigger that posts questions as soon as you see me post on tech? T3/r7/2022-03-09.txt.gz:{chan ch=tech}Tech: 404 Eroe smirks. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: No, Fiendish. I was in the middle of testing it and hadn't even known you were logged in, but was testing it to see if I can make it error out again. :p T3/r7/2022-03-09.txt.gz:{chan ch=tech}Anssett Tech: i wouldn't be the least bit surprised T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oh. it would be very clever and the sort of thing you might do T3/r7/2022-03-09.txt.gz:{chan ch=tech}Anssett Tech: it does sound like the sort of thing crowley would write haha T3/r7/2022-03-09.txt.gz:{chan ch=tech}Tech: Anssett smirks. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: can't find dragmove? hmm T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I mean, let's see... : queue question "Why is the sky blue?" -- if gmcp("comm.chan.player") == "Fiendish" then Send("tech " .. questionForFiendish) end T3/r7/2022-03-09.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley's shifty eyes dart back and forth. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: does it happen with the windows from any of the examples? T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I haven't tried it from windows from any examples. I will say, however, that the particular window is created from a clientside alias, not a plugin. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I'm not sure if that makes any difference. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Though I tried it with another window that IS from a plugin, and I haven't seen the error yet. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hmm T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Hmm, gonna test something... T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: is something resetting your global script space? T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well, don't know if something IS resetting global script space, but it seems that it happens whenever new output is put in the main window. I just did \\\DoAfter(5, "look") and caused it to fail on the client-made window, but did not fail in the plugin-made window. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: working fine for me T3/r7/2022-03-09.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley sits down and thinks deeply. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: using my_window = ThemedBasicWindow("testwindow", 100, 100, 200, 150, "Hello", "center", true, 1) and DoAfter(5, "look") T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Try with a text window with text? T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: are you dragging the window around or dragging inside the text? T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oh, dragmove would be the first T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yeah still works fine T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I'm dragging the window around, but I wonder if it's in the main window space when it updates. I'll try moving it around outside the main window space. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Okay, so it happens outside the main window space. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ? T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I tried with https://github.com/fiendish/aardwolfclientpackage/wiki/Easy-DIY-Miniwindows#text-capturing-example and still not happening T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Weird. I wonder if there are other parameters I have that's going on... I do have a plugin that modifies th room name to include the room id (hyperlinked). I'll try disabling it and seeing if that "fixes" the problem, too. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: (Sorry, at work, had a patient come up) T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well, update... it appears to only happen when GMCP is involved. Just did smile instead of look, and no error. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: is that gmcp causing your window to get rebuilt? T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: No, gmcp has nothing to do with the window being rebuilt. Here's another oddity, though. I just looked through debug. If I'm not moving the window, I get one call of room.info when 'look' fires. But if I'm moving the window, I get two calls of room.info when look fires. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: So the way my window works is this: I type 'daily', and it echoes {daily}, sends 'daily', echoes {/daily}, and captures all output between the tags. The tags and output capture are only enabled once I type 'daily'. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: {daily} builds the window parameters, {/daily} fills the window and fits the content. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Zero gmcp involved with it. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I wonder if I put it in a plugin if I get the same issue. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I have a module for automating that capture stuff btw T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Oh? T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Where might that module be? T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I forgot to finish it, so it was never documented, but it's in wrapped_captures.lua T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I think right now you still have to echo your own fake tags T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: which is a weird thing for me to not just add T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I wonder why I forgot T3/r7/2022-03-09.txt.gz:{chan ch=tech}Fatal FrostBite Tech: Old age? T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: probably T3/r7/2022-03-09.txt.gz:{chan ch=tech}Tech: Fatal FrostBite wuv IAC DO Fiendish. Aww, how coot. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: The problem with fake tags is that you're not guaranteed that the output you receive is the output you want. I can do: echo {look};look;echo {/look}, and if there are any info sent between the {look} and the output, that's captured, too. I experienced that with my script. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: of course T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Got my intended output, but it was prefaced with several "INFO:" messages. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: one day when I'm king of aardwolf I'll fix that T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Everything should have tags! :p T3/r7/2022-03-09.txt.gz:{chan ch=tech}I heard a Ruckus Tech: my liege! T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: uh no T3/r7/2022-03-09.txt.gz:{chan ch=tech}Elfo Tech: so your a label maker sort of guy? T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I have a label maker T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: does that count? T3/r7/2022-03-09.txt.gz:{chan ch=tech}Elfo Tech: yup :) T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it's a brother ptouch PT-D210 T3/r7/2022-03-09.txt.gz:{chan ch=tech}Tech: I heard a Ruckus grabs a sharpie and some masking tape and looks really, really ready. T3/r7/2022-03-09.txt.gz:{chan ch=tech}Make it Reyn Tech: have you labeled your label maker T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Nah, not everything, but I feel that things with multiple lines should at least have tags, at least. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: tags are stupid T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: well... T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: _visible_ tags are stupid T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I agree. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: But quite needed in the current context of things. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: desired not needed T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Touche. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: So many things I would love to be behind-the-scenes. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Minimize spam output, make it easier to capture, etc. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if you want to capture daily stuff, though, you probably don't need fake tags T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: daily blessings are everything between "Blessing Time Left" and the next blank line T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Yeah, I should modify it for that directly. Means I don't have to filter out stuff in between. T3/r7/2022-03-09.txt.gz:{chan ch=tech}Odorless Nuanse Tech: yeah, you can just grab everything between You bow your head to "deity" and recieve... and then that next empty line. Just remember to remove invtags from items you recieve as those are grabbed too. T3/r7/2022-03-09.txt.gz:{chan ch=tech}Odorless Nuanse Tech: well, that's how I've done it for years T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: anyway, I think the wrapped captures module should simplify the actual capturing part T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I'll take a look into it. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I use it for inventory serials and helpfile capture T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: though both of those come with their own tags T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: There, modified it to use Blessing\s+Time Left and a blank line. :p T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: And moving it to a plugin drops the dragmove issue... T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: And using your example earlier, Fiendish, it still dropped the dragmove error if I do it from the client. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: so something is resetting your global script space T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but not mine T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: So, what actions would reset a global script space? T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I can try looking for that instead. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: pressing ctrl+shift+r T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: going to Game->Reload Script FIle T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Ah, so a script that reloads a plugin, perhaps? T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: reloads the world file maybe T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: reloading a plugin wouldn't affect your world space T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I have a couple 'ReloadPlugin' code that is within a specific function... Hmm. T3/r7/2022-03-09.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: calling ReloadPlugin outside of a plugin? T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I don't have anything that would reload the world file, though. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Nope, all within a plugin. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: calling ReloadPlugin _inside_ of a plugin??? T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: heh. I don't know. I suppose it's possible that reloading a plugin might do something to the world script space T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: since it alters the world file T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Yeah, something YOU actually helped with long ago: function cmdReload() Execute(GetAlphaOption("script_prefix") .. 'DoAfterSpecial(1, "ReloadPlugin(\'' .. GetPluginID() .. '\')", sendto.script)') end T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oh that gross thing T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Yeah. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Because ReloadPlugin by itself would not work properly within the plugin, so had to go about it another way. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: right T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: And unless there's a better way to do that NOW, I guess I'm stuck doing it that way if I want to maintain the updating process. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Most of my scripts that can be updated (and others have copied the code) use that exact code. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: well I just tried with ReloadPlugin and still don't get the error T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I do get an obnoxiously long pause though while dinv runs a backup, which apparently it does any time a plugin reloads? T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Heh, I have backups turned off. Too obtrusive for my likes. I like to live dangerously. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well, now that I know what CAN cause it, I'll dig into the plugins and see if I can find the culprit. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Or, I'll just stick to keeping things in plugins. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: And... now I can't even get it to break with your example from earlier. I give up. Maybe I'm just haunted today. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Or maybe I mysteriously fixed it by disabling non-essential plugins and adding them back. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: OH!!! I BROKE IT, and I think the culprit is GMCP mapper... Try your example again, only this time do it over the GMCP mapper. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Rather, move it over GMCP mapper... with look. T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ok. wow. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Successful break? T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yes T3/r7/2022-03-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: remind me later. I have to work now. T3/r7/2022-03-09.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2022-03-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I'll shoot you a note for reminder, then. T3/r7/2022-03-09.txt.gz:{chan ch=tech}Evine Tech: what's the IAC DO Fiendish channel? T3/r7/2022-03-09.txt.gz:{chan ch=tech}Evine Tech: nevermind i'm dumb T3/r7/2022-03-09.txt.gz:{chan ch=tech}Evine Tech: this is the result of hopping off two simultaneous business meetings that ran overtime and trying to check aardwolf history lolz T3/r7/2022-03-09.txt.gz:{chan ch=tech}Vanellus Tech: Sometime my client logs out but is open and I log in and reply to yesterday's channels T3/r7/2022-03-09.txt.gz:{chan ch=tech}Make it Reyn Tech: I had my mushclient running on a small SSD and the drive ran out of space while mush was running. I think some file did a partial write before crashing and now I get the following error upon start (and nothing else loads): "Line 1706: Attribute name 'plug' not followed by '=' (Cannot load). T3/r7/2022-03-09.txt.gz:{chan ch=tech}Make it Reyn Tech: I have a backup of my whole folder from january - is there an 'easy' fix for this, or do i need to reconfigure all of my plugins/etc since that backup? T3/r7/2022-03-09.txt.gz:{chan ch=tech}Warmonger Rezit Tech: switch out the mcl file? T3/r7/2022-03-09.txt.gz:{chan ch=tech}Make it Reyn Tech: worlds -> Aardwolf.mcl ? T3/r7/2022-03-09.txt.gz:{chan ch=tech}Make it Reyn Tech: ooooooooh that may have gotten me most of the way there - thank you!!! T3/r7/2022-03-10.txt.gz:{chan ch=tech}Antifa Raded Tech: anyone know of services that show quotes for migrating on-prem exchange servers to Office 365 with pricing sheets? T3/r7/2022-03-10.txt.gz:{chan ch=tech}Tronic Tech: can I use a variable in a mapper portal command? if so, how? T3/r7/2022-03-10.txt.gz:{chan ch=tech}Tronic Tech: like, I want to specify to get my portal from my VARIABLE bag_portals T3/r7/2022-03-10.txt.gz:{chan ch=tech}Tronic Tech: within the mapper portal databsase entry T3/r7/2022-03-10.txt.gz:{chan ch=tech}Gaballon Tech: so you setup a MUSH alias to use a porta, mine is mport * T3/r7/2022-03-10.txt.gz:{chan ch=tech}Gaballon Tech: in that alias you can use variables as long as you check the expand variables box T3/r7/2022-03-10.txt.gz:{chan ch=tech}Gaballon Tech: then your command to setup the portal in mapper is mapper portal mport T3/r7/2022-03-10.txt.gz:{chan ch=tech}Porcius Tech: how do I change the area keyword whend using xrt? T3/r7/2022-03-10.txt.gz:{chan ch=tech}Tronic Tech: I'm not quite sure what you mean but 'areas keywords' command lists areas with keywords for xrt T3/r7/2022-03-10.txt.gz:{chan ch=tech}Porcius Tech: oh, but it doesn't work for bloodlust dungeon so I'm checking if we can change the keyword for that T3/r7/2022-03-10.txt.gz:{chan ch=tech}Porcius Tech: oh, but it doesn't work for bloodlust dungeon so I'm checking if we can change the keyword for that T3/r7/2022-03-10.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: snd force update master fixes bloodlust T3/r7/2022-03-10.txt.gz:{chan ch=tech}Tavrin Tech: I'm trying to make a mushclient alias that will open a door in a given direction, move through, close it, and lock it. Anyone have advice on how to handle getting the opposite direction from the direction supplied? T3/r7/2022-03-10.txt.gz:{chan ch=tech}Summoner Yuna Tech: I mean, isn't it as simple as "open ;move ;lock "? T3/r7/2022-03-10.txt.gz:{chan ch=tech}Summoner Yuna Tech: Make 6 aliases, 1 for each direction. T3/r7/2022-03-10.txt.gz:{chan ch=tech}Tavrin Tech: yeah, was trying to avoid having 6 separate aliases. T3/r7/2022-03-10.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: you need to set a trigger that watches which way you're moving and sets the opposite direction the last time you moved, and use that variable you set for the lock part T3/r7/2022-03-10.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: or have six aliases T3/r7/2022-03-10.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: *shrug* T3/r7/2022-03-10.txt.gz:{chan ch=tech}Tavrin Tech: Hrm, six aliases seems less complicated, I guess. Inelegant, but whatever. Bleh. T3/r7/2022-03-10.txt.gz:{chan ch=tech}High Risk Losteix Tech: if your alias is "dooralias *", you can read the value you pass as %1 in a script. so you can just have like a series of "if ( "%1" == "s" ) then opposite = "n" end" T3/r7/2022-03-10.txt.gz:{chan ch=tech}High Risk Losteix Tech: of course you could just have a stack of "close n;lock n;close e;lock e;close w;lock w;close s;lock s" to close and lock EVERYTHING. T3/r7/2022-03-10.txt.gz:{chan ch=tech}High Risk Losteix Tech: just in case. can never be too secure. T3/r7/2022-03-10.txt.gz:{chan ch=tech}Tavrin Tech: For some reason I just pictured someone wildly attempting to close doors and lock doors in all directions as they entered a room and it made me laugh out loud, so thanks for that mental image, Losteix. T3/r7/2022-03-10.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: I have an open all and lock all alias lol T3/r7/2022-03-10.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: it's useful for exploring lol T3/r7/2022-03-10.txt.gz:{chan ch=tech}Tavrin Tech: An open all alias is actually a good idea. The doors that don't show up on the map and don't show up when you physically bump into them are annoying. T3/r7/2022-03-10.txt.gz:{chan ch=tech}High Risk Losteix Tech: yeah, pretty sure my open all alias is the first alias i ever wrote here. great for finding hidden doors. T3/r7/2022-03-10.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: i use the close all for locking up clan hall after I open doors lol T3/r7/2022-03-10.txt.gz:{chan ch=tech}High Risk Losteix Tech: followed shortly by the trigger that squelches all of the "There is no door..." notifications T3/r7/2022-03-11.txt.gz:{chan ch=tech}Ogreskull Tech: pfft note T3/r7/2022-03-11.txt.gz:{chan ch=tech}Ogreskull Tech: miss T3/r7/2022-03-11.txt.gz:{chan ch=tech}Etcha Sletch Tech: anyone familiar with poking at crowley's snddb mind comparing notes with me? T3/r7/2022-03-11.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley peers intently at Etcha Sletch. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Tech: Etcha Sletch meeps! Maybe you should too! T3/r7/2022-03-11.txt.gz:{chan ch=tech}Zhalut Tech: does mushclient work in wine64 and mac os monterey? T3/r7/2022-03-11.txt.gz:{chan ch=tech}Menpehtyre Tech: I'm running it on monterey right now, so yes? T3/r7/2022-03-11.txt.gz:{chan ch=tech}Tech: Doge Water Yajan gasps in astonishment. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Doge Water Yajan Tech: but wine64? T3/r7/2022-03-11.txt.gz:{chan ch=tech}Amarufox Tech: mushclient works well in wine64 under ubuntu for me T3/r7/2022-03-11.txt.gz:{chan ch=tech}Tech: Menpehtyre nods at Doge Water Yajan. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Tech: Doge Water Yajan gasps in astonishment. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Doge Water Yajan Tech: life is good! T3/r7/2022-03-11.txt.gz:{chan ch=tech}Zhalut Tech: which version pf xquartz and wine, Men? T3/r7/2022-03-11.txt.gz:{chan ch=tech}Heracles Tech: No T3/r7/2022-03-11.txt.gz:{chan ch=tech}Heracles Tech: You need wine crossover to run it on monterey and newer afaik T3/r7/2022-03-11.txt.gz:{chan ch=tech}Menpehtyre Tech: wine crossover 21.0.0 T3/r7/2022-03-11.txt.gz:{chan ch=tech}Menpehtyre Tech: xquartz 2.7.11, which I guess is behind the times T3/r7/2022-03-11.txt.gz:{chan ch=tech}Zhalut Tech: i c. ive never heard of crossover T3/r7/2022-03-11.txt.gz:{chan ch=tech}Katsumoto Tech: Is it possible to increase the font size of just the main output window? T3/r7/2022-03-11.txt.gz:{chan ch=tech}Negader Tech: yes T3/r7/2022-03-11.txt.gz:{chan ch=tech}Katsumoto Tech: 1080p on a 14 inch screen is too small for these aging eyes T3/r7/2022-03-11.txt.gz:{chan ch=tech}Katsumoto Tech: How do I go about doing that? T3/r7/2022-03-11.txt.gz:{chan ch=tech}Negader Tech: let me check T3/r7/2022-03-11.txt.gz:{chan ch=tech}Negader Tech: alt-enter > output > Font T3/r7/2022-03-11.txt.gz:{chan ch=tech}Katsumoto Tech: Oh my lord, this is so much better. Thanks Negader T3/r7/2022-03-11.txt.gz:{chan ch=tech}Negader Tech: yw :) T3/r7/2022-03-11.txt.gz:{chan ch=tech}Elfo Tech: is there a guide like scripting for dummies out there? T3/r7/2022-03-11.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: all I found as far as internal mush client scripting is the mush forums but if you learn lua you should be able to figure the rest out. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Elfo Tech: oh ok, thank you T3/r7/2022-03-11.txt.gz:{chan ch=tech}Parian Melfiss Tech: the best way is take a working script and start messing with it, break it, fix it, make it do something different. Hair pulling is guaranteed :) T3/r7/2022-03-11.txt.gz:{chan ch=tech}Elfo Tech: gah ok lol, thank you :) T3/r7/2022-03-11.txt.gz:{chan ch=tech}Parian Melfiss Tech: and ask questions. lots and lots of questions. lots of good info on stackexchange and similar sites too. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: http://www.lua.org/pil/contents.html basics on lua the book they use in schools is availble via their website T3/r7/2022-03-11.txt.gz:{chan ch=tech}Elfo Tech: oh ok, thanks a ton :) T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: they teach lua in schools now? T3/r7/2022-03-11.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: if you've ever programmed in any other language pretty much just need part 1 T3/r7/2022-03-11.txt.gz:{chan ch=tech}Elfo Tech: i have never programmed so this is gonna be a first for me T3/r7/2022-03-11.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: Yeah. My college had introduction to lua or introduction to java script as their first programming class T3/r7/2022-03-11.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: you made Pong in Lua and you made this stupid Animated band thing in Javascript lol T3/r7/2022-03-11.txt.gz:{chan ch=tech}Elfo Tech: well thankfully i think what i want to do with it is gonna be basic enuff T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: how odd, I think of lua as more of an automation language, not something that you write applications in. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Algaru Tech: prev comment is right, just start hacking away at an existing plugin. then try to make something trivial and see how it goes T3/r7/2022-03-11.txt.gz:{chan ch=tech}Elfo Tech: cool ok :) T3/r7/2022-03-11.txt.gz:{chan ch=tech}Elfo Tech: thanks guys :) T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: It feels wrong to me that schools are teaching scripting languages before strongly typed languages. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Negader Tech: plugins use aliases and triggers. learn to write triggers and aliases 1st. https://github.com/fiendish/aardwolfclientpackage/wiki on right column, click on writing triggers. also writing aliases. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: but I guess for a 101-level class, it might make sense. You could teach the non-programmer types some basics that they can use in their careers. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Algaru Tech: radric - do they? i remember java and C being my intro courses T3/r7/2022-03-11.txt.gz:{chan ch=tech}Parian Melfiss Tech: I will caution against trying to modify too much with Fiendish's scripts, because of how (overly, imo) complicated they are. The whole 'styles' thing throws me for a loop. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Algaru Tech: well C is not a good example. but java T3/r7/2022-03-11.txt.gz:{chan ch=tech}Elfo Tech: cool thank you, i am checking them both out :) T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: I don't know algaru, I was reacting to what Szzilleriel said T3/r7/2022-03-11.txt.gz:{chan ch=tech}Algaru Tech: ah, missed it. daughter was being super weird and distracting T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: to me, you really have to learn C, C++, C#, or Java as a first programming language. Preferably not C++, but a case can be made for it I guess. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: i learned perl and html first T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: I was unfortuante enough to start with Pascal in college, but I already knew a lot of C before that. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Parian Melfiss Tech: BASIC <--- T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: Were you a Computer Science or Software Engineering major? T3/r7/2022-03-11.txt.gz:{chan ch=tech}Parian Melfiss Tech: who T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: Gaballon T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: well both :) T3/r7/2022-03-11.txt.gz:{chan ch=tech}Algaru Tech: i started i guess with basic by reading through the code for an old Mac SE/30 game called Mission to Mars... but reallys tarted when i downloaded rom 2.4b6 in middle school and tried to start my own mud T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: i was like 10 years old and bought a perl book lol T3/r7/2022-03-11.txt.gz:{chan ch=tech}Parian Melfiss Tech: same, just a kid with a book T3/r7/2022-03-11.txt.gz:{chan ch=tech}Parian Melfiss Tech: goin to work now, night all T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: ok well that's different. Szzilleriel was saying that intro computer science courses were being taught in lua or Javascript T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: and to me that's just wrong :P T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: my first actual class was c++ and java i think T3/r7/2022-03-11.txt.gz:{chan ch=tech}Mannec Tech: intro courses are often taught in weakly or even un- typed languages. you can teach alot of basic stuff, like conditionals, control structures, that sort of thing that way. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: its intro to programming classes. They're just teaching you syntax brackets alignment things like that getting you ready for something real T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: seems wrong to me, but whatever. No one died and left me as CS curriculum god. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Algaru Tech: it's a good point, there are things to learn before learning OO concepts T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: but strong typing... I suppose you could use a weakly typed language to teach fundamentals without ever getting into expressions that are particular to weakly typed languages. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: I'd personally use python instead of lua but I think they just go with the most established yet still modern scripting languages, and I hate perl lol T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: I am sort of partial to perl :) T3/r7/2022-03-11.txt.gz:{chan ch=tech}Mannec Tech: the problem with perl is that once you learn it, you can no longer communicate with folks who havent. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: I have to deal with perl a lot when dealing with cPanel breaking old things. I hate it. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: ^Yeah (.*) what you mean$ T3/r7/2022-03-11.txt.gz:{chan ch=tech}Algaru Tech: man, i love perl T3/r7/2022-03-11.txt.gz:{chan ch=tech}Algaru Tech: i never used it before i started working but i use it for everything T3/r7/2022-03-11.txt.gz:{chan ch=tech}Radric Tech: I once wrote a mud client that was scripted in perl, back when there was only tintin and mudmaster. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Algaru Tech: i'm a manager now though so i don't write much of anything anymore T3/r7/2022-03-11.txt.gz:{chan ch=tech}Elfo Tech: well grats on working your way up :) T3/r7/2022-03-11.txt.gz:{chan ch=tech}Algaru Tech: haha thanks. i'm off now, son wants to play minecraft. good luck with your scripting! T3/r7/2022-03-11.txt.gz:{chan ch=tech}Elfo Tech: thank you, thanks for teh help :) T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: get your mushclient questions answered here T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: can i use color codes in the strings i send to themed_windows? like for button text T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: for button text? maaaaaaybe T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if not I'll make it work T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: ok ill give it a try T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I believe it won't work. I'll have to update the button code to allow it T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: probably next release T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: is the text you want not representable with aardwolf color codes? T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oh...actually...color codes are bad too T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hmm T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: do your buttons need custom colored text? :) T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: yes i think, see my problem: https://imgur.com/a/kFQGi3r T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: its kinda hard to see T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: transparent buttons will always be hard to work with probably. what would you do with colors to fix it? T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: i was ho[ing would look better T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I see T3/r7/2022-03-11.txt.gz:{chan ch=tech}Mannec Tech: obvious solution is obvious - make text same color as background. T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: bold white T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hmm T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: let me think... T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ok, real quick, does bold font work? T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: in my plugin? T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yeah for the buttons T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: also what if I gave the text an outline? T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: or a small background? T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: i dunno how would i make the text bold T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I think by default buttons use the title font for the window they're created in T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: like this font is pretty thin. what if you used a thicker font? T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: title is nil T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: yeah i can try different fonts T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: it being same color as main output is hard tho T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: sure but the output is all colors T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: so changing font color won't really help all that much T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I could make it so that text on transparent buttons is drawn outlined like the numbers on the health bars T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but it's not perfect T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: ill try bold with other fonts T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: but can i change the title font style while still keeping it nil? i dont want the title bar visible T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yeah T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you can set a font without making text T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: i use your example here: https://github.com/fiendish/aardwolfclientpackage/wiki/Easy-DIY-Miniwindows#title-from-styles-table-example T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: but keep text nil? T3/r7/2022-03-11.txt.gz:{chan ch=tech}Mannec Tech: ahh, but can you hear the sound of one hand clapping? T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yeah T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: uh T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: maybe T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: one sec T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oh I don't have an example of custom font T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: and I didn't add a parameter for title font style :( T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but anyway T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: see in ThemedBasicWindow the arguments "title_font_name" and "title_font_size" T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if you pick a thicker font or set a bigger size T3/r7/2022-03-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: so right now you can't "bold" but you can pick a font that is naturally thick or increase font size that way T3/r7/2022-03-11.txt.gz:{chan ch=tech}Gaballon Tech: ok ill mess with font and size T3/r7/2022-03-12.txt.gz:{chan ch=tech}Cilmarill Tech: ok so my mapper thinks I can go down in room 32420 (2s of aylor recall) but I can't, and it's messing up lots of my runs as it keeps trying to go there. Is there any way to tell it to stop that? T3/r7/2022-03-12.txt.gz:{chan ch=tech}Guinness Tech: in the mapper right click on the room with the down exit and choose delete exit T3/r7/2022-03-12.txt.gz:{chan ch=tech}Cilmarill Tech: it's not a cexit or anything, it just thinks I can go down. I even get the little down-left strike on the square in the mapper panel T3/r7/2022-03-12.txt.gz:{chan ch=tech}Guinness Tech: or the map or whatever it's called. the clickable map T3/r7/2022-03-12.txt.gz:{chan ch=tech}Cilmarill Tech: ohhhh! T3/r7/2022-03-12.txt.gz:{chan ch=tech}Cilmarill Tech: MAGIC! *hugs Guiness* you'd know idea how long I've been working around that, until today I thought no, let's see what's actually going on :) T3/r7/2022-03-12.txt.gz:{chan ch=tech}Guinness Tech: yay! T3/r7/2022-03-12.txt.gz:{chan ch=tech}Cilmarill Tech: oh wow right clicking in the mapper panel is like a whole new world for me :) am I stupid? I think I was stupid :) T3/r7/2022-03-12.txt.gz:{chan ch=tech}Guinness Tech: i don't think i noticed it was a thing for at least several years, so no T3/r7/2022-03-12.txt.gz:{chan ch=tech}Cilmarill Tech: oh wow, so you're 6 years more stupid than me?? *tickles* T3/r7/2022-03-12.txt.gz:{chan ch=tech}Tech: Guinness noddles her head in agreement. T3/r7/2022-03-12.txt.gz:{chan ch=tech}Nifto Tech: ah i should have asked this here. When I try to run to art of melody, fantasy fields, or ascent it doesnt find a path... has anyone else had this problem or knows how to fix? T3/r7/2022-03-12.txt.gz:{chan ch=tech}Algaru Tech: those areas may include a cexit, you need to set it up in your mapper if they do T3/r7/2022-03-12.txt.gz:{chan ch=tech}Nifto Tech: thanks :) T3/r7/2022-03-12.txt.gz:{chan ch=tech}Can't De Cide Tech: Are you using xrt? T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2022-03-12.txt.gz:{chan ch=tech}Etcha Sletch Tech: is there a way to reassign ctrl+r to a single macro key? T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: macro no, accelerator yes T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: an accelerator is like a macro but more complicated/powerful and you have to stick them in your script file or in a plugin because...uhhhhh....reasons T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I have a few handy links about accelerators here: https://github.com/fiendish/aardwolfclientpackage/wiki/Writing-Macros#accelerator-the-more-complex-and-more-powerful-way T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: wait...maybe I misunderstood the question? T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: let me back up. what do you mean "reassign ctrl+r to a single macro key"? :D T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: let me back up. what do you mean "reassign ctrl+r to a single macro key"? :D T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: do you mean a macro that sends the last command? T3/r7/2022-03-12.txt.gz:{chan ch=tech}Etcha Sletch Tech: longest time, i was up arrow, enter to resend the last command. T3/r7/2022-03-12.txt.gz:{chan ch=tech}Stuyvesant Tech: wow that's new T3/r7/2022-03-12.txt.gz:{chan ch=tech}Etcha Sletch Tech: then i found ctrl r. now i'm wishing for a single keypress cause laziness :D T3/r7/2022-03-12.txt.gz:{chan ch=tech}Tech: Stuyvesant hugs IAC DO Fiendish. T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what if you turn on "Auto-repeat last command" under command settings? T3/r7/2022-03-12.txt.gz:{chan ch=tech}Stuyvesant Tech: auto repeat??? how? T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I super recommend it T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Game->Configure->Commands. there's a checkbox on the right T3/r7/2022-03-12.txt.gz:{chan ch=tech}Etcha Sletch Tech: does that send last command if you hit enter on blank line? T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: no, what it does is it keeps the command you typed on the input bar but highlighted. that way if you type something new it gets replaced but if you hit enter it gets sent again T3/r7/2022-03-12.txt.gz:{chan ch=tech}Etcha Sletch Tech: i don't want that. since i'm usually typing a chat message or something else and the ctrl+r feature lets me keep the input i'm working on T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I see T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: then you probably do want an accelerator after all, since macros can only send raw commands directly to the world and can't interpret client script actions T3/r7/2022-03-12.txt.gz:{chan ch=tech}Etcha Sletch Tech: hmm. ok. i'm at square 0 for designing plugins and scripts, so i may just live with the pinky-pointerfinger stretch T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: one sec. I can help T3/r7/2022-03-12.txt.gz:{chan ch=tech}Etcha Sletch Tech: i may combine that with the tip to disable f1 for help, i'll work on that right now T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what key do you want to assign for your crl+r ? T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: or combination if you just want a less reach yone T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: reachy one T3/r7/2022-03-12.txt.gz:{chan ch=tech}Etcha Sletch Tech: f4? T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ok T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: add this to your world script file or to a new plugin -> AcceleratorTo("F4", "DoCommand('RepeatLastCommand')", sendto.script) T3/r7/2022-03-12.txt.gz:{chan ch=tech}Etcha Sletch Tech: slightly out of my element but i will play with it- thank you for the assist :) T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: here, one sec... T3/r7/2022-03-12.txt.gz:{chan ch=tech}Etcha Sletch Tech: i can look into what it takes to write a simple plugin that loads it, may be a good 'baby's first plugin' T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: here, one sec... T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oops haha T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: save this in your plugins folder as like my_accelerators.xml or something https://pastebin.com/raw/c2RW38WZ T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: then File->Plugins and click Add and load the file T3/r7/2022-03-12.txt.gz:{chan ch=tech}Etcha Sletch Tech: excellent, thank you for the end product :) T3/r7/2022-03-12.txt.gz:{chan ch=tech}Etcha Sletch Tech: i was digging into the 'learn lua the hard way' tutorial after some diggin, i'll use this as a framework T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: there are a bunch of different layers to making scripts for mushclient. Lua is only one of them. Hmm...I should write something about this T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: MUSHclient loads all of its script configurations using XML templates. That's why Plugin files are all XML files and then if you use the copy/paste feature for triggers/timers/aliases in the settings you'll end up pasting a block of XML. XML comes with some weird quirks like choking on the < and > symbols (which is why you'll see sometimes > T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ugh T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: stupid semis T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: MUSHclient loads all of its script configurations using XML templates. That's why Plugin files are all XML files and then if you use the copy/paste feature for triggers/timers/aliases in the settings you'll end up pasting a block of XML. XML comes with some weird quirks like choking on the < and > symbols (which is why you'll see sometimes > or < inside a section. T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: gt being "greater than" and lt being "less than" T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but the thing avoids that problem T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: that's only there to tell the XML parser to not treat the stuff inside it as XML T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: anyway...then there's the whole layer where Lua is great but to do _MUSHclient_ stuff you need to go through all the MUSHclient function documentation which is entirely its own thing T3/r7/2022-03-12.txt.gz:{chan ch=tech}Stuyvesant Tech: am i the only who doesn't want to upgrade from windows 8.1? T3/r7/2022-03-12.txt.gz:{chan ch=tech}Fatal FrostBite Tech: Yes T3/r7/2022-03-12.txt.gz:{chan ch=tech}Stuyvesant Tech: is windows 10 and 11 good? T3/r7/2022-03-12.txt.gz:{chan ch=tech}Fatal FrostBite Tech: 8 was terrible, 8.1 was just ok. T3/r7/2022-03-12.txt.gz:{chan ch=tech}Mannec Tech: no. 10 is horrible. upgrade to xp. T3/r7/2022-03-12.txt.gz:{chan ch=tech}Mannec Tech: in a vm, on linux. T3/r7/2022-03-12.txt.gz:{chan ch=tech}Stuyvesant Tech: that's downgrading T3/r7/2022-03-12.txt.gz:{chan ch=tech}Fatal FrostBite Tech: 10 has its quirks... where updates ruin things... but it's not terrible. T3/r7/2022-03-12.txt.gz:{chan ch=tech}Mannec Tech: no, no it is not. T3/r7/2022-03-12.txt.gz:{chan ch=tech}Stuyvesant Tech: my laptop came with windows 10 and in less than a month it ruined itself T3/r7/2022-03-12.txt.gz:{chan ch=tech}Stuyvesant Tech: now i am wondering about 11 T3/r7/2022-03-12.txt.gz:{chan ch=tech}Fatal FrostBite Tech: dunno, not sure if I want to experience that... Anyone on 11 and <3/hate it? T3/r7/2022-03-12.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: I'm on 11 T3/r7/2022-03-12.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: It sucked at first but now it's more stable than 10 T3/r7/2022-03-12.txt.gz:{chan ch=tech}Stuyvesant Tech: my windows 10 was fine and then the next morning it couldn't boot up and i had to start from scratch T3/r7/2022-03-12.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: only real difference to the user is the start menu is a little different (better once you get used to it) T3/r7/2022-03-12.txt.gz:{chan ch=tech}Parian Melfiss Tech: never had a problem with 10 T3/r7/2022-03-12.txt.gz:{chan ch=tech}Mannec Tech: its been my experience that when someone else forces you to install new software without recourse - it causes at least as many problems as it solves. T3/r7/2022-03-12.txt.gz:{chan ch=tech}Stuyvesant Tech: windows 8.1 seems to be more stable for me T3/r7/2022-03-12.txt.gz:{chan ch=tech}Stuyvesant Tech: i am tempted to go for windows 11 T3/r7/2022-03-12.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: also if you do photography stay away from 11 T3/r7/2022-03-12.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: there's no image previews on folders yet T3/r7/2022-03-12.txt.gz:{chan ch=tech}Stuyvesant Tech: I watch movies,listen to music,read and type ....and aard. that's about it T3/r7/2022-03-12.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well, that's cool. I just successfully cut my time in half with uploading patient documents, thanks to Power Automate. All I need to do is save the file in a specific format, and it'll iterate through all the files and apply them to the appropriate patient. Win! T3/r7/2022-03-12.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: does anyone know of any publically available stat tracking scripts foe blowtorch? T3/r7/2022-03-12.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Not sure if Shindo has one, but he has a lot of Blowtorch stuff, and is probably the most versed in it. T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Every time I start up my Windows machine there are always 30 updates waiting to install. Like what the heck is changing so often. My macs update like once every few months. T3/r7/2022-03-12.txt.gz:{chan ch=tech}Heracles Tech: windows is just a dude, pretending to be another dude disguised as another dude. It's a lot going on. T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: - T3/r7/2022-03-12.txt.gz:{chan ch=tech}Odorless Nuanse Tech: hmm GMCP DECODE ERROR: util.lua:35: unexpected character character: 2 0:2 [-] T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: RIP T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: how's your wifi? T3/r7/2022-03-12.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: flakey signal? T3/r7/2022-03-13.txt.gz:{chan ch=tech}Stuyvesant Tech: hi T3/r7/2022-03-13.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hi T3/r7/2022-03-13.txt.gz:{chan ch=tech}Stuyvesant Tech: okay i am having this problem. it's not my connections i believe it's a plugin. when i log on my client can't send through commands. i have to restart my client multiple times before it actually starts working T3/r7/2022-03-13.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what plugin is it? T3/r7/2022-03-13.txt.gz:{chan ch=tech}Stuyvesant Tech: I have dinv,snd,sharptracker and consider T3/r7/2022-03-13.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what happens if you remove them one at a time? T3/r7/2022-03-13.txt.gz:{chan ch=tech}Stuyvesant Tech: i tried that but it's still the same T3/r7/2022-03-13.txt.gz:{chan ch=tech}Contigo Tech: what if you remove all T3/r7/2022-03-13.txt.gz:{chan ch=tech}Stuyvesant Tech: let me see... T3/r7/2022-03-13.txt.gz:{chan ch=tech}Dogwater Welding Tech: for the record i've had some issues with what i THINK is dinv sometimes causing me to time out and kills my mushclient connection (giving me 10040 error iirc), but its happened twice in the past 3 months and i dont know how to replicate it/if its even dinv causing it. if it happens again ill save logs T3/r7/2022-03-13.txt.gz:{chan ch=tech}Stuyvesant Tech: yeah, it's dinv T3/r7/2022-03-13.txt.gz:{chan ch=tech}Bullish Vyndalas Tech: Hey you tech savvy types! Quick question for you all. T3/r7/2022-03-13.txt.gz:{chan ch=tech}Bullish Vyndalas Tech: Is there a general consensus on which client is best to use with MAC/IOS that has a "similar" mapper as MUSHclient? T3/r7/2022-03-13.txt.gz:{chan ch=tech}Bullish Vyndalas Tech: Asking for a friend, we will call him... Kevin. T3/r7/2022-03-13.txt.gz:{chan ch=tech}Algaru Tech: i'm not sure of that, but does it work under wine? T3/r7/2022-03-13.txt.gz:{chan ch=tech}Quadrapus Tech: I think most people run Mush in wine? T3/r7/2022-03-13.txt.gz:{chan ch=tech}Bullish Vyndalas Tech: ahhh wine works on IOS just like in Linux? T3/r7/2022-03-13.txt.gz:{chan ch=tech}Bullish Vyndalas Tech: I've never used a mac in my life so no idea haha T3/r7/2022-03-13.txt.gz:{chan ch=tech}Algaru Tech: same... i just saw this here: https://gammon.com.au/forum/?id=12875 T3/r7/2022-03-13.txt.gz:{chan ch=tech}Quadrapus Tech: I think the apple phone options are pretty limited T3/r7/2022-03-13.txt.gz:{chan ch=tech}Quadrapus Tech: If that's what you're asking T3/r7/2022-03-13.txt.gz:{chan ch=tech}Bullish Vyndalas Tech: Nope that link Algaru sent should be perfect T3/r7/2022-03-13.txt.gz:{chan ch=tech}Bullish Vyndalas Tech: am trying to help out a newer player, found out they are on a MAC and using some crappy client that doesn't have any map whatsoever. T3/r7/2022-03-13.txt.gz:{chan ch=tech}Bid On Swaizo Tech: anyone have a link handy to mushclient and plugins? T3/r7/2022-03-13.txt.gz:{chan ch=tech}Amarufox Tech: finger fiendish T3/r7/2022-03-13.txt.gz:{chan ch=tech}Bid On Swaizo Tech: ty T3/r7/2022-03-13.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tech: Doge Water Yajan wildly high fives the air, looking very foolish -- very foolish indeed. T3/r7/2022-03-13.txt.gz:{chan ch=tech}Sleazy Areia Tech: Hey, I actually have a legit question! Any way to fake incoming gmcp data for testing? I guess not, but... T3/r7/2022-03-13.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yes T3/r7/2022-03-13.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but off the top of my head you'd need to alter or replace the gmcp handler plugin T3/r7/2022-03-13.txt.gz:{chan ch=tech}Kerith Tech: how the fuk do i remove an email address from windows association jezus christ T3/r7/2022-03-13.txt.gz:{chan ch=tech}Rakiso Tech: uninstall windows. problem solved T3/r7/2022-03-13.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tronic Tech: when I run the following command using an alias : 'run d T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tronic Tech: when I run the following command using an alias : 'run d;open w;w;get prism;e;open e;e;put prism opening' it tells me 'Invalid directions in command.' but when I enter it manually it executes no problem, any ideas anyone? T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: no semicolons for aliases T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: two* T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: dunno why i said no T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tronic Tech: pretty sure I thought of that and tried it before but I will try again T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: no a simple test first T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: do* T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: something in my psyche is wanting to say no to something ... T3/r7/2022-03-13.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: it a mush alias? T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tronic Tech: yeah a mush alias T3/r7/2022-03-13.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: if so instead of ; just put each command on a new line T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tronic Tech: I could do that I guess T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: try this 'run d;open w;w;get prism;e;open e;e;put prism opening' T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: lol T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: no dont try that T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tronic Tech: yeah I had that problem too on the channel lmao T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: try this 'run d; T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tronic Tech: well my test alias.. T3/r7/2022-03-13.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: I want some of what Hellion is one lol T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tronic Tech: run d; T3/r7/2022-03-13.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: on* T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: literally nothing lol idk whats wrong i even was writing try this and wrote try shit ... T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: and i thought is this is late developing dyslexia? T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: im gonna stop typing now lol T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: double semis should work when making your alias T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tronic Tech: well they didn't T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tronic Tech: in the test T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tronic Tech: I tried d then say test seperated by 2 semi colons and it returned Invalid directions in command. T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: how about this, you take a screenshot or clipart w.e using Win button + S then that clip is on ur clipboard go to imgur.com, do new post and paste ctrl +v T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: then put img link here T3/r7/2022-03-13.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: yeah it's kinda bad to put semi colons in aliases/trigger commands though cause then it has to go through a whole loop of parsing the command out and pushing it out in order instead of just interpreting \n as enter T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: works fine for me, i have so many semicolon'ed aliases T3/r7/2022-03-13.txt.gz:{chan ch=tech}Hellion Tech: alias in game not #alias in mushclient, idk how to do mushclient aliases T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tronic Tech: oh well I will just do what I normally do and seperate the commands with a new line, thanks any old how :) T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tech: Hellion / ok T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tronic Tech: yeah that works :P T3/r7/2022-03-13.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: if you want ; to work in an alias or trigger you have to change the drop down below the box from 'world' to 'execute' T3/r7/2022-03-13.txt.gz:{chan ch=tech}Snake God Szzilleriel Tech: that may break other things you try to do in future so remember the change. T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tavrin Tech: is there a good way to tell mushclient not to path through certain rooms? Angry drunks in masquerade are annoying. T3/r7/2022-03-13.txt.gz:{chan ch=tech}Algaru Tech: lockexit T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tavrin Tech: Ah, perfect, thanks! T3/r7/2022-03-13.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: is it normal for dinv to wear different things depending on whether I'm spelled up? T3/r7/2022-03-13.txt.gz:{chan ch=tech}Evl Tech: yup T3/r7/2022-03-13.txt.gz:{chan ch=tech}Odorless Nuanse Tech: yep T3/r7/2022-03-13.txt.gz:{chan ch=tech}Odorless Nuanse Tech: kinda effed up in that T3/r7/2022-03-13.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: The way DINV works is it takes a look at your current stats, then tries to pair you up with eq that will maximize things based on your priorities. It's why it is best to always spellup before doing DINV. It doesn't know what your stats are AFTER your spellup if you try it BEFORE your spellup, so if you have 300 str before spellup and str is your main priority, it'll try to maximize str first. On the otherhand, if it was 375 after spellup and your max was 380, it'd only find something with 5 str and then work down the priority. T3/r7/2022-03-13.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: weird T3/r7/2022-03-13.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I mean, neat, but finicky T3/r7/2022-03-13.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2022-03-14.txt.gz:{chan ch=tech}Khonshu Tech: https://youtu.be/Qt2GkwwypDw T3/r7/2022-03-14.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: anyone ever play around with Niantic's lightship SDK? T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: im getting this error using an alias, never seen it before: BUG: akey: duration - is nil for item 13 T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: anyone know what this means? T3/r7/2022-03-14.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: What is the full error message? I'm sure there is more around it than just that T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: no, its weird, i pops up in blue text when the alias is parsed by the mud, not when the command is sent T3/r7/2022-03-14.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: What is your alias trying to do? T3/r7/2022-03-14.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: What does the alias do? T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: it just sends 2 commands to world, cast zombify cast 'blast undead' T3/r7/2022-03-14.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Mind pastebinning the alias? T3/r7/2022-03-14.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: From the outside looking in, that looks like it's... workable. T3/r7/2022-03-14.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Also, does it happen every time you try the alias? T3/r7/2022-03-14.txt.gz:{chan ch=tech}Haike Tech: isnt it just normal spell queueing cast zombify;cast 'blast undead' T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: its worked fine until today: https://pastebin.com/Du1f3JXg T3/r7/2022-03-14.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Haike: That's kind of the problem, but need to look internally to see if there's something amiss in the alias itself. T3/r7/2022-03-14.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Was it a one-time thing, or has hit happened multiple times? T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: everytime, ill post a screenshot T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: https://imgur.com/a/s9ZMXZh T3/r7/2022-03-14.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: What is it that is doing the "Note: aggro'd additional enemy" T3/r7/2022-03-14.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: That plugin is probably where that BUG message comes from T3/r7/2022-03-14.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods at FrshPrncOf Kelaire. T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: its a trigger not a plugin T3/r7/2022-03-14.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I agree 100% with Kelaire. It's not your alias. Your alias is fine. It's the plugin/triggers that do the aggro'd message. T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: i disabled trigger and it still happens T3/r7/2022-03-14.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well, shut my mouth, then, if it still happens. :p T3/r7/2022-03-14.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Does it happen if you try casting zombify and blast undead manually (you can stack it on the command line) T3/r7/2022-03-14.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: (Also, open up triggers, do a search for 'akey'. If not found, open up aliases and search for 'akey') T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: uh, its like the game is throwing the error T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: i used an aard alias and it errors T3/r7/2022-03-14.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: That isn't the game throwing that, it could be mushclient itself, but I doubt that...or more likely probably a plugin T3/r7/2022-03-14.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Ah, using Aard alias still triggers it... Next step would be to disable extra plugins until the error stops. Or open up all the plugins you have and do a search for 'akey' T3/r7/2022-03-14.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That is the strangest problem I've ever seen so far. T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: ill restart mush after the double. it worked fine until today so i have no idea T3/r7/2022-03-14.txt.gz:{chan ch=tech}Summoner Yuna Tech: Occasionally, plugins and aliases will randomly clash against each other and malfunction. A restart of MUSH sometimes fixes the error. T3/r7/2022-03-14.txt.gz:{chan ch=tech}Selitos Tech: how would i go about logging info? like i setup a trigger to catch a phrase i record the item and room for example? I'm sure there are logging plugins that have do similar things is there an example to look at? T3/r7/2022-03-14.txt.gz:{chan ch=tech}Selitos Tech: or even what scription functions to look at?> T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: yeah kelaire was right, it's bast's spellup plugin T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: thinking it was a spellup or something and parsing the tags, or trying to T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: i dont understand why its worked until today though T3/r7/2022-03-14.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: I think bast allows you to add spells to what is managed with the manager T3/r7/2022-03-14.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: You possibly accidentally added it as a spellup spell T3/r7/2022-03-14.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: Been a while since I've used his though, so can't really point you at what to do :-) T3/r7/2022-03-14.txt.gz:{chan ch=tech}Gaballon Tech: yea ill need to poke around. i like his because it has a miniwindow so id like to keep using it T3/r7/2022-03-14.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Convince Hadar to add a miniwindow to his. ;) T3/r7/2022-03-14.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: But you can type 'bsp sremove zombify' to remove the spellup if it was added. T3/r7/2022-03-14.txt.gz:{chan ch=tech}Selitos Tech: anyone help with event logging/ T3/r7/2022-03-14.txt.gz:{chan ch=tech}Selitos Tech: ? T3/r7/2022-03-14.txt.gz:{chan ch=tech}Trachx Tech: what kind of event ? T3/r7/2022-03-14.txt.gz:{chan ch=tech}Selitos Tech: i have a trigger and i want to log what room it occurs in, i know how tyo grab the room from the GMCP but how do i log it? T3/r7/2022-03-14.txt.gz:{chan ch=tech}Selitos Tech: so i can go back a see what rooms are on the list? T3/r7/2022-03-14.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: you could write a mushclient variable, so you could issue an alias command to colournote it to your screen T3/r7/2022-03-14.txt.gz:{chan ch=tech}Trachx Tech: SetLogNotes(true); ColourNote("black","#F5F5DC", "anything"); SetLogNotes(false) T3/r7/2022-03-14.txt.gz:{chan ch=tech}Trachx Tech: if you want that info to be volatile then Kelaire's approach is better choice T3/r7/2022-03-14.txt.gz:{chan ch=tech}Selitos Tech: voltile? T3/r7/2022-03-14.txt.gz:{chan ch=tech}Selitos Tech: can can continue to append new info to a variable? T3/r7/2022-03-14.txt.gz:{chan ch=tech}Trachx Tech: volatile as "not persistent" T3/r7/2022-03-14.txt.gz:{chan ch=tech}Trachx Tech: there are also built-in variables in mush T3/r7/2022-03-14.txt.gz:{chan ch=tech}Selitos Tech: yes i'd like to log this infor for some time and keep it T3/r7/2022-03-14.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: Yeah- Trachx solution is probably better for a long term log - that you can view. T3/r7/2022-03-14.txt.gz:{chan ch=tech}Khonshu Tech: this is how abelinc got started T3/r7/2022-03-14.txt.gz:{chan ch=tech}Trachx Tech: so you can use myval = GetVariable("myVarName); Note(myval) T3/r7/2022-03-14.txt.gz:{chan ch=tech}Trachx Tech: and SetVariable("myVarName", valueOfVariable) T3/r7/2022-03-14.txt.gz:{chan ch=tech}Trachx Tech: you can examine global variables with shift+ctrl+7 T3/r7/2022-03-14.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: If you REALLY want to go high tech, you could create an SQLITE databse and use SQL in LUA T3/r7/2022-03-14.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: I'll see myself out for that suggestion... lol T3/r7/2022-03-14.txt.gz:{chan ch=tech}Selitos Tech: yeah that may be a bit too high tech for me T3/r7/2022-03-14.txt.gz:{chan ch=tech}Trachx Tech: SetLogNotes is convenient if you need context T3/r7/2022-03-14.txt.gz:{chan ch=tech}Selitos Tech: that just adds the stuff to my log? T3/r7/2022-03-14.txt.gz:{chan ch=tech}Trachx Tech: yes T3/r7/2022-03-14.txt.gz:{chan ch=tech}Selitos Tech: or i mean notes page in mush? T3/r7/2022-03-14.txt.gz:{chan ch=tech}Selitos Tech: i think i'v maybe done something similar with variables before maybe i will start there, can save it as a table i guess T3/r7/2022-03-14.txt.gz:{chan ch=tech}Selitos Tech: or array whatever T3/r7/2022-03-14.txt.gz:{chan ch=tech}Trachx Tech: what do you want to do? maybe you are just reinventing existing plugin T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tibano Tech: https://ibb.co/ZGdrV5W T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tibano Tech: i've just been shutting it off instead of solving the issue.. T3/r7/2022-03-15.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: maybe we can solve the issue instead T3/r7/2022-03-15.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ahhh I see T3/r7/2022-03-15.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: right-click on it and show the title bar. then you'll be able to drag it using that T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tibano Tech: heh T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tibano Tech: nice T3/r7/2022-03-15.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: after it's where you want you can hide the title bar again T3/r7/2022-03-15.txt.gz:{chan ch=tech}Veritheia Tech: Amazing, he figured it out so quickly T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tibano Tech: lol T3/r7/2022-03-15.txt.gz:{chan ch=tech}Doge Water Yajan Tech: he probably knows a thing or two about your mud client T3/r7/2022-03-15.txt.gz:{chan ch=tech}Veritheia Tech: about his* T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tech: Doge Water Yajan starts moaning. T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tibano Tech: alright fiendish how about this... T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tibano Tech: is there a way to center the ASCII map? T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tibano Tech: in it's window T3/r7/2022-03-15.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you mean you want to make it have a bunch of blank space on all sides? T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tibano Tech: or no black space T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tibano Tech: evenly... T3/r7/2022-03-15.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you can resize it to fill whatever space you want T3/r7/2022-03-15.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but no it won't center T3/r7/2022-03-15.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if I didn't think someone would complain about it I'd get rid of the resizing entirely T3/r7/2022-03-15.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: since it doesn't really serve a purpose T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tibano Tech: seems like extended walls works :P T3/r7/2022-03-15.txt.gz:{chan ch=tech}Veritheia Tech: I'd like to file a complaint about the ascii's useless resizing option. Why does it exist? T3/r7/2022-03-15.txt.gz:{chan ch=tech}Veritheia Tech: ascii map* T3/r7/2022-03-15.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: who knows T3/r7/2022-03-15.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'm sure there was a reason T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tibano Tech: i like the client T3/r7/2022-03-15.txt.gz:{chan ch=tech}Feihu Tech: as you havent hunt skill,the ascii's map are uesfull:) T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tibano Tech: hunt skill? T3/r7/2022-03-15.txt.gz:{chan ch=tech}Feihu Tech: yeah,on you look for the mobs then finished ur cp, T3/r7/2022-03-15.txt.gz:{chan ch=tech}Feihu Tech: at area flying citadel/nenukon/fortress,the assic's map very usefull:) T3/r7/2022-03-15.txt.gz:{chan ch=tech}Nueve Tech: i need a plugin for chrome to download a youtube video T3/r7/2022-03-15.txt.gz:{chan ch=tech}Nueve Tech: any ideas? the one i have placed a huge watermark over the video and have to pay premium to remove it T3/r7/2022-03-15.txt.gz:{chan ch=tech}Vanellus Tech: The only one works ongoing I found is a command line one called ytdownloader T3/r7/2022-03-15.txt.gz:{chan ch=tech}Summoner Yuna Tech: Is there any way to make the soundpack not echo when multiple mobs that have the same name as your CP/GQ mob or that are your Quest targets are in the same room? Not only does it echo the sound, it also amplifies the volumes so I can get deafened if 6+ of them are in the same room. T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tronic Tech: hmm, the "prompt all" command seems to be bugged when I try to reset my prompt : "Run-time error" "Plugin: Aardwolf_Prompt_Fixer (called from world: Aardwolf)" "Immediate execution" "[string "Trigger: "]:4: attempt to call global 'start_fixup' (a nil value)" "stack traceback:" " [string "Trigger: "]:4: in main chunk" T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tronic Tech: anyone else got this bug? T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tronic Tech: erm now I have no prompt and prompt all won't work T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tronic Tech: I get the output Prompt set to [%h/%Hhp %m/%Mmn %v/%Vmv %qqt %Xtnl] > without the error when triggers are disabled but there is no prompt T3/r7/2022-03-15.txt.gz:{chan ch=tech}Rakiso Tech: type prompt T3/r7/2022-03-15.txt.gz:{chan ch=tech}Heracles Tech: disable the plugin and do prompt all T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tronic Tech: typing prompt fixed it T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tech: Rakiso bows deeply. T3/r7/2022-03-15.txt.gz:{chan ch=tech}Vanellus Tech: WHat are the definitive links for people to get Crowley's S&D and to get DINV? T3/r7/2022-03-15.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: finger crowley for his link T3/r7/2022-03-15.txt.gz:{chan ch=tech}Heracles Tech: finger crowley and durel T3/r7/2022-03-15.txt.gz:{chan ch=tech}Vanellus Tech: ta T3/r7/2022-03-15.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: finger durel for his link T3/r7/2022-03-15.txt.gz:{chan ch=tech}Dixon Tech: there a quick syntax to delete a room from mapper? T3/r7/2022-03-15.txt.gz:{chan ch=tech}Tavrin Tech: "mapper purgeroom", I think. T3/r7/2022-03-15.txt.gz:{chan ch=tech}Dixon Tech: thanks <3 T3/r7/2022-03-15.txt.gz:{chan ch=tech}Ayasinda Tech: nod. Mapper purgeroom. See mapper help T3/r7/2022-03-15.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: anything using "start_fixup" is old. try updating the client to my latest release T3/r7/2022-03-15.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2022-03-16.txt.gz:{chan ch=tech}Pariah Kazul Tech: anyone know a good excel formula to add commas for text to column when pasting data from DINV search? T3/r7/2022-03-16.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Why do you need to add commas? T3/r7/2022-03-16.txt.gz:{chan ch=tech}Pariah Kazul Tech: it all gets pasted into one cell i want to deliminate T3/r7/2022-03-16.txt.gz:{chan ch=tech}Pariah Kazul Tech: cant just add after space cause the name has spaces T3/r7/2022-03-16.txt.gz:{chan ch=tech}Gaballon Tech: you can trim to remove all spaces except 1 in between values, then replace spaces with commas T3/r7/2022-03-16.txt.gz:{chan ch=tech}Gaballon Tech: that should work T3/r7/2022-03-16.txt.gz:{chan ch=tech}Pariah Kazul Tech: the issue is that the 'name of item' field is (polished) A cool helmet head 0 2 50 7 200 0 T3/r7/2022-03-16.txt.gz:{chan ch=tech}Pariah Kazul Tech: so the space is after ) a l t and d which is all gonna be in 1 column T3/r7/2022-03-16.txt.gz:{chan ch=tech}Anssett Tech: kazul, i just modified dinv to insert the commas :D T3/r7/2022-03-16.txt.gz:{chan ch=tech}Gaballon Tech: yah that's rough. why do u want it in excel anyways lol T3/r7/2022-03-16.txt.gz:{chan ch=tech}Pariah Kazul Tech: globally or is there a setting for that? T3/r7/2022-03-16.txt.gz:{chan ch=tech}Anssett Tech: i added a ',' to one of the output strings. i'd have to dig back into it to see where i put it in the plugin T3/r7/2022-03-16.txt.gz:{chan ch=tech}Anssett Tech: did it for dinv usage, i use that to find out what gear i can dump when my inventory fills :p T3/r7/2022-03-16.txt.gz:{chan ch=tech}Anssett Tech: apparently i also left myself a note to suggest it to durel to add it in as an option. and never did. should do that sometime :D T3/r7/2022-03-16.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley snickers with Anssett about their shared secret. T3/r7/2022-03-16.txt.gz:{chan ch=tech}EmilyBrewer Tech: Does anyone use mushclient on wine? I'm hitting some strange bugs that google is not helping with. Would appreciate some help! :) T3/r7/2022-03-16.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Send a note to Fiendish. He's your best bet if no one else. T3/r7/2022-03-16.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: Fiendish is your best bet there T3/r7/2022-03-16.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Fiendish uses MUSH on WINE. T3/r7/2022-03-16.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: Yeah, what Crow said. T3/r7/2022-03-16.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley called JINX before FrshPrncOf Kelaire. T3/r7/2022-03-16.txt.gz:{chan ch=tech}EmilyBrewer Tech: Okie, thanks! T3/r7/2022-03-17.txt.gz:{chan ch=tech}Kurdock Tech: does anyone happen to know how to reset a Mudlet profile? T3/r7/2022-03-17.txt.gz:{chan ch=tech}Stuyvesant Tech: is there away to select all unused stuff in dinve? T3/r7/2022-03-18.txt.gz:{chan ch=tech}Tavrin Tech: I just got the portal wish and dinv isn't recognizing that I have the portal equipment slot, anyone have advice on how to fix it? T3/r7/2022-03-18.txt.gz:{chan ch=tech}Ogreskull Tech: try dinv refresh all, or dinv build confirm if that doesn't work T3/r7/2022-03-18.txt.gz:{chan ch=tech}Tavrin Tech: Hrm, dinv refresh all and dinv build confirm didn't do anything. It's still unequipping and re-equipping my offhand and leaving whatever portal I used last in my portal slot. T3/r7/2022-03-18.txt.gz:{chan ch=tech}Pariah Kazul Tech: did you set portal use through dinv or have alias' setup? T3/r7/2022-03-18.txt.gz:{chan ch=tech}A Calm Stormwind Tech: Are you sure that isn't the best equipment based on your priorites have you re-run an analyze? T3/r7/2022-03-18.txt.gz:{chan ch=tech}Tavrin Tech: I have all my portals use dinv. T3/r7/2022-03-18.txt.gz:{chan ch=tech}High Risk Losteix Tech: pretty sure you have to forget all your portals and then refresh them if you get the portal wish. can't remember the command off the top of my head. T3/r7/2022-03-18.txt.gz:{chan ch=tech}Pariah Kazul Tech: mapper purge portals but.. T3/r7/2022-03-18.txt.gz:{chan ch=tech}Pariah Kazul Tech: your command should be mapper portal dinv portal use (portalid) right? T3/r7/2022-03-18.txt.gz:{chan ch=tech}High Risk Losteix Tech: no, not forgetting portals in mapper. "dinv forget type portal", i think. something like that. T3/r7/2022-03-18.txt.gz:{chan ch=tech}Tavrin Tech: Yup, that's the command I'm using. Only alias I use is for the hotel royale, which then pulls the portal out and unlocks the room door. T3/r7/2022-03-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Try dinv reload. T3/r7/2022-03-18.txt.gz:{chan ch=tech}High Risk Losteix Tech: then the refresh and rebuild T3/r7/2022-03-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I forget the steps for it, though. T3/r7/2022-03-18.txt.gz:{chan ch=tech}Tavrin Tech: dinv reload seems to have fixed it, thanks, Crowley. T3/r7/2022-03-18.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2022-03-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Has to reload to recognize the change. :) T3/r7/2022-03-18.txt.gz:{chan ch=tech}Tronic Tech: how can I display duel info in comm log in MUSH ? T3/r7/2022-03-18.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: can you edit a cexit you put into the mapper? T3/r7/2022-03-18.txt.gz:{chan ch=tech}Algaru Tech: yes, right click on the room with the cexit in the mini mapo T3/r7/2022-03-18.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: that allows you edit where it goes but not the commands you put in right? T3/r7/2022-03-18.txt.gz:{chan ch=tech}Algaru Tech: "Change custom exit command" T3/r7/2022-03-18.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: I can only change exit and change exit level lock when i right click T3/r7/2022-03-18.txt.gz:{chan ch=tech}Algaru Tech: well that's weird T3/r7/2022-03-18.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: do I need to update? is there a command for that? T3/r7/2022-03-18.txt.gz:{chan ch=tech}Algaru Tech: maybe... i'm not sure though T3/r7/2022-03-18.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: what is the command to make the mapper tell you the name of the room you are in? T3/r7/2022-03-18.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: not name, number T3/r7/2022-03-18.txt.gz:{chan ch=tech}Algaru Tech: mapper thisroom T3/r7/2022-03-18.txt.gz:{chan ch=tech}Tavrin Tech: is there a way to make dinv prefer my helm of true seeing until a certain level? T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: has anyone had any luck migrating zfs pools from fbsd to debian? T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: my nas has 16tb in a zfs pool. I want to just reimage it with Debian T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: when I did something like that, I copied off to another storage device (icy dock in raid 1), converted system, and copied back T3/r7/2022-03-19.txt.gz:{chan ch=tech}Tech: 404 Eroe nods. T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: I don't really have 16tb spare laying around :p T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: fairly cheap now if you don't mind slow disk, I liked having kinda an "offsite" backup of my nas T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: already put some $$ into a nice setup like that, hehe T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: I'd really super hafta trust any conversion process T3/r7/2022-03-19.txt.gz:{chan ch=tech}Tech: 404 Eroe nods. T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: I might. I have a 4u box I could stick all the drives in if I bought 4x4tb. My switch even has sfp ports to make the transfer faster. T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: I've also been thinking about upgrading for 64tb so I might just make that jump. T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: sweet! that's a fancier setup than I've got T3/r7/2022-03-19.txt.gz:{chan ch=tech}Trachx Tech: I think you just need make sure that Debian supports that version of zfs T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: not sure if I can afford that cash right now though. I need to upgrade my mac, and likely replace my router since it doesn't seem to be able to handle the two switches I've got connected. T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: nogs, and doesn't touch it during install/etc. T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: I converted my zfs to just raid 10 T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: yeah. what I could do is mirror some of this to th e4u drives, install debian on the 4u and see how that goes T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: lots of memory available for other stuff on system now so another partial lab machine :) T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: I don't have a good raid card in this nas to make raid 10 work. T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: that sounds pretty cool T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: otherwise I'd just go for that T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: I just did software raid, don't need much for performance from my NAS T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: seems to do pretty well for the 1 Gbps switch connectivity anyways, I guess T3/r7/2022-03-19.txt.gz:{chan ch=tech}Tech: 404 Eroe nods. T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: probably not an issue, I put it under pretty heavy load when I'm storing bounces and pulling stems for audio work though which is my only concern. those are big bulk transfers. T3/r7/2022-03-19.txt.gz:{chan ch=tech}Trachx Tech: usually main diff software vs hardware is that with hardware you just replace drive in case of drive failure T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: is that onboard or does linux give you raid10 through llvm? T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: I spent the last few years in fbsd land and am just now transitioning back to Linux. T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: raid 10 through lvm, nods T3/r7/2022-03-19.txt.gz:{chan ch=tech}Not an Imm Erikson Tech: Dunno why you'd move off zfs anyway :p T3/r7/2022-03-19.txt.gz:{chan ch=tech}Trachx Tech: unless you have RAID controller with cache and battery backup, that is another story T3/r7/2022-03-19.txt.gz:{chan ch=tech}Tech: 404 Eroe nods at Amarufox. T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: I liked zfs a lot, but it's so niche and raid 10 with offsite backup more than meets my resiliency needs T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: and so much simpler :P T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: I love zfs. if I can use it on the linux side it's going to make the transition less painful. T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: I'm not enough into the bsd world T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: it was the only reason I stuck with bsd so long. T3/r7/2022-03-19.txt.gz:{chan ch=tech}Not an Imm Erikson Tech: I don't understand the issue with "stuck with bsd" :p T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: from which side? T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: not necessarily stuck, but I trust bsd the most for dealing with zfs :P T3/r7/2022-03-19.txt.gz:{chan ch=tech}Not an Imm Erikson Tech: But it probably just takes a little fiddling to get a system with ZoL running, if you really need to regress to some inferior OS... T3/r7/2022-03-19.txt.gz:{chan ch=tech}Amarufox Tech: I'm getting too old to hafta keep up with so many operating systems! T3/r7/2022-03-19.txt.gz:{chan ch=tech}Iron Duck Chuft Tech: it's time to make erikson mud on windows.. T3/r7/2022-03-19.txt.gz:{chan ch=tech}Not an Imm Erikson Tech: Last I looked, Arch had somewhat commonly-used instructions for running root on ZFS, so a non-root pool should be trivial. T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: oh yeah. I just kept forgetting Linux had zfs and not wanting to make this jump. but I'm staring at a 12.1 fbsd box that really needs updating and I don't want to go through bsd's stupid update process again so it's getting more pressing. T3/r7/2022-03-19.txt.gz:{chan ch=tech}Not an Imm Erikson Tech: Eh, 12.1 -> 12.2 jump via freebsd-update should be trivial. T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: it is. the problem is that I have a lot of packages I had to build from sources because I needed specific things, so that means spinning up the build system to rebuild tons of packages since you're not supposed to mix pkg with built packages. T3/r7/2022-03-19.txt.gz:{chan ch=tech}Not an Imm Erikson Tech: I believe it's 13.x that transitioned to the ZoL codebase for upstream, so the features on a 12.x pool should be easy to move if you had to T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: well, pkg repos like the fbsd one anyway T3/r7/2022-03-19.txt.gz:{chan ch=tech}Not an Imm Erikson Tech: Well, that's what you've got poudriere there for :p T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: and nods T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: yeah. that's what I used. it just grew kind of painful. like, "I want this thing on my nas real quick..." gotta poudriere it. T3/r7/2022-03-19.txt.gz:{chan ch=tech}404 Eroe Tech: usually a quick process until a package needs to update clang or osmething, then you're in for a multiple-hour rebuild. T3/r7/2022-03-19.txt.gz:{chan ch=tech}Derevo Tech: anyone familiar with mushclient aliases? need your help, i'm doing this: https://imgur.com/a/4f5LT90 and it doesnt work T3/r7/2022-03-19.txt.gz:{chan ch=tech}Tavrin Tech: I think you want your alias to be "lport *" or "^lport (.+)$" T3/r7/2022-03-19.txt.gz:{chan ch=tech}Derevo Tech: hmm but how to get that %1 after that T3/r7/2022-03-19.txt.gz:{chan ch=tech}Derevo Tech: nvm T3/r7/2022-03-19.txt.gz:{chan ch=tech}Tech: Derevo thanks Tavrin heartily. T3/r7/2022-03-19.txt.gz:{chan ch=tech}Derevo Tech: all i need now is to map all my portals... T3/r7/2022-03-19.txt.gz:{chan ch=tech}Negader Tech: anyone have done a VM that can access USB port? T3/r7/2022-03-19.txt.gz:{chan ch=tech}Dhalsim Tech: on Virtualbox, yes T3/r7/2022-03-19.txt.gz:{chan ch=tech}Derevo Tech: how to remove things like 'mobprog says' from communication log window minichat? T3/r7/2022-03-19.txt.gz:{chan ch=tech}Ayasinda Tech: rightclick commlog. Click echo custom list. Look for Mobsay T3/r7/2022-03-19.txt.gz:{chan ch=tech}Derevo Tech: ahhh rightclick -inside- commlog, ty T3/r7/2022-03-19.txt.gz:{chan ch=tech}Veritheia Tech: Anyone get a dbot.storage.saveTable error in dinv when hitting the mushclient save button? T3/r7/2022-03-19.txt.gz:{chan ch=tech}Veritheia Tech: somehow dinv is able to back up fine but if i hit the manual save button, it gives a file cannot be found error. verys trange T3/r7/2022-03-19.txt.gz:{chan ch=tech}Veritheia Tech: but the latest save state is from today so i know it's able to save SOMEhow. i would think it's using the same save functions so it's very odd to me T3/r7/2022-03-19.txt.gz:{chan ch=tech}The Muze Delight Tech: does anybody know how to get this stuff to go away: {affon}614,1200 {affoff}104 T3/r7/2022-03-19.txt.gz:{chan ch=tech}Evl Tech: i get stuff like that when i disable triggers... T3/r7/2022-03-19.txt.gz:{chan ch=tech}MadChemist Phillip Tech: I think those are tags. type tags to see what you can toggle T3/r7/2022-03-19.txt.gz:{chan ch=tech}Selitos Tech: its setting for the mushclient but i foget how to toggle them on/off T3/r7/2022-03-20.txt.gz:{chan ch=tech}KnightLord Throxx Tech: i dint know what it is about mush not remembering norecall, no portal rooms. seems liek every 3 months, it forgets them all T3/r7/2022-03-20.txt.gz:{chan ch=tech}Blackweb Tech: that info is stored in aarwolfdb, could you have replaced your old db with a dif one? T3/r7/2022-03-20.txt.gz:{chan ch=tech}KnightLord Throxx Tech: not repeadedly over several years, no T3/r7/2022-03-21.txt.gz:{chan ch=tech}Evl Tech: is it wrong to hate durel just a little? T3/r7/2022-03-22.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2022-03-22.txt.gz:{chan ch=tech}Tronic Tech: anyone can tell me why room id 14965 in flying citadel has both north and east as room id 14968 (huge hellhound) T3/r7/2022-03-22.txt.gz:{chan ch=tech}Tronic Tech: can anyone * ? T3/r7/2022-03-22.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well, it doesn't, but it's a maze room. T3/r7/2022-03-22.txt.gz:{chan ch=tech}Tronic Tech: ID: 14965, "e"="14968", "n"="14968" T3/r7/2022-03-22.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Not sure how you managed that in a maze room. :p T3/r7/2022-03-22.txt.gz:{chan ch=tech}Tronic Tech: clearing the exits wont work T3/r7/2022-03-22.txt.gz:{chan ch=tech}Tronic Tech: okay this room is messed up, the reason I have 14968 for north east and now west is beacuse I made custom exits BUT, I cannot clear them with the mapper purgeroom command T3/r7/2022-03-22.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I would expect deleting the room to clear the exits as well T3/r7/2022-03-22.txt.gz:{chan ch=tech}Tronic Tech: how do I do that? T3/r7/2022-03-22.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: What error do you get when you type mapper purgeroom? T3/r7/2022-03-22.txt.gz:{chan ch=tech}Tronic Tech: no error, but Fiendish is here T3/r7/2022-03-22.txt.gz:{chan ch=tech}Gaballon Tech: the out of the box mapper database of aylor has a bad exit down from phoenix square T3/r7/2022-03-22.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Or is it just reminiscent of days gone by? T3/r7/2022-03-22.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: does it get fixed if you walk through the room again? T3/r7/2022-03-22.txt.gz:{chan ch=tech}Gaballon Tech: it doesnt get fixed. so it causes issues for newer users T3/r7/2022-03-22.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: send me a note about it please T3/r7/2022-03-22.txt.gz:{chan ch=tech}Gaballon Tech: it must be an old clanhall or something T3/r7/2022-03-22.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Fiendish: On a related note: mapper showroom 32692 - that room no longer exists. T3/r7/2022-03-22.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Or maybe it does, just in an alternate dimension. T3/r7/2022-03-22.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Oh wait, I'm wrong, possibly. I haven't had to go to that room forever, but isn't that the room you go to when you die? T3/r7/2022-03-22.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: (Aylorian Adventurer's Clinic, that is) T3/r7/2022-03-22.txt.gz:{chan ch=tech}Tech: IAC DO Fiendish shrugs helplessly. T3/r7/2022-03-22.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Does no harm, at any rate, but I'm sure I was mistaken in that it doesn't exist. It's the morgue room for unclanned. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Suiga Tech: why do i keep getting... Timeout. Failed to obtain consider output. .... from aeria's bs script or whoever T3/r7/2022-03-23.txt.gz:{chan ch=tech}Suiga Tech: its not functioning right since im not on my other char. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Suiga Tech: now i get this Character's state does not allow kill. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Stuyvesant Tech: my dinv plugin stopped working:( T3/r7/2022-03-23.txt.gz:{chan ch=tech}Anssett Tech: stopped working how T3/r7/2022-03-23.txt.gz:{chan ch=tech}Stuyvesant Tech: it doesn't want to build my set T3/r7/2022-03-23.txt.gz:{chan ch=tech}Anssett Tech: is it giving an error? stomping on your toes? T3/r7/2022-03-23.txt.gz:{chan ch=tech}Anssett Tech: has it ever done what you wanted or is this a new install/setup T3/r7/2022-03-23.txt.gz:{chan ch=tech}Stuyvesant Tech: gave me an error while trying to change eq,so i restored a backup and it wore the eq. now I am trying to get it to refresh or build but it starts the scan,disables prompts but doesn't check my eq T3/r7/2022-03-23.txt.gz:{chan ch=tech}Anssett Tech: dinv refresh all maybe T3/r7/2022-03-23.txt.gz:{chan ch=tech}Anssett Tech: or uh T3/r7/2022-03-23.txt.gz:{chan ch=tech}Anssett Tech: maybe a reset or a rebuild or something aggressive T3/r7/2022-03-23.txt.gz:{chan ch=tech}Odorless Nuanse Tech: dinv reload T3/r7/2022-03-23.txt.gz:{chan ch=tech}Stuyvesant Tech: wait... it's doing the building but i am not seeing the process T3/r7/2022-03-23.txt.gz:{chan ch=tech}Make it Reyn Tech: "dinv help notify" may be what you're looking for T3/r7/2022-03-23.txt.gz:{chan ch=tech}Tech: Stuyvesant thanks Make it Reyn heartily. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Tech: Stuyvesant wipes his brow with obvious relief. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Evl Tech: hmm so anyone if with snd - when you kill a mob it records the location right, does it only do that if you find it after using xcp/nx? like if i see the mob west, but nx goes east, so i go back and kill it, will i see that location as a higher percent next time? or does it ignore it because i've strayed from the path? T3/r7/2022-03-23.txt.gz:{chan ch=tech}Evl Tech: i'd look at the code, but that just seems like something that will keep me up past an appropriate bed time T3/r7/2022-03-23.txt.gz:{chan ch=tech}Stuyvesant Tech: i think it records after xcp/nx T3/r7/2022-03-23.txt.gz:{chan ch=tech}Anssett Tech: i don't know the specific answer, but which snd are you using? T3/r7/2022-03-23.txt.gz:{chan ch=tech}Evl Tech: it *fee T3/r7/2022-03-23.txt.gz:{chan ch=tech}Stuyvesant Tech: because i have manually run to mobs and it never recorded T3/r7/2022-03-23.txt.gz:{chan ch=tech}Evl Tech: it *feels* that way T3/r7/2022-03-23.txt.gz:{chan ch=tech}Anssett Tech: i believe crowley's and pwar's are somewhat different in that regard T3/r7/2022-03-23.txt.gz:{chan ch=tech}Evl Tech: crowleys T3/r7/2022-03-23.txt.gz:{chan ch=tech}Stuyvesant Tech: I am using the crowley's too T3/r7/2022-03-23.txt.gz:{chan ch=tech}Anssett Tech: then i'll just defer to him :D T3/r7/2022-03-23.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It only records it after cp/quest kill. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Tech: Evl pokes (Aleister) Crowley in the ribs. T3/r7/2022-03-23.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: And it records it in the room it was killed. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley is at work! T3/r7/2022-03-23.txt.gz:{chan ch=tech}Evl Tech: ah ok so i can freely move and kill stuff awesome :) T3/r7/2022-03-23.txt.gz:{chan ch=tech}Evl Tech: thanks :) T3/r7/2022-03-23.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2022-03-23.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: how do yall answer job application questions about software platforms you've never used, but figure you can learn quickly? T3/r7/2022-03-23.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: Just like that T3/r7/2022-03-23.txt.gz:{chan ch=tech}Not an Imm Erikson Tech: "Wow, you're still using that?" T3/r7/2022-03-23.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: I mean how complicated could Salesforce actually be? T3/r7/2022-03-23.txt.gz:{chan ch=tech}Epsilon Tech: I'd say to mention similar software that you've used too. T3/r7/2022-03-23.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: "I have not used xxx, but have used yyy which is a very similar software package, and could quickly pick up xxx based on my experience with yyy" T3/r7/2022-03-23.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: I like positions that say proficient in Word T3/r7/2022-03-23.txt.gz:{chan ch=tech}Hi, I'm Elfo Tech: i like positions too! :) T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: getting a lot of latency on my wireless keyboard. is it possible i'm connected via some bad bluetooth connection instead of via the dongle and this is screwing me T3/r7/2022-03-23.txt.gz:{chan ch=tech}Dixon Tech: batteries? T3/r7/2022-03-23.txt.gz:{chan ch=tech}Quadrapus Tech: i have the same with bluetooth keyboards T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: i dunno my mouse is being weird too so would be strange that both batteres failing at same time, although possible T3/r7/2022-03-23.txt.gz:{chan ch=tech}Quadrapus Tech: they suck T3/r7/2022-03-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I use a bluetooth keyboard and it's great T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: mine used to be great T3/r7/2022-03-23.txt.gz:{chan ch=tech}Dixon Tech: wifi can interfere T3/r7/2022-03-23.txt.gz:{chan ch=tech}404 Eroe Tech: could just be wireless interfearance. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Dixon Tech: as well as speakers T3/r7/2022-03-23.txt.gz:{chan ch=tech}Quadrapus Tech: Hmm... T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: make wireless keyboards great again T3/r7/2022-03-23.txt.gz:{chan ch=tech}404 Eroe Tech: wifi, other devices, etc. those bands are pretty saturated in denser areas. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: I want to buy a wireless keyboard, any recommendations? T3/r7/2022-03-23.txt.gz:{chan ch=tech}404 Eroe Tech: yeah. buy a wired one T3/r7/2022-03-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I have one of the Apple magic keyboards with numeric keypad and it's great T3/r7/2022-03-23.txt.gz:{chan ch=tech}Amarufox Tech: I've had good luck with the logitech mx keys T3/r7/2022-03-23.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: I was looking at the logitech mx, do the keys feel nice? T3/r7/2022-03-23.txt.gz:{chan ch=tech}Amarufox Tech: not so clicky, simple but decent lighting, rechargable battery lasts a long time T3/r7/2022-03-23.txt.gz:{chan ch=tech}404 Eroe Tech: wireless ones are great when they work but when they stop it's annoying. bluetooth does work a lot better generally. I can get behind what Amarufox and Fiendish both said. T3/r7/2022-03-23.txt.gz:{chan ch=tech}404 Eroe Tech: yeah, i like typing on the mx. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Amarufox Tech: yeah, closer to laptop feel than mechanical clicky T3/r7/2022-03-23.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: thanks guys T3/r7/2022-03-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: clicky mechanical keyboards are awful. give me low travel keys any day. T3/r7/2022-03-23.txt.gz:{chan ch=tech}404 Eroe Tech: I love my clickey keys! T3/r7/2022-03-23.txt.gz:{chan ch=tech}Epsilon Tech: Get a unicomp buckling spring keyboard. :V T3/r7/2022-03-23.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: my wired keyboard is a mechanical one, worried I'm gonna miss it T3/r7/2022-03-23.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: it is very noisy tho T3/r7/2022-03-23.txt.gz:{chan ch=tech}Amarufox Tech: I prefer the low travel for work stuff, but I do use an old mechanical-esque logitech g910 for aard T3/r7/2022-03-23.txt.gz:{chan ch=tech}404 Eroe Tech: I need to press less hard so the travel isn't as much of an issue, and by the time I hit the bottom it doesn't feel like I"m thumping the floor. T3/r7/2022-03-23.txt.gz:{chan ch=tech}404 Eroe Tech: I'd love one of the buckle keyboards. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Epsilon Tech: They're nice, but they're definitely not for the weak of finger. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Epsilon Tech: I pound the crap out of my keyboard, so I use stuff like buckling spring and MX Green switches on the main keyboard keys. T3/r7/2022-03-23.txt.gz:{chan ch=tech}404 Eroe Tech: that's not a problem I tend to have after getting into guitar. it makes you toughen up T3/r7/2022-03-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you could try not doing that though T3/r7/2022-03-23.txt.gz:{chan ch=tech}Epsilon Tech: Definitely not for everyone though - most people who try my keyboard hates it. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Sivak Tech: I have lights in my logitech T3/r7/2022-03-23.txt.gz:{chan ch=tech}Amarufox Tech: nogs, lotta tastes but I figure I should go gentle on my fingers nowadays, not getting any younger T3/r7/2022-03-23.txt.gz:{chan ch=tech}Iron Duck Chuft Tech: foxy is an ancient relic T3/r7/2022-03-23.txt.gz:{chan ch=tech}Tech: Amarufox crosses his arms and nods slowly and sagely. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Epsilon Tech: golly gosh a bunch of old people playing muds i am shocked :V T3/r7/2022-03-23.txt.gz:{chan ch=tech}Iron Duck Chuft Tech: still,marginally less fossilised than erikson T3/r7/2022-03-23.txt.gz:{chan ch=tech}Epsilon Tech: (and I say this as old people myself ;p) T3/r7/2022-03-23.txt.gz:{chan ch=tech}Tech: Amarufox flashes a mischievous grin at Epsilon. Hmm. is it time to run and hide? T3/r7/2022-03-23.txt.gz:{chan ch=tech}Not an Imm Erikson Tech: I'm not fossilized, they haven't invented rocks yet... T3/r7/2022-03-23.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: so weird when I remember I started playing MUDs more years ago than people I interact with on Discord have been ALIVE T3/r7/2022-03-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: people who like high travel buckling spring keys always think it's normal to pound their keys into the earth's magma layer T3/r7/2022-03-23.txt.gz:{chan ch=tech}Antifa Raded Tech: mushambo. that's sus. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Antifa Raded Tech: stop talking to children on the internet T3/r7/2022-03-23.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: they're hoarding all the Elden Ring tips T3/r7/2022-03-23.txt.gz:{chan ch=tech}Epsilon Tech: To be fair, I never said it was normal. :V T3/r7/2022-03-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: just be less tense, gently throw your fingers around, don't hammer them T3/r7/2022-03-23.txt.gz:{chan ch=tech}Antifa Raded Tech: virgin cherry mx green users vs chad cherry mx silent red users T3/r7/2022-03-23.txt.gz:{chan ch=tech}Epsilon Tech: And I mean, I've got co-workers who were born after I started playing MUDs in general, and Aardwolf was the first one I ever played. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Epsilon Tech: So yeah, 25 years? T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: i think it may be windows 11 issue T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: sounds like logitech receiver dongle doesn't work with windows 11. lovely. so i have to use shitty bluetooth connection which is causing me latency T3/r7/2022-03-23.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Are you talking about the unifying receiver? I use it without issues. T3/r7/2022-03-23.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: On Windows 11. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: wtf really T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: i just read a buncha articles on the logitech site ppl complaining it doesn't work on their win 11 T3/r7/2022-03-23.txt.gz:{chan ch=tech}Ogreskull Tech: same T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: and mine isn't autodetecting T3/r7/2022-03-23.txt.gz:{chan ch=tech}Ogreskull Tech: same, it works without issue for me T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: khaaaaan T3/r7/2022-03-23.txt.gz:{chan ch=tech}Quadrapus Tech: ahhh good to know T3/r7/2022-03-23.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Hold on, let me pull up how I got it to work. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: hilarious the length of aard conversation/help seeking im willing to do before picking up the phone to call an it guy T3/r7/2022-03-23.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: https://support.logi.com/hc/en-us/articles/360025141274 -- Try that software to detect it. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Quadrapus Tech: IT guy just gonna log onto aardwolf and ask here themselves, cut out the middleman T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: indeed T3/r7/2022-03-23.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: rofl T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: wait setpoint is that unifying T3/r7/2022-03-23.txt.gz:{chan ch=tech}Antifa Raded Tech: call the geek squad T3/r7/2022-03-23.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Torkin: It's what I read somewhere (can't find the link now) to do if unifying receiver didn't detect it. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: hoo boy ok T3/r7/2022-03-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: bluetooth keyboards should basically never have more than like 20ms added latency in bluetooth mode T3/r7/2022-03-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you also shouldn't use windows 11 T3/r7/2022-03-23.txt.gz:{chan ch=tech}Tech: 404 Eroe looks like he'll agree to just about anything right now. Hmmm... T3/r7/2022-03-23.txt.gz:{chan ch=tech}Iron Duck Chuft Tech: why not? T3/r7/2022-03-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: evertyhing is optimized for windows 10 T3/r7/2022-03-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: windows 11 does inane things like put ads in the file explorer T3/r7/2022-03-23.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: they're on windows 11? time flies :-( T3/r7/2022-03-23.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Yes, but those ads were not supposed to be released to the public (yet). So incredibly stupid. I use Nexus file explorer, though. T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: operation remove latency solved by installing the old unifying software...thx guys T3/r7/2022-03-23.txt.gz:{chan ch=tech}Torkin Tech: basic bluetooth connection was garbage without the dongle T3/r7/2022-03-23.txt.gz:{chan ch=tech}Antifa Raded Tech: I need Excel help, I'm very dumb T3/r7/2022-03-23.txt.gz:{chan ch=tech}Antifa Raded Tech: if A2 and C2 are numbers, why isn't this formula working: =IF(A2=C2,yes,no) T3/r7/2022-03-23.txt.gz:{chan ch=tech}Aliera Tech: do you need quotation marks around yes and no? T3/r7/2022-03-23.txt.gz:{chan ch=tech}Antifa Raded Tech: that was it, thank you T3/r7/2022-03-23.txt.gz:{chan ch=tech}Antifa Raded Tech: I knew it was easy and I was dumb T3/r7/2022-03-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: confirmed T3/r7/2022-03-23.txt.gz:{chan ch=tech}Tech: IAC DO Fiendish grabs Antifa Raded in a head lock and NOOGIES him... ARGH!!! T3/r7/2022-03-23.txt.gz:{chan ch=tech}Aliera Tech: sweet! I am also dumb with Excel T3/r7/2022-03-23.txt.gz:{chan ch=tech}Antifa Raded Tech: now I need someone to combine these like 4 spreadsheets for me T3/r7/2022-03-23.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: anyone know if there is a way to make the mapper tell you how many rooms it had mapped in an area? T3/r7/2022-03-23.txt.gz:{chan ch=tech}Ogreskull Tech: mapper area % T3/r7/2022-03-23.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: nice, thanks! T3/r7/2022-03-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2022-03-24.txt.gz:{chan ch=tech}Gaballon Tech: Fiendish: if i delete the click/drag to move hotspot to T3/r7/2022-03-24.txt.gz:{chan ch=tech}Gaballon Tech: lock my window. whats best way to get it back, recreate the window? T3/r7/2022-03-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I guess. Or recreate it? T3/r7/2022-03-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: didn't want to just lock the layout? T3/r7/2022-03-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: 'aard layout lock' disables movewindow globally T3/r7/2022-03-24.txt.gz:{chan ch=tech}Gaballon Tech: yea but what if i just want to lock my window T3/r7/2022-03-24.txt.gz:{chan ch=tech}Gaballon Tech: i guess re-creating window is easiest to make moveable again T3/r7/2022-03-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: right. I think probably you could add a button that rebuilds the window T3/r7/2022-03-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: btw, I think you're making a very neat project and I hope it works T3/r7/2022-03-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: keep letting me know when you hit roadblocks T3/r7/2022-03-24.txt.gz:{chan ch=tech}Gaballon Tech: ok i will. its been fun to work on T3/r7/2022-03-24.txt.gz:{chan ch=tech}Epsilon Tech: Okay, as recommended, asking this here: Is there a way to get rid of the background image on the AardMUSH client? I've tried changing the .lua file for the theme, and I've tried overwriting the various background images with black text. T3/r7/2022-03-24.txt.gz:{chan ch=tech}Epsilon Tech: Haven't checked for it caching something yet, but any other suggestions? T3/r7/2022-03-24.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: what's wrong with the image? T3/r7/2022-03-24.txt.gz:{chan ch=tech}Epsilon Tech: It's visually distracting to me. T3/r7/2022-03-24.txt.gz:{chan ch=tech}Guinness Tech: the answer is in here somewhere: https://github.com/fiendish/aardwolfclientpackage/wiki/FAQ T3/r7/2022-03-24.txt.gz:{chan ch=tech}Guinness Tech: if you look under how do i remove or change the aardwolf logo background T3/r7/2022-03-24.txt.gz:{chan ch=tech}Epsilon Tech: Sonuva- I looked at that, but missed that line. T3/r7/2022-03-24.txt.gz:{chan ch=tech}Epsilon Tech: Looks like I was on the right track at least, just replacing the wrong file. Thanks. >_< T3/r7/2022-03-24.txt.gz:{chan ch=tech}Guinness Tech: huzzah! T3/r7/2022-03-24.txt.gz:{chan ch=tech}Spellup Roninleader Tech: umm, mush is doing something call trace? how do I stop it? T3/r7/2022-03-24.txt.gz:{chan ch=tech}Spellup Roninleader Tech: most annoynig this in the universe T3/r7/2022-03-24.txt.gz:{chan ch=tech}Hi, I'm Elfo Tech: cool maybe its ai and its ahcking your ip? :) T3/r7/2022-03-24.txt.gz:{chan ch=tech}Spellup Roninleader Tech: ok seriously how do I stop this?!?!?! T3/r7/2022-03-24.txt.gz:{chan ch=tech}Hi, I'm Elfo Tech: i have no idea sorry :( T3/r7/2022-03-24.txt.gz:{chan ch=tech}Negader Tech: '\\\SetTrace (false)' T3/r7/2022-03-24.txt.gz:{chan ch=tech}Spellup Roninleader Tech: ok quitting didnt stop it T3/r7/2022-03-24.txt.gz:{chan ch=tech}Hi, I'm Elfo Tech: oh negader to teh rescue! T3/r7/2022-03-24.txt.gz:{chan ch=tech}Hi, I'm Elfo Tech: gah the T3/r7/2022-03-24.txt.gz:{chan ch=tech}Spellup Roninleader Tech: ok, I can breathe now T3/r7/2022-03-24.txt.gz:{chan ch=tech}Spellup Roninleader Tech: what was that, Negader? T3/r7/2022-03-24.txt.gz:{chan ch=tech}Negader Tech: i don't know i googled. T3/r7/2022-03-24.txt.gz:{chan ch=tech}Negader Tech: can read more about it here: https://www.gammon.com.au/scripts/function.php?name=Trace T3/r7/2022-03-24.txt.gz:{chan ch=tech}Spellup Roninleader Tech: I think I got about 3000 lines of blue text T3/r7/2022-03-24.txt.gz:{chan ch=tech}Negader Tech: doesn't say much about it. T3/r7/2022-03-24.txt.gz:{chan ch=tech}Spellup Roninleader Tech: it was just fired timer, executed timer crap and even quitting and relogging wasnt stopping it T3/r7/2022-03-24.txt.gz:{chan ch=tech}Spellup Roninleader Tech: my mush was possessed. T3/r7/2022-03-24.txt.gz:{chan ch=tech}Spellup Roninleader Tech: thanks Neg, you are a life saver T3/r7/2022-03-24.txt.gz:{chan ch=tech}Hi, I'm Elfo Tech: it was legion i say T3/r7/2022-03-24.txt.gz:{chan ch=tech}Tech: Negader bows deeply. T3/r7/2022-03-24.txt.gz:{chan ch=tech}Spellup Roninleader Tech: Legion wishes T3/r7/2022-03-24.txt.gz:{chan ch=tech}Hi, I'm Elfo Tech: heh T3/r7/2022-03-24.txt.gz:{chan ch=tech}Pharaoh Mot Tech: isaac newton said that mental illness was caused by evil spirits T3/r7/2022-03-24.txt.gz:{chan ch=tech}Bogstar Tech: drugs causeit if you never come down T3/r7/2022-03-25.txt.gz:{chan ch=tech}Stuyvesant Tech: a dell laptop or a samsung one? T3/r7/2022-03-25.txt.gz:{chan ch=tech}Haagen Tech: weird, my mudclient auto shuts down.... any idea what is happening? T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: which client? crash or normal close? what is happening is that your mudclient is auto shutting down T3/r7/2022-03-25.txt.gz:{chan ch=tech}Haagen Tech: well, i switched to another window, and it disappeared even from the windows tray... no idea what is happening T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: sounds like crash T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: it would be useful to know what client and which system T3/r7/2022-03-25.txt.gz:{chan ch=tech}Haagen Tech: hmm r2205 mushclient, windows 10 i think T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: first update to 2207 T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here for some time T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ennui Tech: woo, I just moved to mushclient after having been on zmud since like 2002 T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ennui Tech: I can't find a working consider plugin :( T3/r7/2022-03-25.txt.gz:{chan ch=tech}Amarufox Tech: congrats! that was a good move for me T3/r7/2022-03-25.txt.gz:{chan ch=tech}Amarufox Tech: https://github.com/AreiaAard/Areia_Consider is the one I use, pretty solid T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ennui Tech: I'm trying to create a trigger off of "QUEST: You have almost completed your QUEST!" but I can't seem to get it to pick it up. T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what do you want the trigger to do? T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ennui Tech: just return 'enter' T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you just came from zmud, yeah? you should read this... T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ennui Tech: I did yeah T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ugh. hold one. wine stopped reading my clipboard T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: this is going to take me some time to type out *cries* T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ennui Tech: oh, you don't have to heh T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: do you know where my wiki is? T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ennui Tech: found it T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: in my wiki there's a page on triggers and it has a section about zmud users T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ennui Tech: gotcha, thanks. I'll bookmark this for later, been slowly tuning mushclient for 2 hours and I have a headache so I'll pickup more later :) T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I have to figure out why my clipboard broke now T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ennui Tech: well, at least I could help T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: weird. I fixed it and now I think I have a bug to report to winehq T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: actually I'll start with a report to gcenx and then see if I need to send it further upstream T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: https://github.com/Gcenx/homebrew-wine/issues/41 T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: mr. fiendish are you still around? T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ask and ye shall receive T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: the documentation for add button says the font it uses by default is win.title_font T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: correct T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: i was thinking i could just say win.title_font = "Cooper" and it would work, but it doesnt like it T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: instead of specifying a font for each button T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you want custom font for each button? T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: then no i want the same for all buttons, so i thought to change the default. T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: set it when you make the window T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: there's some code that has to happen to load the font T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: ok i missed that piece then. i was hoping i didnt have to re-create the window T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'm not completely opposed to adding font parameters to buttons T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: how comfortable would you be rigging it up and making a pull request on github? T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: close to zero T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: add some parameters for fonts to the button creation functions and then load the font into the miniwindow if needed T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ok, just put it on my todo list then and I'll make it happen T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: there is a font variable for add_button() already T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but in the meantime, add your font when you create the window T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: there is? T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: maybe I already did it T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: yeah, so what if i specify a font that isnt loaded at window creation T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oh oh no uhh.... T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: is it just a single one or does it also ask for font size etc? T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: just font name T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: then you have to load the font yourself. one sec T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: i think i tried that first and it threw errors T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: wtf. my copy/paste stopped working again T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: gah T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: use WindowFont to load the font you want into your miniwindow and then put the font ID you set in there T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: so i want to pass the font ID not the font name to add_button? T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yeah T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: yep that worked T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: awesome T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: my other question was: can i easily get x,y values for a button i created through your lua? or should i use WindowHotspotInfo()? T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It would be OH SO NICE if determining x,y values were so much easier. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Tech: A bright, shiny gold halo appears over (Aleister) Crowley's head. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: i need a ti-83 to plot all these coordinates or something T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: doesn't button creation return the width and height? T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: what im trying to do is create button relative to another button. so create button A, can i use that button's x,y in creation of button b T3/r7/2022-03-25.txt.gz:{chan ch=tech}Tavrin Tech: is there a good way to manage swapping in a held item for a custom exit in the dinv plugin? T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Kind of excited by the new functions in Office 365. torow, tocol, textbefore/after, h/vstack... T3/r7/2022-03-25.txt.gz:{chan ch=tech}Anssett Tech: oh god ms gave crowley more excel toys T3/r7/2022-03-25.txt.gz:{chan ch=tech}Jegeas Tech: lol T3/r7/2022-03-25.txt.gz:{chan ch=tech}Anssett Tech: medical billing will never be the same :D T3/r7/2022-03-25.txt.gz:{chan ch=tech}Tech: I heard a Ruckus appreciates the craftsmanship of his medical bill but disputes the horrendous amount. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley snickers with Anssett about their shared secret. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Trachx Tech: if would be nice if search function and address book in Outlook were always working T3/r7/2022-03-25.txt.gz:{chan ch=tech}404 Eroe Tech: it would be nice if -outlook- just worked 50% of the time T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I don't do medical billing! Just patient charts so patients can be approved! It's how I track the progress, though... T3/r7/2022-03-25.txt.gz:{chan ch=tech}404 Eroe Tech: I haven't even gotten to wishing certain features would wokr. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Antifa Raded Tech: my big win this week was getting a contractor to modify a report so I didnt have to combine a bunch of spreadsheets in Excel T3/r7/2022-03-25.txt.gz:{chan ch=tech}Anssett Tech: all roads in medical lead to billing these days :P T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Raded: I'm trying to do that with our Provation reports. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods at Anssett. T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Right now, to get the information we want, I have to pull it from about 4-5 different reports. T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Power Automate Desktop has been a good friend to me, though. T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Eventually, I need to incorporate it to Excel, too. T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: or with. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Anssett Tech: sounds vaguely powerBI-ish T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It is, but it's more than that, too. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Anssett Tech: i mean your requirements. not familiar with the program haha T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Scrape data from webpages, UI automation, etc. T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Oh, ha. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Antifa Raded Tech: in my job I get told that we got a grant for some thing months ago and now we need to pull information that we haven't been collecting so it becomes my job to solve that problem T3/r7/2022-03-25.txt.gz:{chan ch=tech}Anssett Tech: "you keep saying the internet doesn't forget anything, just ask the internet what our data is. jeez." T3/r7/2022-03-25.txt.gz:{chan ch=tech}Antifa Raded Tech: just do the computers T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Provation allows us to customize reports, but some of the data we need are not compatible with other data. For instance, if we select 'Prep quality', for some reason we cannot select 'Cecum time'. It's stupid. I have to generate two reports for those two items. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Anssett Tech: inner join all the things! T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Still have to download separate reports. T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Web app, export .csv, import .csv, etc. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Anssett Tech: yeah sounds obnoxious af T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I just don't understand why they limit what data works together. I should be able to put adenoma detection rate, cecum time, procedure time, prep quality, procedure type... all in one report, not 4-5. T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: So every once in a while, I yell at them and tell them to get their act together. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Anssett Tech: cloud or onprem hosted? you may just need to sweet-talk a dba into giving you report access :p T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Hmm, good question. I assume it's cloud, though. Our EMR is cloud-hosted. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Anssett Tech: yeah if it's in somebody else's db server it gets a wee bit trickier lol T3/r7/2022-03-25.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: Is there a way to tell the mapper which portal to use to get to recall? T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Yes, mapper bounceportal recall. T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Er, mapper bouncerecall T3/r7/2022-03-25.txt.gz:{chan ch=tech}Etcha Sletch Tech: mm. that's slightly different isn't it? T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Do 'mapper portals', find the index number of the portal you want set for recall, then do mapper bouncerecall 1234 T3/r7/2022-03-25.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: the issue I have is that 3 portals go to a room that is 1d to recall and one of them (the aard amulet) i'm wearing to want it to use that one rather than getting a diff one out of a bag T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: mapper bounceportal --> Specifies which non-recall mapper portal > to bounce through when the path calculation > wants to recall or home from a > portal-friendly norecall room. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ogreskull Tech: it will default to using the equipped portal since that is faster than swapping T3/r7/2022-03-25.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: ok, I'll give it a go T3/r7/2022-03-25.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: mine isn't defaulting to the equipped portal Ogre, I presumed it would T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It does not default to equipped portal... no idea what Ogre is talking about. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ogreskull Tech: Yea, I'm way off base! T3/r7/2022-03-25.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Whoops, and I'm way past time to clock out for work! Later! T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ogreskull Tech: Maybe a dumb question but why does it matter what portal is used? T3/r7/2022-03-25.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: because I don't want it to take the time to get portals out of bags, equip them, enter them, put them back in bag when it could enter and be 5 rooms closer to the area T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: because it matters due speed T3/r7/2022-03-25.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: I'm not good enough at gqs for it to really matter but every little helps T3/r7/2022-03-25.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: anyway, the bounce portal technique doesn't seem to work, mapper still wants to get a different portal out to get to recall T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: it matters if you are using for example kai continuously for damroll and you need to change it to go to recall. dinv for example keeps track what you wear and change it back if you need to go to recall. you do not have to worry for wearing newbie portal. same goes for all damroll portals that is used like gladiators arena etc T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ogreskull Tech: Nuanse, asking because I use dinv for portal equipping, and then an alias (mpor) that switches from my "level appropriate portal" to the portal. Just trying to ask what the use case is where this would be beneficial compared to a garbage can. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: crecall that is usually 1 room away from recall and has fast access to other clan cexits T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: same as academy is best until you get garbage T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: mapper calculates best possible way with least amount of moves to area with for example snd. then it starts to count. you can change values of how many steps one portal entrance takes T3/r7/2022-03-25.txt.gz:{chan ch=tech}Dhalsim Tech: I have cMud and I have it set so that it ALWAYS uses the most efficient portals and routes. Saves me a boatload of moves T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: -10 T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: kinda sand dhalsim. all that is in base aardmush T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: try migrating to aardmush T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: cmud is like 15 years old new things have come and are way better T3/r7/2022-03-25.txt.gz:{chan ch=tech}Dhalsim Tech: It's a question of 1. legacy (migrating from zMud) and 2. Cost. It was already purchased so....why not? Plus, I have spent 2.5 years here in Aardwolf scripting the ever-luvvin' out of this place...and not yet finished. I have enjoyed the coding challenge far more than the T0-9 grind. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: I understand. I was the same T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: just try aardmush. all you have done is basicly already there T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: mapper? why script? it's already there. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Dhalsim Tech: Frankly,I dislike the mush mapper visually. I am able to see a better version of an area with this mapper. Room flags, notes, other built-in settings. Am currently mob-mapping...and in time I'll come up with a cMud SnD equivalent. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: just remember that you are kinda alone as an old geezer T3/r7/2022-03-25.txt.gz:{chan ch=tech}Dhalsim Tech: I'm really all about the data. 2.5+ years of getting eq data and 1.5 years of quest data T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: I have 7 years of daily in aardmush T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: so your couple years doesnt even count T3/r7/2022-03-25.txt.gz:{chan ch=tech}Dhalsim Tech: Ah! Perchance, do you have Star Citizen? T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: you can just write script to write them in file and read them into mush T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: cmud should be able to write them in text file that you just read in in aard if you are fluent in cmud . Lua wouldnt be a problem for you T3/r7/2022-03-25.txt.gz:{chan ch=tech}Dhalsim Tech: everything is in database variables. I haven T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: migrate from cmud to aardmush. it will be for betterment of your life T3/r7/2022-03-25.txt.gz:{chan ch=tech}Dhalsim Tech: everything is in database variables. I haven't got around to writing anything to read it meaningfully. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Dhalsim Tech: I have always been an outlier. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: even if you lose some, you still gain them back fast. and all the scripts in aardmush you will never regret going out from cmut T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: as said. try it. just load it into your computer, connect through it and try. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: snd and mapper alone fixes all your cmud maps T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: without even bothering to code T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: you can always go back if you wish, but atleast you tried T3/r7/2022-03-25.txt.gz:{chan ch=tech}Dhalsim Tech: I have. I am not a fan of the interface, or visual aspects. So,I looked at axmud...but getting THAT mapper working was a real chore. So, I stick with what I prefer. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: cant disagree. If that is what you prefer. that is your choice T3/r7/2022-03-25.txt.gz:{chan ch=tech}Dhalsim Tech: This software has a big problem with window handling. This could be fixed but...that comes to the BIGGEST issue - lack of support from developers. The software is never going to end up open but to sit back and just take money from folk without any effort to pitch in is immoral and irks me. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Dhalsim Tech: By the by....what's the deal with 'no science areas' ? T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: where do you see "no science areas"? T3/r7/2022-03-25.txt.gz:{chan ch=tech}I heard a Ruckus Tech: the mid and southern states mostly T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: HEYOOOOOO T3/r7/2022-03-25.txt.gz:{chan ch=tech}Tech: IAC DO Fiendish rolls a drum beat and crashes a cymbal at I heard a Ruckus's comment. T3/r7/2022-03-25.txt.gz:{chan ch=tech}I heard a Ruckus Tech: snicker T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ennui Tech: I'm trying to replace some text in the middle of a line, but either it replaces the entire line, or doesn't do anything. Example: Your anguish does UNBELIEVABLE things to a traveller! [2067]. For example I want to replace "does UNBELIEVABLE things to" with "Outcompetes". So it would then say: Your anguish Outcompetes a traveller! [2067]. Can someone point me in the right direction? T3/r7/2022-03-25.txt.gz:{chan ch=tech}Mannec Tech: you need to split your line into three parts, then recreate it. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ennui Tech: ah, okay, thought that might be the case. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ennui Tech: I was spoiled by zmud's #sub option, heh. Thanks Mannec T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: MUSHclient doesn't have #sub natively but I did mostly recreate it with my sub/gag plugin T3/r7/2022-03-25.txt.gz:{chan ch=tech}Bogstar Tech: aww i miss zmud...all i have is a droid...i like blowtorch tho T3/r7/2022-03-25.txt.gz:{chan ch=tech}Tech: Mannec rides up upon his warhorse and salutes with fist to heart. T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if you're using the aardwolf mushclient package, type `#sub help` and prepare for a wall of spam T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ennui Tech: oh! nice. Thanksk Fiendish T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: the major caveat with it is that it won't let you cross color boundaries T3/r7/2022-03-25.txt.gz:{chan ch=tech}Ennui Tech: Good to know T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: maybe one day I'll redo it to fix that but it's a very complicated problem T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: or at least it's very complicated to retrofit T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what I mean is explained at the top of the help T3/r7/2022-03-25.txt.gz:{chan ch=tech}Tech: Evl thinks Fiendish would have plenty of time for that if he stopped trying to understand dinv T3/r7/2022-03-25.txt.gz:{chan ch=tech}Evl Tech: ;) T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I stopped trying to understand dinv. I literally just `dinv refresh` and then `dinv set wear thief` T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: and call it a day T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: none of the other features are interesting to me T3/r7/2022-03-25.txt.gz:{chan ch=tech}Tech: Evl :D T3/r7/2022-03-25.txt.gz:{chan ch=tech}Bogstar Tech: Talk nerdy to me °_° T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I probably wouldn't have gotten that far if y'all hadn't helped me T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I don't like reading documentation that puts the 99%-of-the-time answer at the end instead of at the beginning T3/r7/2022-03-25.txt.gz:{chan ch=tech}Mannec Tech: the terrible irony of course being that in programming, thats often the most appropriate structure :p T3/r7/2022-03-25.txt.gz:{chan ch=tech}Gaballon Tech: are you referring to dinv documentation lol T3/r7/2022-03-25.txt.gz:{chan ch=tech}Mannec Tech: are who referring? T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yes gaballon T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mannec: imo the best course in programming is to terminate early so that a person doesn't have to read more than necessary T3/r7/2022-03-25.txt.gz:{chan ch=tech}Useful Hadar Tech: i just type things, and pray it works ... that goes for my helpfiles also T3/r7/2022-03-25.txt.gz:{chan ch=tech}Mannec Tech: i dont disagree, but when you have a collection of possible outcomes, its often easiest to code the unlikely ones first, and make the most likely execution path the default - at the end. switch statements, belike. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Tech: Evl pukes thinking about switch statements T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: luckily lua doesn't have them T3/r7/2022-03-25.txt.gz:{chan ch=tech}Evl Tech: i don't necessarily agree, but mark your return variable as the default to start.. then check for other cases. return once only. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Mannec Tech: that sounds much, much worse, f. the alternative is what, a tall stack of if-thens? T3/r7/2022-03-25.txt.gz:{chan ch=tech}Quadrapus Tech: why doesnt lua have continue :( T3/r7/2022-03-25.txt.gz:{chan ch=tech}Mannec Tech: that is a hotly debated topic, e. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Tech: IAC DO Fiendish comforts Quadrapus. T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: probably not for a good reason, quad T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Lua's dumb loop control is simple but not super T3/r7/2022-03-25.txt.gz:{chan ch=tech}Tech: Quadrapus agrees! T3/r7/2022-03-25.txt.gz:{chan ch=tech}Redryn Tech: you could make a wait loop T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Lua 5.2 (not available in mushclient) added goto, which is HILARIOUS because my entire young adult life was spent being told by very experienced people that goto should always be avoided at all costs T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oh, I'm wrong, luajit does support goto T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: so it is available in mushclient T3/r7/2022-03-25.txt.gz:{chan ch=tech}Mannec Tech: goto is a ten-bladed knife with no handle - it is immensely powerful, but also quite difficult to handle safely. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Veritheia Tech: would updating lua in mush something that nick would have to do? T3/r7/2022-03-25.txt.gz:{chan ch=tech}Quadrapus Tech: aard uses 5.1 so cant use the goto/continue thing in mobprogs either T3/r7/2022-03-25.txt.gz:{chan ch=tech}Redryn Tech: so you're saying goto is like a shuriken and if we use it we become ninjas, got it T3/r7/2022-03-25.txt.gz:{chan ch=tech}Mannec Tech: that being said, it is very, very difficult to design a programming language without it, or something very similar. T3/r7/2022-03-25.txt.gz:{chan ch=tech}Mannec Tech: that is also true, r. T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Veritheia: I'm not entirely sure what it would require to switch to a different "official" lua. I know that you can swap the DLL with any that claims drop-in compatibility with Lua 5.1 T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: which is why I'm able to ship luajit T3/r7/2022-03-25.txt.gz:{chan ch=tech}Veritheia Tech: ah, i see. anything special needed to make use of whatever functions luajit offers? T3/r7/2022-03-25.txt.gz:{chan ch=tech}Mannec Tech: in principle, you could compile a newer version to be drop-in compatible ... but wow, controlling all the nit-picky details to that degree would be a major project. T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: nothing special T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I do it in various places T3/r7/2022-03-25.txt.gz:{chan ch=tech}Veritheia Tech: righto thanks T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mostly luajit is just more efficient T3/r7/2022-03-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: without any other changes, but it does integrate things that otherwise require add-ons, like FFI T3/r7/2022-03-26.txt.gz:{chan ch=tech}Stuyvesant Tech: what's the message i would get when power projection fades? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Khrysis Tech: how to check for invis being active if its from the ring and not a spell? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Epsilon Tech: aflag T3/r7/2022-03-26.txt.gz:{chan ch=tech}Khrysis Tech: so i have to capture it from that somehow eh? T3/r7/2022-03-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: shouldn't be that hard T3/r7/2022-03-26.txt.gz:{chan ch=tech}Epsilon Tech: If you're using it for a script, should be pretty simple - comma separated. T3/r7/2022-03-26.txt.gz:{chan ch=tech}Khrysis Tech: ah so i am just looking for , invis, so it doesnt grab detectinvis right? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Epsilon Tech: Even just using the leading space should work - I'd assume, at least. T3/r7/2022-03-26.txt.gz:{chan ch=tech}Quadrapus Tech: depending on why you need, just track by flagging it as on when you wear the ring and off when you vis for one reason or another T3/r7/2022-03-26.txt.gz:{chan ch=tech}Epsilon Tech: " invis" wouldn't catch "detectinvis" T3/r7/2022-03-26.txt.gz:{chan ch=tech}Khrysis Tech: well i would do by wearing the ring but if u are wearing it and u fight something u need to rewear it for invis to be active T3/r7/2022-03-26.txt.gz:{chan ch=tech}Khrysis Tech: i think i have to do it with aflags T3/r7/2022-03-26.txt.gz:{chan ch=tech}Quadrapus Tech: ok so taking damage makes you vis, easy to check :) T3/r7/2022-03-26.txt.gz:{chan ch=tech}Epsilon Tech: Or if you get hit by disease/poison. Or someone casts reveal? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Quadrapus Tech: who casts reveal? :p T3/r7/2022-03-26.txt.gz:{chan ch=tech}Tech: Epsilon shrugs helplessly. T3/r7/2022-03-26.txt.gz:{chan ch=tech}Epsilon Tech: Just trying to cover all the possibilities. T3/r7/2022-03-26.txt.gz:{chan ch=tech}Epsilon Tech: IME, not doing so is a good way to get Undefined Behavior(TM) T3/r7/2022-03-26.txt.gz:{chan ch=tech}Quadrapus Tech: Think if it fails 2% of the time thats fine and a better solution than spamming aflag T3/r7/2022-03-26.txt.gz:{chan ch=tech}Khrysis Tech: i kinda only want it to check before moving with go or nx if possible T3/r7/2022-03-26.txt.gz:{chan ch=tech}Quadrapus Tech: Hint: aflag takes 1 pulse and you may need to rewear your ring after. Wearing a (second invis) ring takes 1 pulse and guarantees you are invis. T3/r7/2022-03-26.txt.gz:{chan ch=tech}Quadrapus Tech: Its worth 500qp, those aflags quickly will add up T3/r7/2022-03-26.txt.gz:{chan ch=tech}Epsilon Tech: Is there a way to get MUSHClient to *not* store commands that are less than letters in the history? T3/r7/2022-03-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: technically T3/r7/2022-03-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but you'd have to manually manipulate the command history T3/r7/2022-03-26.txt.gz:{chan ch=tech}Epsilon Tech: hrm T3/r7/2022-03-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: well I found crowley's funny dragging hotspot error T3/r7/2022-03-26.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Ooo! T3/r7/2022-03-26.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Hopefully an easy fix, then. T3/r7/2022-03-26.txt.gz:{chan ch=tech}Odorless Nuanse Tech: crowley. your snd doesnt highlight mobs in sohtwo. noticed it happens in areas that has two different sections. like theater in prosper. script "forgets" what is hunted if area has extra nonprobability places (soh, prosper) T3/r7/2022-03-26.txt.gz:{chan ch=tech}404 Eroe Tech: oh boy, can we scream at him again as part of this report? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley grins evilly at 404 Eroe. T3/r7/2022-03-26.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That's funny, because it highlights mobs in sohtwo for me. T3/r7/2022-03-26.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley shrugs helplessly. T3/r7/2022-03-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yes it's an easy fix T3/r7/2022-03-26.txt.gz:{chan ch=tech}Odorless Nuanse Tech: it works sometimes. I agree. but apparently in most cases it forgets it if sohtwo and soh are mentioned in same list (as in nonprobable entity) T3/r7/2022-03-26.txt.gz:{chan ch=tech}Odorless Nuanse Tech: and it happens in quests T3/r7/2022-03-26.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods at IAC DO Fiendish. T3/r7/2022-03-26.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well, Nuanse, here's the thing. Quest info does not give the area keyword (even in GMCP). It is simply "School of Horror". So, since there are two instances of "School of Horror" in the database, it often defaults to soh, and not sohtwo. As I said before, I'm working on a possible fix. As there has not been an update yet, it's not going to work until then. T3/r7/2022-03-26.txt.gz:{chan ch=tech}Stuyvesant Tech: where can i download a hour double predictor? T3/r7/2022-03-26.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Don't know who has a public version of it. Probably Hadar. T3/r7/2022-03-26.txt.gz:{chan ch=tech}Stuyvesant Tech: Thanks crowley:) T3/r7/2022-03-26.txt.gz:{chan ch=tech}Spellup Roninleader Tech: I'm sure someone else has this figure out. how do I get that long cexit for knossos to work in mapper? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Spellup Roninleader Tech: ok thanks Aoric for your help on that T3/r7/2022-03-26.txt.gz:{chan ch=tech}Spellup Roninleader Tech: ok, next question. I downloaded pwars spellup, and it doesn't want to upload into my plugins? Any familiar with that plugin? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Spellup Roninleader Tech: any idea why it doesnt want to load? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Gaballon Tech: type "ppm" does that show anything? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Chebychev Tech: i dont get it why my mapper database crashes continously, started the last couple of days T3/r7/2022-03-26.txt.gz:{chan ch=tech}Lucron Tech: anyone know the cli command to turn on and off a group of triggers? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Lucron Tech: or alternatively, what's needed in an alias to accomplish that? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Zathrus Tech: should be EnableTriggerGroup T3/r7/2022-03-26.txt.gz:{chan ch=tech}Zathrus Tech: like EnableTriggerGroup("levelingbot", false/true) T3/r7/2022-03-26.txt.gz:{chan ch=tech}Zathrus Tech: send as script T3/r7/2022-03-26.txt.gz:{chan ch=tech}Tech: Ennui gasps in astonishment. T3/r7/2022-03-26.txt.gz:{chan ch=tech}Lucron Tech: hrm, ok I'll test it out. ty! T3/r7/2022-03-26.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: can someone direct me to a level/pup tracker for MUSH? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Rakiso Tech: finger hadar T3/r7/2022-03-26.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: ok I'm dumb can you walk me through how to actually install it? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Lucron Tech: any idea why when I scroll it's breaking the miniwindow and not just scrolling up? only the top scrolls up T3/r7/2022-03-26.txt.gz:{chan ch=tech}Mannec Tech: so you can still see whats happening in the present? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Lucron Tech: yeah T3/r7/2022-03-26.txt.gz:{chan ch=tech}Lucron Tech: I meant what setting that is, I hates it lol T3/r7/2022-03-26.txt.gz:{chan ch=tech}Tinypotato Tech: you can disable that by hitting ctrl+shift+p and disabling/uninstalling the plugin called splitscreen_scrollback or something T3/r7/2022-03-26.txt.gz:{chan ch=tech}Useful Hadar Tech: yay to having public scripts :P T3/r7/2022-03-26.txt.gz:{chan ch=tech}Lucron Tech: just was told about hsp tonight, it's amazing, ty sir T3/r7/2022-03-26.txt.gz:{chan ch=tech}Ennui Tech: same, I was looking for that daignostic tracking thanks Hadar :) T3/r7/2022-03-26.txt.gz:{chan ch=tech}Useful Hadar Tech: i enjoy doing it when i have free time :) hsp was fun to figure out, im working on re-doing my qps tracker right now also since mine has some stuff i do not like it about it (its one of my older scripts) T3/r7/2022-03-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2022-03-26.txt.gz:{chan ch=tech}Lucron Tech: my mushclient made my coffee with WAY too much cream. how to adjust, thanks. T3/r7/2022-03-26.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: Oh, I have a question, I keep getting invmon tags, are they used for something? T3/r7/2022-03-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you can't remove cream from coffee, but you can add more coffee T3/r7/2022-03-26.txt.gz:{chan ch=tech}Lucron Tech: mind...blown... T3/r7/2022-03-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: invmon tags are used for many things. nothing made by me though T3/r7/2022-03-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: maybe dinv? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Lucron Tech: dinv definitely needs them T3/r7/2022-03-26.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: I didn't install a plugin with them, it might be that mushclient turned on tags again, and I had something years ago that used it T3/r7/2022-03-26.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: How do I turn that tag off without breaking other stuff? T3/r7/2022-03-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: plenty of my things need tags on in general. go ahead and turn inv tags off specifically if you don't need them T3/r7/2022-03-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: try typing invmon? T3/r7/2022-03-26.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: Thank you, you are a hero T3/r7/2022-03-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: looks like my fix for crowley's bug was just merged T3/r7/2022-03-27.txt.gz:{chan ch=tech}Useful Hadar Tech: if you installed/removed my hsp plugin it toggles invmon tags, i know you were looking at my stuff T3/r7/2022-03-27.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: Nah, it was on before that T3/r7/2022-03-27.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: your plugins would be gagging it I would assume as well T3/r7/2022-03-27.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: Also I wanna say again, your plugins area AMAZING!!!!!!!!!!! T3/r7/2022-03-27.txt.gz:{chan ch=tech}Lucron Tech: I just wish I knew what each of your plugins...did lol...the documentation on github is...hrm...lolol T3/r7/2022-03-27.txt.gz:{chan ch=tech}Useful Hadar Tech: yeah i forget to add documentation lol T3/r7/2022-03-27.txt.gz:{chan ch=tech}Useful Hadar Tech: i should pay someone to write it all for me buhahaha T3/r7/2022-03-27.txt.gz:{chan ch=tech}Blackweb Tech: is there a plugin that pushed con data to a mini window? T3/r7/2022-03-27.txt.gz:{chan ch=tech}Blackweb Tech: consider* data T3/r7/2022-03-27.txt.gz:{chan ch=tech}Make it Reyn Tech: there are a few - https://github.com/Shindo-Aardwolf/Mushclient-Consider T3/r7/2022-03-27.txt.gz:{chan ch=tech}Blackweb Tech: thanks T3/r7/2022-03-27.txt.gz:{chan ch=tech}Gaballon Tech: anyone know if dinv can search for a specific weapon damage type? T3/r7/2022-03-27.txt.gz:{chan ch=tech}Make it Reyn Tech: dinv search damtype pierce T3/r7/2022-03-27.txt.gz:{chan ch=tech}Make it Reyn Tech: (or whichever damtype you want) T3/r7/2022-03-27.txt.gz:{chan ch=tech}Gaballon Tech: cool ty T3/r7/2022-03-27.txt.gz:{chan ch=tech}Cilmarill Tech: is there a way to make mushclient make the noises while it's not the focussed window? T3/r7/2022-03-27.txt.gz:{chan ch=tech}Lucron Tech: do all plugins enable every time you open the client? no way to keep something disabled? T3/r7/2022-03-27.txt.gz:{chan ch=tech}Fatal FrostBite Tech: no. Set your world up with the plugins that you want and then click save world. T3/r7/2022-03-27.txt.gz:{chan ch=tech}Fatal FrostBite Tech: Next time you open your client, the plugins should be how you set them before saving. T3/r7/2022-03-27.txt.gz:{chan ch=tech}Lucron Tech: kk ty T3/r7/2022-03-27.txt.gz:{chan ch=tech}Fatal FrostBite Tech: This is my experience in Mush btw, can't speak for other clients. T3/r7/2022-03-27.txt.gz:{chan ch=tech}Pharaoh Mot Tech: Line 15: Attribute name 'crossorigin' not followed by '=' (Cannot load) T3/r7/2022-03-27.txt.gz:{chan ch=tech}Pharaoh Mot Tech: whats that mean T3/r7/2022-03-27.txt.gz:{chan ch=tech}Blackweb Tech: is there a command to redraw Bast mini windows ? T3/r7/2022-03-28.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2022-03-28.txt.gz:{chan ch=tech}Pharaoh Mot Tech: i have alot T3/r7/2022-03-28.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ok T3/r7/2022-03-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: is there a way to capture the output of mapper portals so that another plugin can process it? T3/r7/2022-03-28.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: uhh T3/r7/2022-03-28.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: technically T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: Shindo, could you just look in aardwolf.db directly? T3/r7/2022-03-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: yes... but i'm asking for a "friend" :D T3/r7/2022-03-28.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what do you need the portals for? T3/r7/2022-03-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: i seem to recall someone wrote a plugin that switched non-golden portal level to 292 for gq's then back T3/r7/2022-03-28.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yeah but why do you need to capture mapper portals output for that? T3/r7/2022-03-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: and that made me wonder how they got access to the information they needed for that T3/r7/2022-03-28.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: no need T3/r7/2022-03-28.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mapper portallevel command lets you set level on any portal T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: you'd still need a list of what portals are CP portals T3/r7/2022-03-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: i'm well aware of that but how would you build that list without having the user maintain it by hand T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: i can't think of a way to do that without running into trivia portals or also excluding golden chaos portals. not automatically T3/r7/2022-03-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: yeah, i was also thinking there are lots of hurdles but they can be overcome by aliases for non-golden vs golden vs normal portals T3/r7/2022-03-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: but then you have to rely on users to use the correct alias... T3/r7/2022-03-28.txt.gz:{chan ch=tech}Big Boi Zyanya Tech: zafrusteria had written it, Shindo T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: well, you could build the list automatically, i guess, by having a command just building the list and identifying them T3/r7/2022-03-28.txt.gz:{chan ch=tech}Big Boi Zyanya Tech: it relied on either dinv or separate aliases per portal type T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: chaos portals have 'live chaos portal' and golden have 'chaos portal golden' T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: so you could pull all portals out of a bag, id them, capture the ids, and save them to a table T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: then uhh.. at least you have a list T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: and i think from that you can select the row with that portal id from the db and change the level T3/r7/2022-03-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: wow, was it that long ago that this was last discussed T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: send me that plugin when you're done tia T3/r7/2022-03-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: no wonder i couldn't find the discussion on the tech forum, zaf was last on a year ago T3/r7/2022-03-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: i just shove my non-golden portals in a bag for the rainy day i go ranger T3/r7/2022-03-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: it might also have to be snowing here... T3/r7/2022-03-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: but thank you Fiendish, for putting in the mechanisms for changing the levels of portals so painlessly T3/r7/2022-03-28.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: np T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: sigh T3/r7/2022-03-28.txt.gz:{chan ch=tech}Tech: Epsilon raises an eyebrow at Ennui's weird actions. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: any idea why mapper would use yoke + run over a dark crystal to get to imperial nation? I'm under base level for the dark crystal, but far over w/tiers. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Heracles Tech: Not sure mapper takes into account tiers T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: ah, the help said not to take them into manual account. T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That's incorrect information. T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: When you put a level on the portal, you put the portal's actual level. It'll use it if your tier level is the portal's level or above. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: ah, it doesn't seem to be doing so. Did one time, then went back to yoke. Strange T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: So you do not need to account for tiers on the portals themselves. But the mapper is smart enough to say, "Hey, he's level 40, a tier 8, so he can use a level 120 portal." T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It's possible that it is shorter for some reason. T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Or you have an exit lock somewhere. T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Or you do not have the portal set up correctly. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: ah, possible, unaware of exit locks T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Try this. Enter the dark crystal. Then do 'mapper where ', where you are trying to get to, and see if it shows a path or not. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: hmm..says "You're already in that room" T3/r7/2022-03-28.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley boggles at the concept. T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Oh, you're trying to get to Imperial Nation, but it's not using the dark crystal? (I probably misunderstood what was happening). T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: yeah. And if i do mapper portals then click on imperial it uses it. But SnD defaults to yoke. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: not a huge deal I guess. T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Okay, go west, north, and try 'mapper where ' again. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: path to 16958 is "run s" T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Or rather, mapper where 16966, since that's where my 'start' is. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: I'll set to that one and see if it helps. T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It shouldn't make a difference. Just wondering what the path shows for you. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: ah, it says "dinv portal use 56374710 T3/r7/2022-03-28.txt.gz:{chan ch=tech}Odorless Nuanse Tech: for me path shows like this: portal, open east, east T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: then run e T3/r7/2022-03-28.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: I'll reset mine to yours, see if that makes it act better T3/r7/2022-03-28.txt.gz:{chan ch=tech}Odorless Nuanse Tech: have you tried to do xset mark at portal entrance? T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Try this, Ennui. It's possible that DINV is glitching. Try dinv reload, then dinv refresh all, and see if that fixes the problem for you. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: it also might have been dinv, I was dying a bunch running around getting the initial mapping done since i just installed mushclient the other day T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Also, save yourself some time and create a 'port' alias that does dinv portal use. T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That way you can change the portal alias instead of all the commands. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Tech: Odorless Nuanse nods at (Aleister) Crowley. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: hmm, evl said something similar, but I don't quite see. Like if I setup port for "dinv portal use" I'd still need the dinv serials? Or...I feel like I'm missing something. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Odorless Nuanse Tech: create portal alias like "port *" then make it do dinv portal use %1. After that you can create aliases for portals like portalimperial that you add to mapper. it has port id T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: So, I have port * as my alias name, and if tonumber("%1") then Execute("dinv portal use %1") else Execute("dinv portal use key " .. string.gsub("%1", " ", " key ")) end -- set to script. That way, I can set all my portal commands to 'port 12345' or 'port academy portal', whatever I want. In all honesty, it was originally a better purpose so you did not have to change 50 portals because you changed a bag, though, but it's still neater/cleaner. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Ennui Tech: ahh, okay. I do have something similar setup (well, I'm re-setting up my 75ish portals slowly. This was just an oddity. THanks for all the help, I gotta get to bed. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley beams a smile at Ennui. T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Go sleep! T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: anyone here wanna give me cabling tips T3/r7/2022-03-28.txt.gz:{chan ch=tech}Epsilon Tech: RJ-45. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Amarufox Tech: wireless! T3/r7/2022-03-28.txt.gz:{chan ch=tech}I heard a Ruckus Tech: I'd use the whole cable not just the cabling tips T3/r7/2022-03-28.txt.gz:{chan ch=tech}Tech: I heard a Ruckus nogs at himself, he must be getting freaky! T3/r7/2022-03-28.txt.gz:{chan ch=tech}Tech: Selitos laughs out loud. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Hi, I'm Elfo Tech: jsut the tip! T3/r7/2022-03-28.txt.gz:{chan ch=tech}Pharaoh Mot Tech: lol T3/r7/2022-03-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I think zip ties are your friend but I have no idea T3/r7/2022-03-28.txt.gz:{chan ch=tech}Pharaoh Mot Tech: just to see what it feels like T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: I have too much stuff going on T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: and my mouse dun work when I plug it in T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: what's the best way to do it without having 3 usb switches T3/r7/2022-03-28.txt.gz:{chan ch=tech}Amarufox Tech: 4 usb switches T3/r7/2022-03-28.txt.gz:{chan ch=tech}Anssett Tech: zip ties are nobody's friend T3/r7/2022-03-28.txt.gz:{chan ch=tech}Anssett Tech: velco strips plzkthx T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: getting it done with 1 switch seems hard T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: bluetooth mouse T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: cuz you'd need 2 outputs to go into the same pc T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: mouse is wireless but im not getting bt, too laggy T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: why do you need so many usb ports? T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: I dont T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: the throughput is too high T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: then just add PCI-E usb card T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: and do what with it ? T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: basically that will serve as another USB controller, so it should solve problem with througput T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: the issue isn't connecting the camera T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: the issue is the usb switch can't handle all the stuff T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: for camera use firewire, though IIRC USB 3.0 should be able to handle video T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: the switch is 3.0 T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: the switch isn't to combine usbs T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: it's to switch between mac and pc T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: 1:1 connection is easy T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: you mean you use some kind of kvm switch? T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: yes T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: I think the only play is to keep keyboard/mouse on kvm A, link A to B, B to mac T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: then have kvm C which has the cam only T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: and it converts usb to thunderbolt T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: but that's some crazy stuff T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: B is needed cuz monitors T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: you mean you want share keyb/mouse , monitors, cam between mac and pc? T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: yeah T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: it seems that display port switch for monitors is better choice (https://eu.mouser.com/applications/broadcast-usb-video/) T3/r7/2022-03-28.txt.gz:{chan ch=tech}Anssett Tech: synergy shares (shared? dunno if it's still a product) mouse/keyboard between computers, and it's software based. might save some ports. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: in this case number of ports is not a problem T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: Ive no choice for the monitor T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: im using 2 cables, 1 goes to B, 1 goes to PC T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: but rather the way usb was designed, IIRC it consumes also a lot of CPU T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: the cam is hdmi T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: the mac also has no usb ports T3/r7/2022-03-28.txt.gz:{chan ch=tech}Anssett Tech: ok, saves some complexity then. sounds like plenty of that :p also looks like it costs now, which kinda sucks T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: what ports do you have in your mac then? T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: I dunno like usb c I think, unless they're thunderbolts T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: I have a switch for the mac, switch B T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: A -> B -> Mac T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: A -> PC T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: think the only option is C -> PC, C -> mac, and C has camera only T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: the camera is not just a camera, there's a capture card at the end of it T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: think im gonna get entangled and die T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: I guess you could use thunderbolt dock to get all ports T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: that's B T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: just add pci-e thunderbolt card to your PC T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: how does that help, the goal is to switch the camera T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: basically you will attach everything (mouse/keyb/cam/display) to your thunderbolt kvm switch T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: it has enough bandwidth for that T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: do they sell thunderbolt kvms T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: something like that https://www.aten.com/us/en/products/usb-peripherals/docking-switches/us7220/ T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: "The US7220 Thunderbolt 2 KVM Docking Station is a dual-computer KVM docking station for your workspace. " T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: that's a chonky boy T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: but then I am not sure whether that model is good enough T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: I mean I've seen kvm usb-c (usb 3.0) switch used for connecting just 3 monitors, and well, "it works" but it is not perfect T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: https://www.amazon.com/WAVLINK-Universal-Docking-Station-Ethernet/dp/B07DCLK55V?keywords=2-Port+Thunderbolt+2+KVM+Docking+Station&tag=bgr0c1-20 T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: I need to a hundred % be sure it's not gonna take bandwitch away from my mouse cuz T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: I need 1000z polling rate to destroy nerds, as a gaming warlod T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: that wavlink looks like just single source - port extender T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: yeah I can't find the output T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: output's just for monitors T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: https://www.amazon.com/TESmart-Switcher-Mechanical-Multimedia-Computers/dp/B081251PBW/ref=sr_1_4?crid=1SQNQMQ6O2P25&keywords=switch+Docking+tesmart+thunderbolt&qid=1648493444&sprefix=switch+docking+tesmart+thunderbolt%2Caps%2C144&sr=8-4 T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: "improved mouse & keyboard compatibility" - that means "there are problems with some mice and keyboards" T3/r7/2022-03-28.txt.gz:{chan ch=tech}TrEz Tech: the capture card needs 3.0 :( T3/r7/2022-03-28.txt.gz:{chan ch=tech}Trachx Tech: though there is a picture of "gaming keyboard" T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: if multiple triggers fire on the same line of output and both are set to omit from output, does that cause an issue? T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It shouldn't, but make sure you have Keep evaluating ticked. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Pharaoh Mot Tech: who had the instinct and mastery report script? T3/r7/2022-03-28.txt.gz:{chan ch=tech}Negader Tech: finger mendaloth T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: anyone have an example of using aardwolf_colors.lua to capture a line of output and re-create it with color codes? T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I use TriggerStyleRuns to do that. I'm unaware of how to do it using aardwolf_colors, or if it's even possible. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: is TriggerStyleRuns a MUSH function? T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: help -> functions list T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It's a table that is created when you send to script after omit to script. Do a basic trigger, and do: Script (after omit), and then in the code, require 'tprint' tprint(TriggerStyleRuns) to get an idea. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: ok thanks T3/r7/2022-03-28.txt.gz:{chan ch=tech}Brko Tech: does anyone know if there's an option so that mini main and mini windows adjust properly for different screen resolutions? T3/r7/2022-03-28.txt.gz:{chan ch=tech}Brko Tech: I'm talking about MUSH client T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: you can save different layouts - aard layout help T3/r7/2022-03-28.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods at Veritheia. T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Okay, the Beelink mini PC... looks friggin' amazing. T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: For $1200. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Brko Tech: yea, but I have to first arrange them manually...I was wondering if they can resize properly on their own..? T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Not currently. T3/r7/2022-03-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Don't think that MUSH knows what your resolution is. T3/r7/2022-03-28.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2022-03-28.txt.gz:{chan ch=tech}Tech: Doge Water Yajan points excitedly at IAC DO Fiendish! T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: i need a lua brain to tell me the best way to do something T3/r7/2022-03-28.txt.gz:{chan ch=tech}Mannec Tech: i dont speak lua, but really how hard can it be? i used to rock qbasic like nobodys' business. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: i have a long string thats mixed with ansi codes and letters and numbers. i want to capture the numbers and insert a comma if the number is > 3 digits T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: regex T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: im wondeting if gmatch is the best way to do this or if im on the wrong track entirely T3/r7/2022-03-28.txt.gz:{chan ch=tech}Epsilon Tech: ^.+\[[0-9]+\] T3/r7/2022-03-28.txt.gz:{chan ch=tech}Epsilon Tech: If I remember my regex right? T3/r7/2022-03-28.txt.gz:{chan ch=tech}Epsilon Tech: I'm assuming you're operating on damage values, at least. :V T3/r7/2022-03-28.txt.gz:{chan ch=tech}Mannec Tech: oh, thats super easy in basic :p T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: i already captured the whole line via trigger and have a long string with color codes T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: use regex101.com to experiment T3/r7/2022-03-28.txt.gz:{chan ch=tech}Epsilon Tech: hrm. That's not testing correctly though. I'm missing something. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Mannec Tech: does the string have the important numbers in predictable locations, or do you need something more general? T3/r7/2022-03-28.txt.gz:{chan ch=tech}Epsilon Tech: I'm using https://www.regextester.com/, but probably same idea. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: something general. its the prompt, so it could be different entirely depending on the user T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: so its predictable assuming they havent modified it lol T3/r7/2022-03-28.txt.gz:{chan ch=tech}Mannec Tech: hmm. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Fatal FrostBite Tech: Oh boy... You'll want to use GMCP data if you can. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: yes, everything in the prompt comes from gmcp T3/r7/2022-03-28.txt.gz:{chan ch=tech}Mannec Tech: i wonder if your interface has a printf() style command? it would be awesome if you could just pass your captured string thru that, and set a comma-generation flag. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: well maybe not literally everything? but almost everything T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: hmm thats true i can get the character current and max stats from gmcp T3/r7/2022-03-28.txt.gz:{chan ch=tech}Mannec Tech: lets ask this question, then - what is your end goal? T3/r7/2022-03-28.txt.gz:{chan ch=tech}Fatal FrostBite Tech: Can get tons of info from GMCP. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: my plugin will append stuff to the end of the prompt. then i got sidetracked and wanted to add commas to large hp/mp/mv numbers in the prompt T3/r7/2022-03-28.txt.gz:{chan ch=tech}Mannec Tech: mmm. so instead of capturing any prompt and re-writing it, how about instead you make a prompt-builder? T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: that seems excessive T3/r7/2022-03-28.txt.gz:{chan ch=tech}Mannec Tech: have it offer output for the various things that might go in a prompt. should be easy to include any info offered by gmcp. then the hard part is just dealing with commas. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Mannec Tech: at first, sure. but its really not any different than building your prompt mud-side, its just that the variable names would be client-side rather than the mud-supplied defaults. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: if i trigger off a prompt then re-create it its easy. adding commas is proving challenging since im not very learned with lua string manipulation T3/r7/2022-03-28.txt.gz:{chan ch=tech}Mannec Tech: that way, you can avoid a ton of input-processing, and instead focus on the actual point - figuring out how to comma-group. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Mannec Tech: your approach is much easier if you only have to deal with a particular prompt from the mud. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Mannec Tech: its making it _general_ that causes it to get hard. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: yes im banking on the prompt line always starting with < and ending with > T3/r7/2022-03-28.txt.gz:{chan ch=tech}Epsilon Tech: That'd break on mine immediately. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Epsilon Tech: I use an oldschool RoT style prompt. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Odorless Nuanse Tech: I dont even use prompt anymore. gmcp gives all info for client. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: well tbh i dont know if anyone will use this plugin besides me anyways lol T3/r7/2022-03-28.txt.gz:{chan ch=tech}Tech: Mannec crosses his arms and nods slowly and sagely to Odorless Nuanse. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Mannec Tech: gotta consider your target audience. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Odorless Nuanse Tech: although. at points when I have to use telnet client it's kinda pain when you see no prompt T3/r7/2022-03-28.txt.gz:{chan ch=tech}Epsilon Tech: Hm. Is there a script that has "bump" opening of doors? T3/r7/2022-03-28.txt.gz:{chan ch=tech}Epsilon Tech: Maybe a better general question - is there a common place for scripts for the MUSHClient? T3/r7/2022-03-28.txt.gz:{chan ch=tech}Gaballon Tech: i have a trigger. its not perfect but it works T3/r7/2022-03-28.txt.gz:{chan ch=tech}Katsumoto Tech: mapper help all. Read up on cexits T3/r7/2022-03-28.txt.gz:{chan ch=tech}Epsilon Tech: That was my thought. T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: mostly just what comes with Fiendish's package. Some people have github pages but there's not really a repository or list of those githubs T3/r7/2022-03-28.txt.gz:{chan ch=tech}Epsilon Tech: oh boy that's a lot of stuff T3/r7/2022-03-28.txt.gz:{chan ch=tech}Epsilon Tech: Maybe I should read it somewhere that I won't drown. <_< T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: there are also a lot of scripts that are either private or semi-private (e.g. only released to clan or friends) T3/r7/2022-03-28.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I've considered setting up an archive of plugin links from other people, but I don't want to be seen as endorsing anything that isn't included in the package, so really someone else needs to set it up T3/r7/2022-03-28.txt.gz:{chan ch=tech}Veritheia Tech: what about a public google sheet? T3/r7/2022-03-28.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it's also an easy way for someone other than me to contribute to the community T3/r7/2022-03-28.txt.gz:{chan ch=tech}Epsilon Tech: Oh, interesting. That must be how people find stuff so quickly on global quests then? Mapper find and the like? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Gaballon Tech: well i was able to do it and the prompt looks very weird with commas T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I bet T3/r7/2022-03-29.txt.gz:{chan ch=tech}A Calm Stormwind Tech: Anyone have a portal counter showing how many times you've used a portal so it's easy to tell the ones you never use or the chaos ones less used so you can merge them? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: no but that's a good idea for a plugin to buidl next! T3/r7/2022-03-29.txt.gz:{chan ch=tech}Aliera Tech: the portal that's last in your bag is the one you use least =) T3/r7/2022-03-29.txt.gz:{chan ch=tech}Vanellus Tech: DOes anyone play on laptop? What do you use for direction binds? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Vanellus Tech: Or, how to use arrow keys as direction binds? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Amarufox Tech: external keyboard and/or wireless numpad for me T3/r7/2022-03-29.txt.gz:{chan ch=tech}Vanellus Tech: Duh. I am sitting in my IT office with a cupboard full of keyboards. Thanks Fox T3/r7/2022-03-29.txt.gz:{chan ch=tech}Amarufox Tech: np man, it looks like could remap arrow keys with accelerator function as well if external solutions didn't work (https://www.gammon.com.au/scripts/doc.php?function=Accelerator) T3/r7/2022-03-29.txt.gz:{chan ch=tech}Katsumoto Tech: On a laptop here. I use Ctrl + arrow keys to move. Alt + up and down to go up/down. T3/r7/2022-03-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: What Fox said is correct. You can use Accelerator to remap arrow keys as needed. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Odorless Nuanse Tech: wouldnt that be easisest to just do crtl-shift-1 and enable keypad? T3/r7/2022-03-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I mean, that's if you actually have a numpad to work with. T3/r7/2022-03-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Some laptops incorporate the numpad on the letters, so you lose the ability to type on half your letters. T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: does Linux have similar (or more/less) requirement for free hdd space as Windows? i.e., like > 10% ? trying to track down why my cpu is slow of late T3/r7/2022-03-29.txt.gz:{chan ch=tech}Hi, I'm Elfo Tech: could be from the porn sites, slowed my old comp right down man T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: There's not really a requirement for free space that I've noticed, other than "don't run out." :V T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: Linux does tend to be a lot slimmer overall though. T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: hmmm my problem might be the opposide Elfo, thanks for the suggestion T3/r7/2022-03-29.txt.gz:{chan ch=tech}Hi, I'm Elfo Tech: oh need to watch more porn ?:) T3/r7/2022-03-29.txt.gz:{chan ch=tech}Hi, I'm Elfo Tech: j/k :) T3/r7/2022-03-29.txt.gz:{chan ch=tech}Trachx Tech: that could be memory related T3/r7/2022-03-29.txt.gz:{chan ch=tech}Trachx Tech: if some process starts swapping system performance/responsiveness will really drop T3/r7/2022-03-29.txt.gz:{chan ch=tech}Trachx Tech: for home computer - just turn off swap T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: Old HDD with minor errors, spinning HDD that needs a defrag are a couple of other options. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: Oh god no don't turn off swap. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Trachx Tech: also some apps like Chromium will behave really bad if they have not enough memory T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: i mean compared to how I typically browse (i.e., two browser, multiple windows with like 50+ tabs) plus few other programs, I'm running very leanly and still slower T3/r7/2022-03-29.txt.gz:{chan ch=tech}Trachx Tech: pretty easy to check - just limit memory via cgroups, open several pages in chromium and observe how bright your hdd led is T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: would heat be the cause or result of HDD related issues? this NUC is like smoking hot T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: lol a NUC T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: That's probably your problem then. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: CPU throttling due to heat. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Trachx Tech: heat will just shorten life of hdd T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: That too. But if it's overall slowness, heat + throttling explains it neatly. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Trachx Tech: but right, throttling seems quite good candidate for culprit T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: Find a little fan, point it at the fins on your NUC, and see if it clears up. T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: nothing's changed recently though far as I know...i mean still got cooling pads underneath T3/r7/2022-03-29.txt.gz:{chan ch=tech}Trachx Tech: basically: use sensors app to verify cpu temperature, htop to check %cpu used, iotop to check IO throughput T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: It's not getting warmer where you are? ;) T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: hmm yeah it's almost summer already so house ~8F warmer T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: Not a whole lot, but it might be enough to trigger the throttling. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Tech: Epsilon shrugs helplessly. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: I know it's a solid 15-20F swing between summer and winter in my place, but I keep the house at 55-60F in the winter. ;p T3/r7/2022-03-29.txt.gz:{chan ch=tech}Ennui Tech: today where I live it's a solid +40 degrees between midnight and 3 p.m. and then down 30 again after 11 p.m. T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: hmm not sure entirely which sensors are which, but cores ~200F, "temp1" 207F, fan1 (internal) 793rpm, T3/r7/2022-03-29.txt.gz:{chan ch=tech}Quadrapus Tech: pretty hot :P T3/r7/2022-03-29.txt.gz:{chan ch=tech}Heracles Tech: Blow on that fan and increase the rpm! T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: 20% freespace on HDD .. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: "pretty hot" is like saying that it's "pretty cold" in Antartica. :V T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: That's nearly enough to boil water. o.o T3/r7/2022-03-29.txt.gz:{chan ch=tech}Quadrapus Tech: yeah I think they throttle around there, depending on what the machine is, so you may want to try to clean it out. or see if you're running anything that's spiking your CPU at 100% for long periods of time T3/r7/2022-03-29.txt.gz:{chan ch=tech}Trachx Tech: 200F is way too high T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: I mean, a lot of CPUs I've seen start to throttle around what, 75C? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: Which is something like 180F IIRC. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Trachx Tech: what CPU model? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: a lot of people's girls are in there man T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: So yeah, you're running WAY too hot. You need an external fan. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Quadrapus Tech: I've usually seen 90-100Cish but either way this is in that range. Gotta clean it / etc T3/r7/2022-03-29.txt.gz:{chan ch=tech}Quadrapus Tech: Er... seen throttling in that range, to be specific T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: it appears i've got the Folding at Home client running in background somehow still, pretty sure I'd deleted that T3/r7/2022-03-29.txt.gz:{chan ch=tech}Tech: Epsilon chortles mischievously. T3/r7/2022-03-29.txt.gz:{chan ch=tech}404 Eroe Tech: oh yeah, that thing doesn't go away easily sometimes. T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: yeah I can't find anything to uninstall , but def running 90+% of all cores T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: I've got my server box running something similar. T3/r7/2022-03-29.txt.gz:{chan ch=tech}404 Eroe Tech: you can kill it in task manager. uninstalling doesn't kill it T3/r7/2022-03-29.txt.gz:{chan ch=tech}Quadrapus Tech: as a biologist, thank you... but you're wasting your cycles :P T3/r7/2022-03-29.txt.gz:{chan ch=tech}404 Eroe Tech: if you want to make sure it's gone just reboot, the uninstall should take it from startup. or go to task manager and make sure it's not in startup. T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: i'd deleted it like months ago though and certainly rebooted in the meantime, hmm ill search around on how to remove it fully, thanks yall T3/r7/2022-03-29.txt.gz:{chan ch=tech}Anssett Tech: as the spouse of a biochemist, i wonder if she would even benefit from outsourcing protein folding ops T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: i used Rosetta at Home on all my machines when covid first hit, it "felt" like i was "doing something" lol. But Rosetta kinda went defunct so I'd switched to folding T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: just checked rosetta's current numbers, yeah only 117 teraflops, which is about 10% of what network had in mid 2020 T3/r7/2022-03-29.txt.gz:{chan ch=tech}Odorless Nuanse Tech: energy prices kinda hit them hard T3/r7/2022-03-29.txt.gz:{chan ch=tech}Odorless Nuanse Tech: no one wants to keep even lights on so they definately do not want to use electricity for those T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: cores down to 175 :) I wonder how many months the past few days worth of heat has taken off this machine's lifespan T3/r7/2022-03-29.txt.gz:{chan ch=tech}Anssett Tech: yeah we just have a dedicated workstation for her to do protein stuff on. maybe that means that her proteins are smaller than the ones that benefit from distributed folding. i dunno. T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: my sense is we'd like to think our meager resources help with "public science" but that either the capacity pales in comparison to what big pharma uses and/or they're the ones utilizing the platform T3/r7/2022-03-29.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: I've been trying to join a distributed GPU rendering network, lol found out the waitlist/backlog is 1 million 'high-end GPU's' i.e., not normal folks like me T3/r7/2022-03-29.txt.gz:{chan ch=tech}404 Eroe Tech: I doubt big pharma shares a platform like that. usually initiatives like FaH are to help research efforts like in universities/etc. T3/r7/2022-03-29.txt.gz:{chan ch=tech}A Calm Stormwind Tech: how do i disable using chaos portals during a global quest? T3/r7/2022-03-29.txt.gz:{chan ch=tech}404 Eroe Tech: don't think you can. T3/r7/2022-03-29.txt.gz:{chan ch=tech}A Calm Stormwind Tech: dang in that case chaos portals are a liability =\ T3/r7/2022-03-29.txt.gz:{chan ch=tech}404 Eroe Tech: when I asked that question before investing in them I was told you can't separate the two for gquests. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Anssett Tech: technically you could write a trigger to change your portal commands for the ones that use chaos portals T3/r7/2022-03-29.txt.gz:{chan ch=tech}Anssett Tech: fire it off when you gq join or gq starting T3/r7/2022-03-29.txt.gz:{chan ch=tech}Talbor Tech: thought there was a plugin to help with cp's unless I'm thinking of something else T3/r7/2022-03-29.txt.gz:{chan ch=tech}404 Eroe Tech: pretty sure you can use chaos portals on cps T3/r7/2022-03-29.txt.gz:{chan ch=tech}404 Eroe Tech: just not gqs. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Sir Emrys Tech: how do i get my mush to recognize the rooms in wayfarers for S&D? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Pharaoh Mot Tech: update it to a newer version T3/r7/2022-03-29.txt.gz:{chan ch=tech}Sir Emrys Tech: do i need to reset the area and reexplore it or something? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Pharaoh Mot Tech: ur prob using 2017 T3/r7/2022-03-29.txt.gz:{chan ch=tech}Pharaoh Mot Tech: https://fiendish.github.io/aardwolfclientpackage/ T3/r7/2022-03-29.txt.gz:{chan ch=tech}Guy of Gisbourne Tech: i had the same thing before I upgraded mush, the one you download from aardwolf's site is pretty out of date T3/r7/2022-03-29.txt.gz:{chan ch=tech}Sir Emrys Tech: yeah, I tried updating once and it started breaking shit so i went back to my backup lol T3/r7/2022-03-29.txt.gz:{chan ch=tech}Pharaoh Mot Tech: make sure the client is closed when u update T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: "I tried the client and things broke but I didn't say anything to fiendish" is literally my favorite thing to see on any channel T3/r7/2022-03-29.txt.gz:{chan ch=tech}Tech: Kiss my Gritznakka comforts IAC DO Fiendish. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: Does anyone actually say it like that though? :V T3/r7/2022-03-29.txt.gz:{chan ch=tech}Mannec Tech: updates are a trap - thats why im still using a beta version of firefox. it only has 3 bugs, and 2 of them i can work around. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: "This client is broken, it sucks, I'm not using it!" seems more likely. >_> T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: it's important to never let you know about any bugs in the client T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: otherwise what would we have to complain about?!?!? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: ;) T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'm pretty sure that nobody ever encounters a bug while updating that's actually my fault T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: But I'm still available to help them! T3/r7/2022-03-29.txt.gz:{chan ch=tech}Ogreskull Tech: time to work on a more convuluted upgrade path T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I used to have one and nobody ever updated T3/r7/2022-03-29.txt.gz:{chan ch=tech}Ogreskull Tech: now look what you've gone and done T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: how do update plz T3/r7/2022-03-29.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: Hey Fiendish, is it possible to change the colours on the bottom bars? Or at least easy enough for a dummy like me to do> T3/r7/2022-03-29.txt.gz:{chan ch=tech}Epsilon Tech: clinet bork halp :( T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you mean the input bar where you type commands? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: No the hp/mana/move bards T3/r7/2022-03-29.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: ack *bars T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: right-click on it and configure colors? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Tech: Evl goes ooOOooOOoo at IAC DO Fiendish. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Tech: Evl goes ooOOooOOoo at IAC DO Fiendish. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: Ah, just not on the bars themselves! Thanks T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what do you mean T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: i like learning stuff here that i didn't know i wanted to know T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oh, gritz, if you're not able to right-click on the bars you should update T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I fixed that in...uhh... T3/r7/2022-03-29.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: it works if I click between the bars T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yeah, I don't know when but I fixed it so that it would work everywhere at some point T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: 2 years ago T3/r7/2022-03-29.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: Wierd I just installed this over the weekend, how do I update? T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hehe T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: run my installer and point it at the mushclient folder T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: quit mushclient first T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: type 'package update check'? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Zathrus Tech: im on r2017 T3/r7/2022-03-29.txt.gz:{chan ch=tech}Zathrus Tech: that sounds old T3/r7/2022-03-29.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: Yea, same here, that's like 200 versions behind! :P T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I won't force anyone to update but I do regularly add things that I think are good ideas T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: and fix things that I think are bad ideas, like crashes T3/r7/2022-03-29.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: Nah, thanks, just didn't even think I would need an update. :) T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you don't need one until you do, so I don't berate anyone for not updating but I will suggest it as a first step whenever there's a problem T3/r7/2022-03-29.txt.gz:{chan ch=tech}Etcha Sletch Tech: ty for that command, discovered i was way out of date as well. T3/r7/2022-03-29.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: Now the bars match my prompt! *whee* T3/r7/2022-03-29.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: And you can have numbers on the bars! In a font, that I kinda love... T3/r7/2022-03-29.txt.gz:{chan ch=tech}Tech: IAC DO Fiendish blushes as Kiss my Gritznakka gives him hawt smoochins! T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: the number overlay is kinda hard to read because mushclient can't do outlined text natively T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'm sad about it T3/r7/2022-03-29.txt.gz:{chan ch=tech}Kiss my Gritznakka Tech: I don't find it to hard to teach T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I fake it by printing the text a bunch of times offset by a pixel in each direction T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: i just updated and now all my text in the communication log is highlighted grey >.> T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: click it to deselect? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: no, nothing is selected T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: show me a screenshot T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: i can select and make it a different shade of grey T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what happens if you select something? T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: lol T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: show me haha T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: https://imgur.com/a/3vnBvEX T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: cool T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: heh T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ummmm T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: i realised i had been updating to the wrong dir... so this is the first update in a while lol T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what happens if you switch to a different color theme? T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: aard theme change T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: my eyes burn T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: but apart from that... no change T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: still highlighted, huh? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: yeah T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: lemme restart T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: no change T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: test T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ok that's weird and still cool. quit mushclient and then delete ...uhh.... T3/r7/2022-03-29.txt.gz:{chan ch=tech}Algaru Tech: running into a weird issue with the epic calendar plugin - i'm guessing related to daylight savings time. When I use the "tdif" option (display in local time instead of server time), it's off by an hour. Instead of showing tonight's OC run at 6 PM, it shows 5 PM. Has anyone seen this? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: did i find a real bug? *beams with pride* T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I mean who can say T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hmm T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ok step 1, enter this and then send me the output in a note or something \\\CallPlugin("b555825a4a5700c35fa80780","show",1) T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: then quit MUSHclient and go into MUSHclient/worlds/plugins/state/ and delete any file with a name starting with b555825a4a5700c34fa80780 T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: err b555825a4a5700c35fa80780 T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: ok one sec T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I guess make a copy of the files before you delete T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it will remove all your settings for the plugin T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: ah ok, so when i scroll up in main window, the bottom part gets highlighted the same T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ooh T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I wonder if your ansi color table is weirded out T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what's your black color set to? T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: https://imgur.com/a/3vnBvEX T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: actually it was a bit off T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: looked very black, but wasnt T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: fixed T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yay T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: so the bug might be that those buttons don't reflect the actual colours, or it's just hard to see with the grey background T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: color handling is a weird game T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I have to make so many assumptions about what color to show when T3/r7/2022-03-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I think I need to make it not show the background black color though. That's a bug I probably added when I added the ability to set background colors on text T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: yay a bug :) T3/r7/2022-03-29.txt.gz:{chan ch=tech}Evl Tech: oooh actually - if i zoom in on the screenshot i can see the difference... so that button is correct T3/r7/2022-03-30.txt.gz:{chan ch=tech}Haagen Tech: anyone familar with dinv? i have some issues where dbot.storage.savetable: failed to save files T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I guess durel's never coming back, huh? T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if you type 'quit' to get past the MOTD at log in, dinv really goes bonkers T3/r7/2022-03-30.txt.gz:{chan ch=tech}Dogwater Welding Tech: did he get locked up with Pleiades T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: wait, did pleiades get locked up? T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: is that why he's gone so long? T3/r7/2022-03-30.txt.gz:{chan ch=tech}Evl Tech: ah fiendish - i figured out why my "black" in not "black" T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oh? T3/r7/2022-03-30.txt.gz:{chan ch=tech}Evl Tech: because some items have black in them - i'll show T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oof T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: items aren't supposed to have black in them T3/r7/2022-03-30.txt.gz:{chan ch=tech}Evl Tech: https://imgur.com/a/4nkXYka T3/r7/2022-03-30.txt.gz:{chan ch=tech}Evl Tech: oh that's the other black T3/r7/2022-03-30.txt.gz:{chan ch=tech}Evl Tech: *shrugs* T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: type "seegrey" T3/r7/2022-03-30.txt.gz:{chan ch=tech}Evl Tech: colours... so confusing T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: aardwolf doesn't use plain black T3/r7/2022-03-30.txt.gz:{chan ch=tech}Evl Tech: i mighta just used the "make everything lighter" at some point because it was all so dark T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ah T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: well I think I have a solution either way T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I hope it doesn't break anything T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Evl, try the new version T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: with luck the problem will be gone without needing to change your colors T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: (package update check) T3/r7/2022-03-30.txt.gz:{chan ch=tech}Evl Tech: this is all predicated on my ability to install to the right directory of course XD T3/r7/2022-03-30.txt.gz:{chan ch=tech}Evl Tech: oh btw small thing, but the website for downloading makes the one with non-visuals seem like it's better by virtue of having a larger button.. you probs don't care, but some people go on instinct rather than reading (yes, i'm special) T3/r7/2022-03-30.txt.gz:{chan ch=tech}Evl Tech: brb T3/r7/2022-03-30.txt.gz:{chan ch=tech}Evl Tech: ooooh it works, nice :) T3/r7/2022-03-30.txt.gz:{chan ch=tech}Evl Tech: now if i knew the reason i changed it to lighter in the first place this would all make sense T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: heh T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ok I'm going to bed now T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if you figure out why drop me a note T3/r7/2022-03-30.txt.gz:{chan ch=tech}Evl Tech: night mate :) T3/r7/2022-03-30.txt.gz:{chan ch=tech}Stuyvesant Tech: seems like my dinve doesn't know I am tier1:( T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Side note, Durel WILL be coming back. Just tending to real life issues. :p T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: (Saw that stated last night) T3/r7/2022-03-30.txt.gz:{chan ch=tech}Stuyvesant Tech: is there a way to make dinv automatically change eq? T3/r7/2022-03-30.txt.gz:{chan ch=tech}Ennui Tech: you could set a levelup trigger to check your current level, and have that trigger a set of dnv changes? That's not totally w/in dinv, but a thing. T3/r7/2022-03-30.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods at Ennui. T3/r7/2022-03-30.txt.gz:{chan ch=tech}Ennui Tech: Though I'd probalby make it self-initialized so it doesn't try to do it in the middle of combat or anything T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: No way to do it automatically within DINV, but Ennui's suggestion is the best way to do it. T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Honestly, I just manually type my alias 'eqs' to do it every so often. T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Don't really want to do it on every level. T3/r7/2022-03-30.txt.gz:{chan ch=tech}Ennui Tech: eqs alias? :D T3/r7/2022-03-30.txt.gz:{chan ch=tech}Stuyvesant Tech: that sounds better actually T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Stands for 'eq switch' and just does dinv set wear T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Just set to execute, and you're good to go. T3/r7/2022-03-30.txt.gz:{chan ch=tech}Stuyvesant Tech: thanks Crowlet T3/r7/2022-03-30.txt.gz:{chan ch=tech}Stuyvesant Tech: thanks Crowley* T3/r7/2022-03-30.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2022-03-30.txt.gz:{chan ch=tech}Ennui Tech: So I have a ring of pale mushrooms set to it's warp room. But if I have a campaign mob, it instead opts to use my melosa's mirror and run to the "true start" room. Is there a way to change it so it defaults to the ring? I think this is the same problem I'm having w/imperial nation. T3/r7/2022-03-30.txt.gz:{chan ch=tech}Ennui Tech: sorry, SnD does. T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: If you are running to the area, it'll run to whatever room you have marked as a 'start room'. If you want it to be where pale of mushrooms lands, you can enter it, then xset mark. T3/r7/2022-03-30.txt.gz:{chan ch=tech}Ennui Tech: on that's what xset is for, thanks T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: xset mark. :P type 'snd help' for a full list of commands. T3/r7/2022-03-30.txt.gz:{chan ch=tech}Ennui Tech: hehe, yep, thanks :) Much appreciate. T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: does dinv have a container sort built in? T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: As in organizing items into certain bags? T3/r7/2022-03-30.txt.gz:{chan ch=tech}A Calm Stormwind Tech: it lets you organize things into bags, unless you mean sort like you want all items in a specific order in which case I don't think it can do that. T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: the latter T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Yeah, you can tell it you want potions to go into one bag, weapons into another, etc. T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: But no, cannot sort items the way you want in bags. T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Also, Durel is coming back. He's dealing with some unfortunate events in real life and having to take care of things. T3/r7/2022-03-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: did madcatz have an inventory sort? his google drive now requires permission to access T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I think MadCatz's inventory sort did not 'sort' them as you wanted, but displayed them sorted. I'm not sure the sort you want exists. T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Looks like Abelinc has one that does what you want, but his is for tf. Probably wouldn't take much to convert it to Lua, though. I'll take a look at it tonight. T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: hi :) any hint on how to properly set up a linux client? wine failed and mudlet looks all wonky T3/r7/2022-03-30.txt.gz:{chan ch=tech}Amarufox Tech: I just use aard mushclient under wine64 T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: wine64... that might be the easy solution, I should have tried that! let me see if it's better T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Fiendish has a setup guide on his wiki about how to set it up for WINE. T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: oh hey, i had a ton of issues with wine too. was getting some weird windows errors T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: I have a solution lemme find it T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: the latest wine and wine-staging releases were failing for me but i managed to get it to work with the lutris build. You can install this mushclient package and copy paste the aard mushclient files over the installation: https://lutris.net/games/install/19048/view T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: yeah wine64 failed too, complains about failing to create a document. Lutris saved me already a few times, let me give it a try too T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: just need to copy over the base mushclient files and never update the package :) T3/r7/2022-03-30.txt.gz:{chan ch=tech}404 Eroe Tech: I would not take any route that has "never update" appended to it. fiendish puts out updates and sometimes they solve bugs or give you new features. T3/r7/2022-03-30.txt.gz:{chan ch=tech}Epsilon Tech: Fiendish just needs to make sure he puts a RCE bug into every version that he can say he "fixed," which forces people to update. T3/r7/2022-03-30.txt.gz:{chan ch=tech}Tech: Epsilon looks around and whistles innocently. T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: (never update the lutris package) T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: because wine and wine-staging latest released on linux seem to be broken with mushclient T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: you can still update the aard mushclient T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: just need to avoidd lutris's updating because that may overwrite your mushclient configs T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: you would just be using lutris for their wine fork T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: got lutris and mushclient to start, now on to copy the configs :) T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: you /may/ be able to install lutris-wine through the aur or something if you're on arch linux and avoid lutris's package interface all together T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: Oh cool *thumbsup T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: yup I am on arch, prob that's also the reason half of the things are awesome but the other half are hopelessly broken T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: does mushclient even support automatic updates? T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: In theory, Fiendish could have it do automatic updates. In practice, it's probably not viable. T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: Maybe I'll put together a lutris package then. It would be nice to have a stable environment that supports easy updates :) T3/r7/2022-03-30.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Not everyone wants to update to the latest version anyway. Some are still on very old snapshots. T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: I think I got lost... if mushclient is working, which configs do I have to overwrite? or you were talking just about the connection configs? T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: Jimmy: The aard mushclient build comes with a lot of plugins and an aardwolf.mci file. I think I just overwrote those parts of the base mushclient install T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: got it, let me try T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: it may just be the world folder T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: I am back online from mushclient yayyyyy T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: which is impressive because it is showing so many errors upon opening... I guess I missed some details when copying stuff over T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: now on to debugging T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: what kinda errors? T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: missing plugins due to missing modules... I guess just copying the worlds folder wasnt enough T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: Ah, yeah :/ sorry T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: no worries, it's all extra helpful! will report back after copying over more stuff T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: Would be good to let fiendish know you also hit these issues. A lot of the wine support info I found online was from 2010 or earlier :) T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: yup same... it's impressive how active this game is considering the docs are 10+ year old! T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: and surprising there is no linux native client, given that linux users tend to be considered more "nerdy" and cli lovers T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: if you want to use an actual cli client there's plenty of those with native linux support T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: mushclient is about as GUIfied as it gets when it comes to MUDs in my experience T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: good point... but I still like a bit of clicky-clicky experience and nice floating maps and stuff T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: the mapper plugin alone makes mushclien mandatory imo T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: absolutely agree ^^ T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: and on top of that from my very little experience scripts are a must if one hopes to get any challenge done T3/r7/2022-03-30.txt.gz:{chan ch=tech}Ogreskull Tech: "Linux users" as a whole like Mudlet, TT++, and TF . T3/r7/2022-03-30.txt.gz:{chan ch=tech}Ogreskull Tech: or they use wine because RYO isn't needed for a telnet client T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: I used a really nice basic rust client when I first started playing... I actually prefer that gameplay experience a lot but not having separate chat pain and mapper script is just not feasible T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: so, lua folder is definitely also required to copy over. with that, still two errors about updates_checker and theme_controller, but all the rest seems to have gone smoothly T3/r7/2022-03-30.txt.gz:{chan ch=tech}EmilyBrewer Tech: if that's a pain you could try running the aard installer with lutris-wine-git T3/r7/2022-03-30.txt.gz:{chan ch=tech}MrJimmy Tech: nah I am pretty fine. hunting down the two missing lua files, it states clearly what they are so I guess some googling should solve it T3/r7/2022-03-30.txt.gz:{chan ch=tech}Gaballon Tech: anyone explain why lua doesn't like this: https://pastebin.com/HRHbLbFi T3/r7/2022-03-30.txt.gz:{chan ch=tech}Tinypotato Tech: wrap your numeric keys with square brackets e.g. [21] = "curse" T3/r7/2022-03-30.txt.gz:{chan ch=tech}Gaballon Tech: thanks T3/r7/2022-03-30.txt.gz:{chan ch=tech}I heard a Ruckus Tech: is mush through wine working for people on m1 macs? anyone know? T3/r7/2022-03-30.txt.gz:{chan ch=tech}Mannec Tech: hey folks, anyone up for some voodoo debugging? T3/r7/2022-03-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: sure T3/r7/2022-03-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2022-03-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what the hell did y'all tell mrjimmy to do??? T3/r7/2022-03-31.txt.gz:{chan ch=tech}Dolce Tech: what does it mean when i get "Alias function "inv.cli.covet.fn" not found or had a previous error. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Dhalsim Tech: Thou shalt not covet they neighbour's function. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Evl Tech: anyone have a working spellup plugin? T3/r7/2022-03-31.txt.gz:{chan ch=tech}Evl Tech: --h T3/r7/2022-03-31.txt.gz:{chan ch=tech}Cilmarill Tech: is there any way to get muschclient to still make the noises when it's not the focussed window? T3/r7/2022-03-31.txt.gz:{chan ch=tech}Odorless Nuanse Tech: ofcourse T3/r7/2022-03-31.txt.gz:{chan ch=tech}Odorless Nuanse Tech: playsound should play sound for you even if not focused T3/r7/2022-03-31.txt.gz:{chan ch=tech}Cilmarill Tech: no - when the window isn't focussed it doesn't play any sounds T3/r7/2022-03-31.txt.gz:{chan ch=tech}Odorless Nuanse Tech: it does for me T3/r7/2022-03-31.txt.gz:{chan ch=tech}Iron Duck Chuft Tech: best to keep things quiet and not attract the attention of hobbits, think it's just for cil T3/r7/2022-03-31.txt.gz:{chan ch=tech}Cilmarill Tech: that was not a very technical answer T3/r7/2022-03-31.txt.gz:{chan ch=tech}Odorless Nuanse Tech: are you sure you dont have system removing nonfocused sounds? not mushclient T3/r7/2022-03-31.txt.gz:{chan ch=tech}Cilmarill Tech: I'm definitely not sure because I've never heard those 4 words in sequence before ;) T3/r7/2022-03-31.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: No, there's a setting that allows you to play sounds in the background. I am trying to remember what it is. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Amarufox Tech: can see details on http://www.gammon.com.au/scripts/doc.php?function=PlaySound T3/r7/2022-03-31.txt.gz:{chan ch=tech}Amarufox Tech: SetOption ("play_sounds_in_background", 1) T3/r7/2022-03-31.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Type: \\\SetOption("play_sounds_in_background", 1) -- I think. T3/r7/2022-03-31.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Yeah, Fox got it. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Cilmarill Tech: sorry I still don't understand :( do I modify the plugin script? T3/r7/2022-03-31.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: No, you type that on the command line. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Cilmarill Tech: "Sorry Cilmarill, I don't understand you" T3/r7/2022-03-31.txt.gz:{chan ch=tech}Odorless Nuanse Tech: use shift-ctrl-6 and check what is your scripting prefix T3/r7/2022-03-31.txt.gz:{chan ch=tech}Odorless Nuanse Tech: and use that in place of \\\ what crowley said T3/r7/2022-03-31.txt.gz:{chan ch=tech}Cilmarill Tech: yeah it says it's tripple backslash T3/r7/2022-03-31.txt.gz:{chan ch=tech}Odorless Nuanse Tech: then it's just what crowley said T3/r7/2022-03-31.txt.gz:{chan ch=tech}Cilmarill Tech: oh ooohh it's happening now T3/r7/2022-03-31.txt.gz:{chan ch=tech}Iron Duck Chuft Tech: I'm glad my suggestion helped T3/r7/2022-03-31.txt.gz:{chan ch=tech}Cilmarill Tech: thanks!! it's just that it didn't give me some sort of confirmation T3/r7/2022-03-31.txt.gz:{chan ch=tech}Odorless Nuanse Tech: yeah, it doesnt say anything if it works T3/r7/2022-03-31.txt.gz:{chan ch=tech}Selitos Tech: wow you can type script cmds in the cmd line with \\\ didn't know that T3/r7/2022-03-31.txt.gz:{chan ch=tech}Algaru Tech: that's pretty cool, i had no idea that was a thing T3/r7/2022-03-31.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods at Selitos. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Selitos Tech: learned something new today :) T3/r7/2022-03-31.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I use it all the time for just for checking things like what Windows I have defined, etc. T3/r7/2022-03-31.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: If you want to see every option you can play around with, you can do: \\\require 'tprint' tprint(GetOptionList()) T3/r7/2022-03-31.txt.gz:{chan ch=tech}Summoner Yuna Tech: Anyone know anything about why Durel's dinv suddenly started acting up yesterday? Some new code in the MUD or something that's confusing the plugin? T3/r7/2022-03-31.txt.gz:{chan ch=tech}Selitos Tech: my dinv works fine, i suggest you reset yours T3/r7/2022-03-31.txt.gz:{chan ch=tech}404 Eroe Tech: the mud hasn't rebooted, likely no new code. my dinv works. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Summoner Yuna Tech: By reset do you mean dinv rebuild? Because I've done that. Didn't help. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Ennui Tech: mine is fine as well T3/r7/2022-03-31.txt.gz:{chan ch=tech}Algaru Tech: messed up how? T3/r7/2022-03-31.txt.gz:{chan ch=tech}Make it Reyn Tech: "dinv reload" T3/r7/2022-03-31.txt.gz:{chan ch=tech}Anssett Tech: my dinv isn't equipping gear i think it should be, but that's more likely to be my priority being screwed up T3/r7/2022-03-31.txt.gz:{chan ch=tech}Tech: Anssett grins evilly. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Summoner Yuna Tech: It's not equipping gear as it should. And it makes no sense. It keeps wanting to equip my Aard Hotel portal despite the fact that it is much worse than the Entropy portal by every single metric. T3/r7/2022-03-31.txt.gz:{chan ch=tech}404 Eroe Tech: dinv refresh all? T3/r7/2022-03-31.txt.gz:{chan ch=tech}Selitos Tech: dinv reload then dinv refresh all T3/r7/2022-03-31.txt.gz:{chan ch=tech}Summoner Yuna Tech: A clanbie also reports dinv starting to act up tomorrow. I have done dinv refresh and dinv rebuild. Still doing it. Doing another dinv rebuild now. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Summoner Yuna Tech: After the dinv reload. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Anssett Tech: it's starting to act up tomorrow? T3/r7/2022-03-31.txt.gz:{chan ch=tech}Summoner Yuna Tech: Sorry, yesterday, not tomorrow. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Tech: Anssett chuckles politely. T3/r7/2022-03-31.txt.gz:{chan ch=tech}404 Eroe Tech: that's okay, time is all kinds of confusing. I just bought the tomorrow and moved on. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Selitos Tech: i usually find if things are equiping the way i expect its often a dinv refresh all works T3/r7/2022-03-31.txt.gz:{chan ch=tech}Selitos Tech: aren't T3/r7/2022-03-31.txt.gz:{chan ch=tech}Selitos Tech: depending on your priorties it doesn't have to equip the mbest peive you have in every slot it will adjust some slots to get max priorities even if its not the best you have for that slot T3/r7/2022-03-31.txt.gz:{chan ch=tech}404 Eroe Tech: also that. T3/r7/2022-03-31.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: DINV takes into account your priorities and current stats from spells and base. It'll try to max out your biggest priority, and once it has done that, it'll find pieces to compensate for the other stats. T3/r7/2022-03-31.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: For that reason, "best piece" may not be what YOU think is best, but what maximizes your stats to the best of its ability. T3/r7/2022-03-31.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It's why you may have a level 91 piece when you're level 151, for example. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Anssett Tech: ya the one i'm fighting with right now is objectively better in every priority except int, and it's 1 instead of 2 int. i wonder if the order of the entries on the priority affects the order that it's fulfilled T3/r7/2022-03-31.txt.gz:{chan ch=tech}Summoner Yuna Tech: These two portals have been in my inventory for months now and dinv has never had a problem wearing the lemniscate once I get past a certain level. Never. And there is no metric by which the Lemniscate is better than the Aard Hotel portal. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Quadrapus Tech: are you sure you want to use that portal? :P T3/r7/2022-03-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: fyi y'all, new versions of the aardwolf mushclient package have an alias for toggling sounds in background. type 'aard help' T3/r7/2022-03-31.txt.gz:{chan ch=tech}Iron Duck Chuft Tech: can you also fix the sound for my oraclebox vm? T3/r7/2022-03-31.txt.gz:{chan ch=tech}Amarufox Tech: sure, just give me log in T3/r7/2022-03-31.txt.gz:{chan ch=tech}Tech: Amarufox winks at Iron Duck Chuft. T3/r7/2022-03-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'll need the model of your first boat, the name of your first beastly fido, and the last four digits of your sanc aura serial number T3/r7/2022-03-31.txt.gz:{chan ch=tech}Summoner Yuna Tech: For crying out loud, dinv is still insisting I wear the Aard Hotel portal even after dinv reload and dinv rebuild T3/r7/2022-03-31.txt.gz:{chan ch=tech}Fatal FrostBite Tech: bad dinv! T3/r7/2022-03-31.txt.gz:{chan ch=tech}Iron Duck Chuft Tech: have you considered executing the developers immediately? T3/r7/2022-03-31.txt.gz:{chan ch=tech}Quadrapus Tech: Chuft for imm! T3/r7/2022-03-31.txt.gz:{chan ch=tech}Summoner Yuna Tech: Also, yesterday, it refused to wear the Tiger of Kai over the Aard Hotel Portal. Makes no sense. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Tech: Amarufox "likes" this. T3/r7/2022-03-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: first try turning the developers off and on again T3/r7/2022-03-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: refused makes it sound like it has agency T3/r7/2022-03-31.txt.gz:{chan ch=tech}Tech: There goes Fatal FrostBite giggling again, and this time he's looking towards IAC DO Fiendish. T3/r7/2022-03-31.txt.gz:{chan ch=tech}Iron Duck Chuft Tech: maybe dinv is skynet T3/r7/2022-03-31.txt.gz:{chan ch=tech}Tech: Iron Duck Chuft thinks IAC DO Fiendish should have a nap, ZEN FIRE ZE MISSILES!! T3/r7/2022-03-31.txt.gz:{chan ch=tech}Mannec Tech: anyone up for some wierd voodoo debugging? T3/r7/2022-03-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what's up T3/r7/2022-03-31.txt.gz:{chan ch=tech}Epsilon Tech: ... hmmm. Is Kazul's text from the gossip channel showing up twice in the chat window a known bug in MUSHClient? :V T3/r7/2022-03-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: is what what?