T3/r7/2021-12-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: questions? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Nohh Tech: how is babby form T3/r7/2021-12-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: something about instain mothers iirc T3/r7/2021-12-01.txt.gz:{chan ch=tech}Braun Tech: not unless you want to teach a beginner sql and how to apply it to SnD >.> T3/r7/2021-12-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I could teach some sql, but also can google T3/r7/2021-12-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I don't intentionally assist with using SnD though T3/r7/2021-12-01.txt.gz:{chan ch=tech}Sheriff Shindo Tech: it's not actually a S&D question more a interogate the mapper question... T3/r7/2021-12-01.txt.gz:{chan ch=tech}Braun Tech: so I think I know what I'm aiming for... I'm going to add a new column to rooms in the aardwolf.db. That collumn is going to be an indicator of preference so when I use the mapper_extender command xm % it will list the preferred rooms first. T3/r7/2021-12-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: best to not change the db layout T3/r7/2021-12-01.txt.gz:{chan ch=tech}Nohh Tech: better to use a separate database/table and pull it in but that's making it a lot more complicated T3/r7/2021-12-01.txt.gz:{chan ch=tech}Sheriff Shindo Tech: you can make your own little db and then do magical things like crossmergy stuffs T3/r7/2021-12-01.txt.gz:{chan ch=tech}Braun Tech: I couldn't really put my head around another way... The sorting by uid is kind of messy when you just want to go from one room to the next (not all areas are in a nice order). T3/r7/2021-12-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: a little more complicated maybe, not a lot T3/r7/2021-12-01.txt.gz:{chan ch=tech}Sheriff Shindo Tech: you just need two columns, vnum and preference T3/r7/2021-12-01.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: anyone else use basts spellup miniwindow? I'm getting a error that it runs out of memory T3/r7/2021-12-01.txt.gz:{chan ch=tech}Nohh Tech: i am, never seen that error T3/r7/2021-12-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: wow. paste the error in a note T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Speaking of spellup mini-windows, wh owas it that was making a graphical one with animations? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Nohh Tech: khadaji? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Aoric Tech: Khadaji maybe? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: maybe I need to go through and reinstall all the parts that it uses? I'd rather just not get it again T3/r7/2021-12-01.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: anyone know what it relies on? spellup, miniwin. and what broadcasts? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: When writing an alias, what's the syntax for an optional wildcard? Apparently it's neither (.*)\s*$ or \s*(.*)$ T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: (.*)? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Isn't that just a wildcare? T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: You should be more restrictive with it, if you can. T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: No, that says that something may or may not be there. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Ah, thanks. T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: So if I did: (\d+)([A-Z]+)?(Random), it'll check for both 123Random and 123MADNESSRandom T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Hmm... not working. ^twi(s|st|ste|ster) (.*)?$. Twis/twist/twiste/twister doesn't work now. T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Bear in mind that the wildcard placeholder still exists, so (Random) would still be %3, no matter what. T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Because you have a space, so it's looking for "twis ", and not "twis" T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Aah, thanks T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Remove the space between parentheses, and it should work. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: OK, next problem... >_>. So if I input twister (or variantions thereof) and something else, %2 will input twister %2 correctly. But just inputting twister will instead input twister + last 2 letters. So twist st for instance. Any way to fix this? T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Change the (.*)? to ( .*)? -- that way it forces looking for a space first. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Fyzzy Xyzzy Tech: change the order of you search?/ T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Thanks T3/r7/2021-12-01.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Bear in mind that the space will now be counted in %2, though. T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: You can rectify that by doing: (?: (.*))? instead T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: While I've got you, is there an easy way to do an if clause to check GMCP if you've got a certain class? Like, if youarecleric then. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Fyzzy Xyzzy Tech: if char.subclass or char.class? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Fyzzy Xyzzy Tech: or do you just need to know if the class is in the list of remorts... T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: I need an if clause to do something if I do have a certain class in my current list of morts, whether primary or subclass. T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: You can do: require 'gmcphelper' if string.match(gmcp("char.base.classes"), "") then yippee else nope end. T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: For instance, classes are 260 for me: 2 for thief, 6 for psi, 0 for mage. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Thanks again! :D T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: If you query that and match it up with yours, you can see what number matches with each class. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Hmmm... can't seem to find a complete list of the values for the classes. T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I used to have them, then I lost them. T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Xyzzy can do: \\\require 'gmcphelper' print(gmcp("char.base.classes")) to show us the list, then we can match it off him. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Quadrapus Tech: mage, cleric, thief, warrior, ranger, paladin, psi T3/r7/2021-12-01.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley's shifty eyes dart back and forth. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley thanks Quadrapus heartily. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Is that 0 to 6 in order? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Quadrapus Tech: yes T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Note the range is from 0-6, not 1-7. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Thanks, guys! :D T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Yuna could have figured it out himself... he has 6 of 7 classes. :p T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Thanks crazy talk. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Quadrapus Tech: should probably check, given i am in an evil clan T3/r7/2021-12-01.txt.gz:{chan ch=tech}Tech: Quadrapus throws back his head and cackles with insane glee! T3/r7/2021-12-01.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley snickers with Quadrapus about their shared secret. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Tech: http://wiki.aardwolf.com/index.php/Clients/GMCP is now updated to show all of the char.base fields, and with a cheat sheet on the classes values T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: I can also buy copious amounts of chaos portals :P T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Mischan T3/r7/2021-12-01.txt.gz:{chan ch=tech}Tech: Scrooge Mc Ruckus's shifty eyes dart back and forth. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: That's not what I meant. I was asking if it's worth it to spend TPs to TPenchant weapons besides your pupping ones as a T9. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Darnnit! T3/r7/2021-12-01.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley thanks you heartily. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Aciath Tech: does anyone have a link to the VI mush client? T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Finger Fiendish. Choose the Non-visual. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Aciath Tech: thanks T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It's the same link as the full visual. Just two separate options. T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Er, not Non-visual. Choose VI. :p T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Or wait, whatever. T3/r7/2021-12-01.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I'm confusing myself. Haha. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Uh, using GMCP, if you want an action to do a certain thing if you've killed your quest mob, should it be: require "gmcphelper" | if comm.quest {"action": "killed"} then? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Karathos Tech: think you want to use a plugin for that https://github.com/fiendish/aardwolfclientpackage/wiki/Using-GMCP#getting-notified-when-new-gmcp-data-arrives T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Alright. Tryin to make heads and tails of that help file. How would you turn that into a plugin that triggers on certain strings if my quest mob is dead? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Ah Fatt Tech: need some help on mapper - my xrunto talsa brings me to watchmen and tries to exit from there even though there's no quick exit to talsa, how can I fix it? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Summoner Yuna Tech: Hmmm... I can't seem to find a gmcp check for whether you're on a campaign or not. T3/r7/2021-12-01.txt.gz:{chan ch=tech}Selitos Tech: ok not sure whats going on but I transfered my mush folder to a new comupter and I'm gettiung Aardwolf_GMCP_Mapper error T3/r7/2021-12-01.txt.gz:{chan ch=tech}Selitos Tech: code 11 errror? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Selitos Tech: database integrity failure? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Selitos Tech: don't understand works fine on the old computer T3/r7/2021-12-01.txt.gz:{chan ch=tech}Selitos Tech: any chance Win 11 is a problem? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Rakiso Tech: could be, try to run mush on combatibility mode T3/r7/2021-12-01.txt.gz:{chan ch=tech}Selitos Tech: how would i do that? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Selitos Tech: nope i tried running in comparatibility mode, recommended settings was win 8, got the same errors T3/r7/2021-12-01.txt.gz:{chan ch=tech}Selitos Tech: i have tried copying the mush folder over to the new computer twice now..same result T3/r7/2021-12-01.txt.gz:{chan ch=tech}Selitos Tech: so not like it corrupted the file by chance T3/r7/2021-12-01.txt.gz:{chan ch=tech}Selitos Tech: am i missing something...i moved the mush folder several times in thre past the same way,,no problems T3/r7/2021-12-01.txt.gz:{chan ch=tech}Selitos Tech: ok where are all my mush experts ??? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Aciath Tech: either hiding or sleeping T3/r7/2021-12-01.txt.gz:{chan ch=tech}Aciath Tech: maybe an odd question. Is there a standard I don't understand that message? Wishing to gag it and play a sound but can never keep track of how many I'm seeing now T3/r7/2021-12-01.txt.gz:{chan ch=tech}Ah Fatt Tech: need help for mapper, my xrunto talsa keeps running to a non existent exit in watchmen, how do i fix it? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Nohh Tech: go to the room in watchmen and do 'mapper purgeroom' T3/r7/2021-12-01.txt.gz:{chan ch=tech}Ah Fatt Tech: did purgeroom and purgearea watchmen, but it didn't work :( T3/r7/2021-12-01.txt.gz:{chan ch=tech}Save a Roume Tech: purge the first room of the area you're trying to go to? T3/r7/2021-12-01.txt.gz:{chan ch=tech}Nohh Tech: are you sure it's a problem with watchmen, and not some other room? go stand at recall and do 'mapper where 26917' and follow the path manually T3/r7/2021-12-02.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: anyone doing l T3/r7/2021-12-02.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: anyone doing advent of code? https://adventofcode.com/ T3/r7/2021-12-02.txt.gz:{chan ch=tech}Sheriff Shindo Tech: didn't even know it existed T3/r7/2021-12-02.txt.gz:{chan ch=tech}Nohh Tech: 100 people solving a problem within 3 minutes of posting, cmon guys :P T3/r7/2021-12-02.txt.gz:{chan ch=tech}Nohh Tech: though reading them, they're super basic so far T3/r7/2021-12-02.txt.gz:{chan ch=tech}Redryn Tech: well i just tried and finished the puzzles out so far T3/r7/2021-12-02.txt.gz:{chan ch=tech}Redryn Tech: basically seems like you rush to do it the moment it opens T3/r7/2021-12-02.txt.gz:{chan ch=tech}Nohh Tech: what color is your submarine? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Redryn Tech: how do you see? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Nohh Tech: use your imagination T3/r7/2021-12-02.txt.gz:{chan ch=tech}Redryn Tech: it's invisible T3/r7/2021-12-02.txt.gz:{chan ch=tech}Tech: Redryn crosses his arms and nods slowly and sagely. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Nohh Tech: just transparent, or is it some kind of metamaterial that reflects the ocean around it so you cannot see what's inside of it either? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Nohh Tech: its important you think of these things now, would hate to have to decide when you're on the clock and then miss out on the leaderboard to someone better prepared than you T3/r7/2021-12-02.txt.gz:{chan ch=tech}Redryn Tech: you assume i'll be trying to get on the leaderboard :p T3/r7/2021-12-02.txt.gz:{chan ch=tech}Nohh Tech: yeah, 2 days behind, no point T3/r7/2021-12-02.txt.gz:{chan ch=tech}Redryn Tech: i think more time spent trying to think of how to get the data input into mush and reading the instructions T3/r7/2021-12-02.txt.gz:{chan ch=tech}Nohh Tech: what's that now, into mush? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Braun Tech: My brain... It's mostly mush now.. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Redryn Tech: yeah... wrote the script into the immediate execute thingy T3/r7/2021-12-02.txt.gz:{chan ch=tech}Nohh Tech: lol ok T3/r7/2021-12-02.txt.gz:{chan ch=tech}Tech: Salty Popcorn suffers in silence, a single tear rolling down his cheek. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Tech: Gaelehad offers Popcorn a tissue T3/r7/2021-12-02.txt.gz:{chan ch=tech}Salty Popcorn Tech: all my aliases, triggers and variables are gone T3/r7/2021-12-02.txt.gz:{chan ch=tech}Gaelehad Tech: oops T3/r7/2021-12-02.txt.gz:{chan ch=tech}Gaelehad Tech: you do have a zipped backup of mushclient... right? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Salty Popcorn Tech: yesterday MushClient failed to create a backup due to lack of space (dont ask how this happened). just got an error when starting the client, but it worked fine T3/r7/2021-12-02.txt.gz:{chan ch=tech}Salty Popcorn Tech: today the client stars, but does not load Aard. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Salty Popcorn Tech: (now using fresh one) T3/r7/2021-12-02.txt.gz:{chan ch=tech}Salty Popcorn Tech: I considered suicide, but I live on the first floor. Anyway, I'll manage somehow, I don't use any plugins anyway T3/r7/2021-12-02.txt.gz:{chan ch=tech}Pumpkin Tech: the mapper database is a file in the main directory, the backups are also files, maybe you can just find them and restore some backups T3/r7/2021-12-02.txt.gz:{chan ch=tech}Borg Tech: if you can get the arrdwolf.mcl open in a text file you shoudl be able to scrape them out and drop them in the new one T3/r7/2021-12-02.txt.gz:{chan ch=tech}Gaelehad Tech: well in future you can keep a copy of the whole mushclient directory safe on like a flashdrive or something T3/r7/2021-12-02.txt.gz:{chan ch=tech}Salty Popcorn Tech: thx, will try to dig into this T3/r7/2021-12-02.txt.gz:{chan ch=tech}Pumpkin Tech: if you're playing with files, make sure to have mushclient closed T3/r7/2021-12-02.txt.gz:{chan ch=tech}Salty Popcorn Tech: dude's gquesting and giving out advice T3/r7/2021-12-02.txt.gz:{chan ch=tech}Tech: Salty Popcorn points excitedly at Gaelehad! T3/r7/2021-12-02.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: the bot is strong with this one. :) T3/r7/2021-12-02.txt.gz:{chan ch=tech}Aoric Tech: multi tasking, nods T3/r7/2021-12-02.txt.gz:{chan ch=tech}Salty Popcorn Tech: ok, quiting, here goes nothing T3/r7/2021-12-02.txt.gz:{chan ch=tech}Gaelehad Tech: combat at tier 1 takes forever, so type and kill T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: We hope youre enjoying everything Netflix has to offer. Starting on Dec 15, 2021, your local sales tax will be applied starting on your next monthly bill. -- Wonder if I should convince Netflix I have no local sales tax by suddenly moving out of the country. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: does SnD take into account the type of choas portal for gqs and things. or will it just keep trying the wrong one? T3/r7/2021-12-02.txt.gz:{chan ch=tech}[Battle] Scars Tech: it does not T3/r7/2021-12-02.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: yeah it tries to use plain ones all the time T3/r7/2021-12-02.txt.gz:{chan ch=tech}[Battle] Scars Tech: but you could create an alias to set the level of your non-golden cps to 999 or something for during gqs, and then an alias to fix that T3/r7/2021-12-02.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: any of you have a bypass? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Gaelehad Tech: someone wrote a sneaky function that gets the mapper to turn off all non-golden chaos portals and that solves the problem T3/r7/2021-12-02.txt.gz:{chan ch=tech}[Battle] Scars Tech: i think yuna did it T3/r7/2021-12-02.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: have a trigger that disables and enables plain ones via mapper, just set level to 999 T3/r7/2021-12-02.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: makes perfect sense. no idea how to write it though. T3/r7/2021-12-02.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: or alias, which ever you prefer. it's just a matter of going over all nongolden ones with full portal command T3/r7/2021-12-02.txt.gz:{chan ch=tech}[Battle] Scars Tech: mapper fullportal {} {} T3/r7/2021-12-02.txt.gz:{chan ch=tech}[Battle] Scars Tech: or better T3/r7/2021-12-02.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: use this -> There is also 'mapper fullportal {} {} ' which lets you set all portal aspects in one command without being in the target room. T3/r7/2021-12-02.txt.gz:{chan ch=tech}[Battle] Scars Tech: mapper portallevel T3/r7/2021-12-02.txt.gz:{chan ch=tech}[Battle] Scars Tech: oh yeah T3/r7/2021-12-02.txt.gz:{chan ch=tech}[Battle] Scars Tech: hisazul beat me to it T3/r7/2021-12-02.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: index changes if you add something before it T3/r7/2021-12-02.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: tho you can do it with index, probably about the same amount of writing when you add another one T3/r7/2021-12-02.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: I think that makes sense. so add a trigger to when I join a gq. to switch them to 999? T3/r7/2021-12-02.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: yep T3/r7/2021-12-02.txt.gz:{chan ch=tech}[Battle] Scars Tech: when the gq starts is probably an easy line T3/r7/2021-12-02.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: I think that makes sense. I put it in notepad. thanks :) T3/r7/2021-12-02.txt.gz:{chan ch=tech}Vanellus Tech: Hadar I'm getting a predict prob apparently soething called LetItGo is broken. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Count Zensch Tech: after mushclient crashed i had to identify everything, what else can be broken now? T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Your spirit. T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: The problem with crashes is it sometimes corrupts state files, so any number of things can be broken. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: I unintentially deleted my Mush client folder and now i can't find where to download an "easy hotkey" plugin from. Can anybody help, please? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Aciath Tech: can't you just bind your keys in a script? Seem to remember doing that. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Emm.. idon't know how T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: \\\AcceleratorTo("Ctrl+L", "laugh") ? :p T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Doesn'T work. But i think i don't have Accelerator either T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: can I use an accelerator to bind Alt + F4 to something useful, like "barter WTS TPs for Market Rate + 1M"? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Aciath Tech: should be able to. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: that sounds like a good project for today T3/r7/2021-12-02.txt.gz:{chan ch=tech}Aciath Tech: unless it won't let you have alt-F4. Let me check T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: a lot of fun to test too T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: With easy hotkeys i could do any bindings T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: even the winkey?! T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Never tried that T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: don't mind me, I really offer nothing useful to this channel.. just attempts to troll harder than my competition T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: The other problem a i found, that ALL my mapper maps lost. Is there some site where i can download the discovered maps for Aardwolf? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Tech: Doge Water Yajan giggles. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: might be able to convince a friend to send you a copy of their mapper db file T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: not sure if you can cleanly import if you need to do some hackery though T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Uhum... T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: mine is FUBARed pretty bad so don't recommend mine T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: I had so much discovered with custom exits adjusted... T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: on the bright side if you campaign often, you can rebuild it in a couple remorts easily I think T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: probably not what you want to hear, but it's doable T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Couple remorts. :)) T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Sure it is doable. I have only 1 single remort T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: cexits and all, bit of work of course T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: hehehe T3/r7/2021-12-02.txt.gz:{chan ch=tech}Aciath Tech: happy to send my map DB if needed. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: might want to ask someone with inside knowledge for help if importing directly doesn't work nicely T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I'm just kind of theorizing here T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: theoretically should work.. and save you a lot of time T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: you may have to remove portals and such once you get it though, since you probably won't have Aciath's portals T3/r7/2021-12-02.txt.gz:{chan ch=tech}Ayasinda Tech: and maybe also his clanexits because you are not in his clan T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: oh yeah, that too T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Yes, i'll try to T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Accelerator is built into MUSHclient... T3/r7/2021-12-02.txt.gz:{chan ch=tech}Ayasinda Tech: I think rebuilding your self will be easier and faster T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Yes, discovered that just right now :) T3/r7/2021-12-02.txt.gz:{chan ch=tech}Ayasinda Tech: rebuilding your mapper yourself T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: \\\AcceleratorTo("Ctrl+L", "laugh", 10) -- That should work, for instance. 10 is 'send to world' T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Yes, tried it once more. It does work T3/r7/2021-12-02.txt.gz:{chan ch=tech}Le do, lo Shakia Tech: yeah if you get a fully fleshed map it wil be just as much workm removing all the portals and assumed passdoor T3/r7/2021-12-02.txt.gz:{chan ch=tech}Ayasinda Tech: ahh yes, passdorr I forgot about T3/r7/2021-12-02.txt.gz:{chan ch=tech}Tech: Mellorn cries on a gypsum flower's shoulder. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: cry cry cry T3/r7/2021-12-02.txt.gz:{chan ch=tech}Le do, lo Shakia Tech: excuse to campaign more and get more qp :P T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Sure i will. I will do it anyway, for i need qps T3/r7/2021-12-02.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I've rebuilt mine from scratch once before.. it's honestly not that bad.. cexits are the one thing that are a bit of work, the rest is pretty much automatic T3/r7/2021-12-02.txt.gz:{chan ch=tech}Faylen Tech: does anyone know why dinv portal use wouldn't be taking the portal out of a bag? It does for me, but with aciath it's breaking T3/r7/2021-12-02.txt.gz:{chan ch=tech}404 Eroe Tech: is it not their bag? T3/r7/2021-12-02.txt.gz:{chan ch=tech}404 Eroe Tech: if they don't own the bag it won't work T3/r7/2021-12-02.txt.gz:{chan ch=tech}Aciath Tech: it's breaking more than my mind has been broken by ready player T3/r7/2021-12-02.txt.gz:{chan ch=tech}Aciath Tech: nope, my bag T3/r7/2021-12-02.txt.gz:{chan ch=tech}404 Eroe Tech: try dinv refresh all? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Aciath Tech: trying that now T3/r7/2021-12-02.txt.gz:{chan ch=tech}Omphalon Tech: Need to do a dinv refresh all after dying to get portals to work T3/r7/2021-12-02.txt.gz:{chan ch=tech}404 Eroe Tech: need to do a dinv refresh all after dying to get most things to work :p T3/r7/2021-12-02.txt.gz:{chan ch=tech}Durel Tech: It's a subtle ploy to teach you to not die T3/r7/2021-12-02.txt.gz:{chan ch=tech}Tech: Durel's shifty eyes dart back and forth. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Faylen Tech: rofl T3/r7/2021-12-02.txt.gz:{chan ch=tech}Faylen Tech: think in this case it was tiering T3/r7/2021-12-02.txt.gz:{chan ch=tech}Aciath Tech: hey! it worked! T3/r7/2021-12-02.txt.gz:{chan ch=tech}Faylen Tech: but it seems to work now, yay! thanks T3/r7/2021-12-02.txt.gz:{chan ch=tech}404 Eroe Tech: subtle ploy to teach you not to progress! T3/r7/2021-12-02.txt.gz:{chan ch=tech}Faylen Tech: rofl T3/r7/2021-12-02.txt.gz:{chan ch=tech}Aciath Tech: finally I don't wanna punch Athena in the throat. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: any mush experst online T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: ? T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: What's up? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: i'm having an issue moving my client to my new win 11 computer T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: it should be as simple as copying the folder that mush is in T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: although i haven't played with win11 T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Just don't save it to protected locations like C:\Program Files. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: i copied the whole folder from my old win 10 computer, whcih i've done before. but i get aardwolf.mcl errors T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: path changed T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: to something T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: (my guess :P) T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: code 11 T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: i copde it to the same place on both computers T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: can you imgur or pastebin the error? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: or is it just "code 11"? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley grins evilly at The River Styx. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: says the sadatebase is corrupt and then the GMCP throws out runtime errors T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Mis. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Greybeard Tech: revert back to windows 10 T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: yes the software still works fine on my win 10 computer T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It's possible a corrupt save. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: ooh that sounds like not-a-mush problem to me. wonder if it was copied while the database was open T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: i tried saving twice T3/r7/2021-12-02.txt.gz:{chan ch=tech}Greybeard Tech: does a new copy of mush work on win 11? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods at Anssett. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: i closed the software and copied the folder T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: nothing was open that i know of T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: is there a better way to make sure? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: don't know if sqlite has any database health check/fix things T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: i was curious if there was something win 11 is msising to read the database T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: you could always do a new install then copy just the aardwolf.db and snddb.db files over T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: mush should have everything it needs T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: in that folder T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: yeah its a portal software. don't need to install it T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: portable even T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: anyone else running on win 11? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: any ideas how i get it to work? T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I've not had any issues with Win 11 myself. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: maybe make sure you're not using an aggressive antivirus that's eating things. what you're describing really sounds like something had the database in use when it was copied T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: i'd start with a fresh install of mush at the desired location with no migration and make sure it works, then start copying databases over T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: one at a time etc T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: ok i will try copying it again...i've copied it before had no issues T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: but theu is the first time i moved to win 11 computer T3/r7/2021-12-02.txt.gz:{chan ch=tech}Aciath Tech: anyone have the text for when you are disarmed? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Odorless Nuanse Tech: DISARMS you and you struggle not to drop your weapon\!$ T3/r7/2021-12-02.txt.gz:{chan ch=tech}Aciath Tech: thanks a ton! T3/r7/2021-12-02.txt.gz:{chan ch=tech}Odorless Nuanse Tech: but remember, that is for nodisarm .. you need another if you dont have bracers T3/r7/2021-12-02.txt.gz:{chan ch=tech}Talbor Tech: just the DISARM part works to T3/r7/2021-12-02.txt.gz:{chan ch=tech}Vasilica Tech: anyone has a plugin for aard invis ring ? to remove/wear after a fight ? T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: DINV does that. T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Oh, wait, that's regen rings. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Durel Tech: No, dinv has one for the regen ring when you sleep T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: My mistake. :p T3/r7/2021-12-02.txt.gz:{chan ch=tech}Durel Tech: Screenshot taken! Thanks for the early Christmas gift Crow :p *grin* T3/r7/2021-12-02.txt.gz:{chan ch=tech}Vasilica Tech: so nothing for invis ring ? T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: There might be something out there. It's trivial anyway. T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: If you don't mind the spam (it's two lines), you can set it to trigger off the kill line. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Vasilica Tech: make and alias to remove/wear and then a trigger probably T3/r7/2021-12-02.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Tech: Doge Water Yajan . o O ( Would trivia be considered... "trivial"..? ) T3/r7/2021-12-02.txt.gz:{chan ch=tech}Vasilica Tech: kill line is that when you get the experience ? T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Generally, yes. T3/r7/2021-12-02.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: You would also want to do it off the pointless kill line. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley smirks at Doge Water Yajan's saying. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Vanellus Tech: Can I make client log timestamps in ISO date? YYYY-MM-DD hh:mm T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: How do i reffer to a variable in Accelerator? ///Accelerator ('Shift+End', 'look @bag') doesn't work. It doesn't understand that @bag is a variable T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: getvariable probably T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Trying that... with no success so far. :) T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: i haven't fooled around much with accelerators. i assume you're not getting a useful error lol T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: you may have to get a little advanced with it to run a script function before sending to world T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: looks like it's intended to just send commands to the world. https://www.gammon.com.au/scripts/doc.php?function=Accelerator might help T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: I always have problem with format like quotes ect... So i know how all this does work, it is just hard to me to make a programm understand me :) T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: maybe https://www.gammon.com.au/scripts/doc.php?function=AcceleratorTo T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: ah. well accelerators i know little about :P hopefully those links give you some useful info. 99% likelihood of you needing to follow the Lua format T3/r7/2021-12-02.txt.gz:{chan ch=tech}High Risk Losteix Tech: Accelerator('Shift+End', 'look '..GetVariable('bag')) works for me.. T3/r7/2021-12-02.txt.gz:{chan ch=tech}High Risk Losteix Tech: i mean, all it does is look at the bag, which isn't all that useful. but it does it. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Anssett Tech: yeah i wasn't going to question the functionality. who am i to judge if somebody wants to look at a bag with a quick key combo :D T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Aha, now does work... see, i didn't know about these two dots i need to put there. T3/r7/2021-12-02.txt.gz:{chan ch=tech}High Risk Losteix Tech: yeah, string concatenation is hella useful. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: About functionality - i don't know if i will change my bag often in this MUD. If so, i want to have a variable to look in a curretn bag. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Ayasinda Tech: you'll probably end up with between 5 and 10 bags T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Uhum... anyway i will need the same alias for weapons and spells T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Okay, i have been trying for an hour to bind a hotkey in Accelerator to bind "n" to Numpad8 AND send "n" to variable @direction. Can anybody help me, please? Sorry for disturbing! T3/r7/2021-12-02.txt.gz:{chan ch=tech}Sleazy Areia Tech: Did you try AcceleratorTo? T3/r7/2021-12-02.txt.gz:{chan ch=tech}Sleazy Areia Tech: AcceleratorTo("key", "alias", sendto.execute) T3/r7/2021-12-02.txt.gz:{chan ch=tech}Sleazy Areia Tech: Oh sorry you asked that an hour ago. Awkward. T3/r7/2021-12-02.txt.gz:{chan ch=tech}Selitos Tech: ok finally got my copy over working T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Areia, yes now i did. It still doesn't want to work T3/r7/2021-12-02.txt.gz:{chan ch=tech}Mellorn Tech: Found that EasyHotkeys plugin... at last. :) T3/r7/2021-12-03.txt.gz:{chan ch=tech}Gigel Tech: On GMCP "comm.channel" there is a channel for "rauction" ? T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: anyone knows which settings in dinv makes it dual wield? cos i cant seem to get my dinv to dual wield T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Set shield to 1. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Selitos Tech: dinv my guess is it thinks a shield/hold item is better then your dual wield weapon T3/r7/2021-12-03.txt.gz:{chan ch=tech}Fyzzy Xyzzy Tech: or set a priority on offhanddam T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: In your priorities, you can set locations to be ignored. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: yeah i did set shield to 1, but its not wearing that 2nd offhand for some reason T3/r7/2021-12-03.txt.gz:{chan ch=tech}Anssett Tech: maybe your offhand is awful, or its weight isn't right for dualing? :) T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I'd go with weight issues. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: nah i have aardweapons. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: axe + dag combo T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Doesn't matter. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: i can manual dual wield, but i cant get dinv to do it T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Aardweapons still need to be half weight. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Selitos Tech: aard doesn't have anything to do with dual wieght T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Did you recently change the weight? T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: axes and daggers are half of each other weight T3/r7/2021-12-03.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley slaps Selitos. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: i repeat, i can manual dual wield T3/r7/2021-12-03.txt.gz:{chan ch=tech}Anssett Tech: does dinv need to be reindexed maybe? T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: i did a dinv refresh too just to be sure T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Haike: I repeat, did you recently half weight them? Or have they been half weighted for a long time? T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: those weapons are able to be manually dual wielded, their weight is correct crowleyt T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: dinv refresh all is better, but if you recently half-weighted them, you probably need to dinv forget them, too. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: no i didnt change their weight T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: its base from questor :D T3/r7/2021-12-03.txt.gz:{chan ch=tech}Fyzzy Xyzzy Tech: did you try setting a priority on offhanddam? T3/r7/2021-12-03.txt.gz:{chan ch=tech}Selitos Tech: well you could always just throw out all your shields :) T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I wasn't asking if their weight was correct. I asked if you did it recently. But I give up. Base from questor means they aren't half-weighted and can't be dualed. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: yes i did, i set a priority on offhanddmg, i set shield to 1 thats why im finding it weird T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: you know whats funny? dinv set display mage1 170 shows it dual wielding correctly T3/r7/2021-12-03.txt.gz:{chan ch=tech}Fyzzy Xyzzy Tech: try a full dinv rebuild? T3/r7/2021-12-03.txt.gz:{chan ch=tech}SantaPuppy Kya Tech: I'm looking at my ranger priority that I used for most of my gameplay where I remember having the same problem. I don't recall the thought process behind this unfortunately because it's been forever, but I see I have dualwield set to 2.0. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Selitos Tech: FYI Crowley I did get my copy of Mush to work on Win 11, i restarted my old computer to make sure nothing had the database open and then copied. it worked fine T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: xyzzy thats the last resort. i dont want to go there if possible :P i try that kya T3/r7/2021-12-03.txt.gz:{chan ch=tech}Elfo Tech: it worked fine on my win11 T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: just that i dont understand, dinv set display shows it working, when i type the command it's not working T3/r7/2021-12-03.txt.gz:{chan ch=tech}Korendir Tech: maybe you should copy the priority to a custom one and play around with it T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Awesome news, Selitos! T3/r7/2021-12-03.txt.gz:{chan ch=tech}Elfo Tech: still using it now T3/r7/2021-12-03.txt.gz:{chan ch=tech}Elfo Tech: snd seems a bit buggy on win11 though T3/r7/2021-12-03.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley peers intently at Elfo. T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: You speak of no bugs, so no bugs can exist. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Elfo Tech: lol T3/r7/2021-12-03.txt.gz:{chan ch=tech}Rakiso Tech: its not a bug, its a feature T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Although I have a beta that fixes (mostly) the error based on the new areas. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Elfo Tech: just seem to get errors more often, but a reload takes care of all issues so far T3/r7/2021-12-03.txt.gz:{chan ch=tech}Fyzzy Xyzzy Tech: they're not bugs, they're undocumented features... T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I'll wind up pushing out the stable release hopefully tomorrow. Had a few people update to the beta. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Elfo Tech: oh cool T3/r7/2021-12-03.txt.gz:{chan ch=tech}Elfo Tech: muy bugs where fro killing cp or quest mobs T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: i was informed that i can just use the default psi priority on dinv, it always dual wield. yep its working for that...seriously zz T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: same stats as mage anyway T3/r7/2021-12-03.txt.gz:{chan ch=tech}Anssett Tech: psi-melee is the one i usually hear recommended, haike T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Haike: it's probably because psi is set correctly, whereas your priority probably isn't. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: but its set correctly crowley, when i use the dinv set display command to see what that priority will wear, just that when i use the command its not wearing what it just displayed T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: And dinv refresh all did not fix it? T3/r7/2021-12-03.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley shrugs helplessly. T3/r7/2021-12-03.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Bug Durel. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Korendir Tech: have u tried restarting mush :P T3/r7/2021-12-03.txt.gz:{chan ch=tech}Elfo Tech: i dont remember exactly, but when i kill a mob, it doesnt update the list and you cant click on the mob names no more T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: blah i will just use the simple method of using psi priority when i wanna dual wield on my sorc T3/r7/2021-12-03.txt.gz:{chan ch=tech}Elfo Tech: wish i copy and pasted the message exactly as it showed now T3/r7/2021-12-03.txt.gz:{chan ch=tech}Haike Tech: workabout still works. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Lheto Tech: in triggers whhat is the syntax to create a delay? T3/r7/2021-12-03.txt.gz:{chan ch=tech}Kridak Tech: can anyone suggest some quality of life plugins for a new player? T3/r7/2021-12-03.txt.gz:{chan ch=tech}Elfo Tech: snd T3/r7/2021-12-03.txt.gz:{chan ch=tech}Elfo Tech: finger crowley T3/r7/2021-12-03.txt.gz:{chan ch=tech}Braun Tech: there are a lot of plugins out there... I would become familiar with the ones that come for Fiendish's mushclient... like mapper... you'll build up from there really. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Kridak Tech: thank you all T3/r7/2021-12-03.txt.gz:{chan ch=tech}Kridak Tech: howdy folks..trying to install a couple plugins and receiving this error on them....Line 15: Attribute name 'crossorigin' not followed by '=' (Cannot load)....i doubt plugins ar ewrong i assume i am lol...any advice? T3/r7/2021-12-03.txt.gz:{chan ch=tech}Brobeo Tech: Make sure you downloaded the actual plugins and not just the github page that displays them. T3/r7/2021-12-03.txt.gz:{chan ch=tech}Kridak Tech: i downloaded the XML...is that incorrect? T3/r7/2021-12-03.txt.gz:{chan ch=tech}Brobeo Tech: Github is pain, try opening them with your web browser. T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: mushclient questions answered here for like a bit T3/r7/2021-12-04.txt.gz:{chan ch=tech}Shindo Tech: why is mushclient such an awesome client? T3/r7/2021-12-04.txt.gz:{chan ch=tech}Stari Tech: mine are oddly specific T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: it's not. there just isn't anything substantially better. T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: also Nick Gammon is a gem T3/r7/2021-12-04.txt.gz:{chan ch=tech}Popcorn Tech: why, when disk is full, Aardwolf.mcl is overwritten as a blank file when Mushclient is started? T3/r7/2021-12-04.txt.gz:{chan ch=tech}Stari Tech: can I ask you privately about these? T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: how full are we talking about, popcorn? T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: Stari: I prefer questions asked publicly so that everyone can learn T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: but if you need to ask in private go ahead T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: the worst thing that happens is I tell you to ask in public T3/r7/2021-12-04.txt.gz:{chan ch=tech}Stari Tech: OK well I'll ask privately first. T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: i have a mushclient question, how do i stop my comm log from cutting off market/auction lines like this: https://imgur.com/a/xKG5MJb T3/r7/2021-12-04.txt.gz:{chan ch=tech}Galoth Tech: you have to stretch it. click and hold the bottom right square and drag T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: is it only happening to auction messages? T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: market and auction T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: Galoth: it should be wrapping the lines T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: it doesn't happen every time, just ones that happen to hit the end of line at the wrong point or something, not sure T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: can you show me a screenshot with two lines where one wraps and one doesn't? T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: https://imgur.com/a/xKG5MJb T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: resized the comm log a few pixels and can get it to toggle between broken and not T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: nice T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: if I can reproduce it then I can fix it T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: i'm on r2149 not latest T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: pretty close though T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: weird that it's only market and auction T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: yeah, at least that's the only places i've noticed, but it's not particularly rare that it happens T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: what font do you have set for your comm log? T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: could be a font metrics problem T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: consolas 10 T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: it's also strange that it's cutting off so much, not just a character or a word T3/r7/2021-12-04.txt.gz:{chan ch=tech}Shindo Tech: are the spaces in that part of the string really spaces? T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: "sold to Mcgregor for 157,500" gets cut off, can't imagine they'd be anything but normal spaces T3/r7/2021-12-04.txt.gz:{chan ch=tech}Shindo Tech: is it being "cut off" or being drawn but on a part not being displayed T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: well yeah the second part T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: hmm T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: I can't get consolas to work :| T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: oh, mac huh T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: yes T3/r7/2021-12-04.txt.gz:{chan ch=tech}Shindo Tech: so we can blame our favourite tech giant T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: I did install the font. might have to reboot or something though. dunno T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: does it happen with other fonts? T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: it's not a big deal just figured i'd mention it T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: big deal to me T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: i swapped to dina 8 and it's doing it still T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: ok I can get it to happen T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: huh T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: great.. kinda T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: well it means that now I can try to fix it T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: that skate-punk mixtape also broke, in a different spot... https://imgur.com/a/xKG5MJb T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: I think I might have fixed it T3/r7/2021-12-04.txt.gz:{chan ch=tech}Fiendish Tech: I'm going to have to sleep on it though T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: alrighty T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: just noticed the restore message also broke :) T3/r7/2021-12-04.txt.gz:{chan ch=tech}Dolce Tech: Hi, i have just installed mushclient, how do i connect to aardwolf? T3/r7/2021-12-04.txt.gz:{chan ch=tech}Aoric Tech: uhmm T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: there's an aardwolf mushclient, it should auto connect to aardwolf T3/r7/2021-12-04.txt.gz:{chan ch=tech}Dolce Tech: what do i put for the worl name, MUD address, proxy and such? T3/r7/2021-12-04.txt.gz:{chan ch=tech}Dolce Tech: Yes, i i downloaded the aardwolf mushclient T3/r7/2021-12-04.txt.gz:{chan ch=tech}Elfo Tech: umm, your on aard right now :) T3/r7/2021-12-04.txt.gz:{chan ch=tech}Dolce Tech: yea, i'm using terminal right now T3/r7/2021-12-04.txt.gz:{chan ch=tech}Dolce Tech: but it seems using mushclient makes things easier T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: it's at aardmud.org port 23 shouldn't need a proxy T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: same address you use to connect via any other method T3/r7/2021-12-04.txt.gz:{chan ch=tech}Dolce Tech: it appears that .\worlds\Aardwolf. mcl contains an invalid path T3/r7/2021-12-04.txt.gz:{chan ch=tech}Guinness Tech: i'm wondering if you got a weird version? here's the most up-to-date one: https://fiendish.github.io/aardwolfclientpackage/ T3/r7/2021-12-04.txt.gz:{chan ch=tech}Dolce Tech: Yes i got it there T3/r7/2021-12-04.txt.gz:{chan ch=tech}Dolce Tech: the one with full visuals T3/r7/2021-12-04.txt.gz:{chan ch=tech}Dolce Tech: sorry i re-ran the exe and it works now T3/r7/2021-12-04.txt.gz:{chan ch=tech}Guinness Tech: yay! :) T3/r7/2021-12-04.txt.gz:{chan ch=tech}Dolce Tech: when using mushclient, the output window is split into two, with the bottom one showing the most recent and the top multiple lines before. how do i turn off the split? T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: it's a plugin, file > plugins T3/r7/2021-12-04.txt.gz:{chan ch=tech}Stari Tech: wait, how do I turn on the split? This could fix my issues. T3/r7/2021-12-04.txt.gz:{chan ch=tech}Stari Tech: well some of them anyway. T3/r7/2021-12-04.txt.gz:{chan ch=tech}Dolce Tech: yes it works! T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: i forget the name of the plugin, but it should be fairly obvious.. just click it in the list and disable it T3/r7/2021-12-04.txt.gz:{chan ch=tech}Mendaloth Tech: Not sure, but definitly recommend stretching first! T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: oh you want to turn it on T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: it's world/plugins/aard_splitscreen_scrollback.xml you'd have to add that as a plugin if it's not already there T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: if you dont have that file, update your aard mushclient T3/r7/2021-12-04.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: In VS Code you can search files by name by typing CTRL and P, is there any way to keep that search box open somewhere? T3/r7/2021-12-04.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Nohh: I think I fixed the bug. The installer for new version r2164 is building now. T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: cool, lmk i'll test it out T3/r7/2021-12-04.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it's up now T3/r7/2021-12-04.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: as always https://fiendish.github.io/aardwolfclientpackage/ T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: ok after double :) T3/r7/2021-12-04.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: so in two weeks then T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: with any luck T3/r7/2021-12-04.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: huh. I'm getting dropped packets T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: okay i'm on the new version now, and now we wait... T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: yeah definitely seems better T3/r7/2021-12-04.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: have completely un/re-installed snd and am still seeing double entries for each mob in the GUI window, plus the walks are all off...looks like it's always trying to runto the room for the first CP mob i was given, even though it's killed. any commands to reset? T3/r7/2021-12-04.txt.gz:{chan ch=tech}Nohh Tech: sounds like you have maybe two versions installed T3/r7/2021-12-04.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: Hmmm i'd had the old one, but just one 5.93 is viewable in plugn manager T3/r7/2021-12-04.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: ahh at least now I get an error: "Trigger function "xcp_index_line_end" not found or had a previous error" T3/r7/2021-12-04.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ooooooh...oh wow... the latest release of homebrew-wine from 6 days ago finally fixes macos display lag T3/r7/2021-12-04.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: MUSHclient questions answered here T3/r7/2021-12-04.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: h T3/r7/2021-12-05.txt.gz:{chan ch=tech}The River Styx Tech: how do I add new spells to bsp spellup without removing all and readding all T3/r7/2021-12-05.txt.gz:{chan ch=tech}The River Styx Tech: seems inefficient T3/r7/2021-12-05.txt.gz:{chan ch=tech}The River Styx Tech: do I have to tell it each time to add a new one? T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: there's 'bsp sadd spell' or just enable/disable them as needed instead of add/remove... there's also bsp export which you could drop in an alias and edit that as desired T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: i don't think there's a way to re-order them though unfortunately T3/r7/2021-12-05.txt.gz:{chan ch=tech}Aciath Tech: does mush have any sort of clipboard functions? Say if I wanted to throw text from the clipboard into a tell for example. T3/r7/2021-12-05.txt.gz:{chan ch=tech}Aciath Tech: just answered my own question. GetClipboard T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: https://www.gammon.com.au/scripts/doc.php?function=GetClipboard T3/r7/2021-12-05.txt.gz:{chan ch=tech}Aciath Tech: always forget about this MCHelp plugin. T3/r7/2021-12-05.txt.gz:{chan ch=tech}Vanellus Tech: In dinv what's the command to save a set as a csv? T3/r7/2021-12-05.txt.gz:{chan ch=tech}Vanellus Tech: Durel - I have weird dinv behaviour. Probably intended but odd... T3/r7/2021-12-05.txt.gz:{chan ch=tech}Vanellus Tech: In my 'amalyse [location] sometimes gear is swapped at a level, then swapped back again the next level, back and forth for a few levels. T3/r7/2021-12-05.txt.gz:{chan ch=tech}Vanellus Tech: So the ower level/score item is put back on again every-other level for a few levels. T3/r7/2021-12-05.txt.gz:{chan ch=tech}Vanellus Tech: lower T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: is that the only item that's swapping? T3/r7/2021-12-05.txt.gz:{chan ch=tech}Vanellus Tech: hang on checking T3/r7/2021-12-05.txt.gz:{chan ch=tech}Vanellus Tech: nope. Happend on some head items, some feet T3/r7/2021-12-05.txt.gz:{chan ch=tech}Vanellus Tech: a few locations T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: the math behind how the sets are calculated is complicated, but i'd imagine that just at those levels with the gear you have it's just trying to hit the max stats without going over and changes in other items means two similar items become better or worse T3/r7/2021-12-05.txt.gz:{chan ch=tech}Vanellus Tech: AH! Ofc! So other stuff put on is maxing the stats so it tries to optimise stats. Makes sense now. T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: you can analyze in blocks of 5 levels i think? would cut down on that T3/r7/2021-12-05.txt.gz:{chan ch=tech}Vanellus Tech: Thanks for satisfying my curiosity T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: dinv analyze create priority 5 <- would be every 5 levels T3/r7/2021-12-05.txt.gz:{chan ch=tech}Vanellus Tech: and tbh I only really get interested every 10. T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: you can also just do dinv set wear without an analysis, i'm not even sure what the analysis does behind the scenes, would have to ask durel about that T3/r7/2021-12-05.txt.gz:{chan ch=tech}Vanellus Tech: analyze display is just fun to see what dinv puts on when T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: dinv set display is also a thing T3/r7/2021-12-05.txt.gz:{chan ch=tech}Vanellus Tech: But thanks for explaining my quandry. Dinv is fun. T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: another thing dinv does is estimate what kind of stat bonuses you will have from spellups at every level, so if you happened to have slightly better or worse spellups previously at given levels, that could affect the gear choices (again, as it tries to avoid over-maxing a stat) T3/r7/2021-12-05.txt.gz:{chan ch=tech}Trachx Tech: any idea how to limit chromium disk usage (I think chromium tries to use disk files as kind of swap for itself)? T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: do you mean Chrome? Or Chromium OS? chromium as the generic browser framework somehow T3/r7/2021-12-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2021-12-05.txt.gz:{chan ch=tech}Trachx Tech: "Chromium Web Browser" - debian one T3/r7/2021-12-05.txt.gz:{chan ch=tech}Trachx Tech: basically I switched off swap, to avoid swapping, then I used cgroups to limit avail memory to browsers T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: there was at one point a command line option, --disk-cache-size= idk if that still works T3/r7/2021-12-05.txt.gz:{chan ch=tech}Trachx Tech: thanks! I guess there is probably also some setting for that in chromium config T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: idk, they change internal stuff all the time T3/r7/2021-12-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: why do you want to disable chromium's swap space? T3/r7/2021-12-05.txt.gz:{chan ch=tech}GabeLogan Tech: to slow the spread T3/r7/2021-12-05.txt.gz:{chan ch=tech}Cheekier Than Tech: to keep all his porn in vRAM T3/r7/2021-12-05.txt.gz:{chan ch=tech}Tallimos Tech: Any ideas why omit_from _output flag will sometimes get ignored but the function attached to the trigger fires regardless? T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: wonder what happens if you have two triggers that handle the same line and one is set to omit and the other not T3/r7/2021-12-05.txt.gz:{chan ch=tech}Tallimos Tech: All the triggers in this particular script have omit_from_output set to yes T3/r7/2021-12-05.txt.gz:{chan ch=tech}Elfo Tech: a think a chance to create a mini black hole and kill us all? T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: sure but there could be a trigger somewhere else T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: i don't know if that would be a problem, just thinking out loud T3/r7/2021-12-05.txt.gz:{chan ch=tech}Elfo Tech: black holes are serious T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: should probably be omitted if any trigger matches it with that flag, probably, but idk if it actually works that way T3/r7/2021-12-05.txt.gz:{chan ch=tech}Tallimos Tech: I guess I will need to take a look at the scripts I am running to see if I can rule that out T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: could just try setting your sequence numbers really low, and also set keep evaluating to false T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: see if something else breaks / the problem goes away T3/r7/2021-12-05.txt.gz:{chan ch=tech}Tallimos Tech: I will try that T3/r7/2021-12-05.txt.gz:{chan ch=tech}Tallimos Tech: did not work unfortunately T3/r7/2021-12-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: maybe something else is triggering first and re-printing the line T3/r7/2021-12-05.txt.gz:{chan ch=tech}Tallimos Tech: I do not have the slightest idea what that something could be, but I will need to look at my scripts i guess T3/r7/2021-12-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what is the line? T3/r7/2021-12-05.txt.gz:{chan ch=tech}Durel Tech: That's what happens with mush and URLs. There's a plugin that triggers on an url location, gags it, and then does an ungaggable print to your screen to copy what it just gagged preventing you from gagging it. It drives me nuts :p T3/r7/2021-12-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: why would you want to gag urls? T3/r7/2021-12-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: :) T3/r7/2021-12-05.txt.gz:{chan ch=tech}Tech: [Outlaw] Mendaloth forces a gag into Aarrssa's daughter Ur'loo's mouth. Ahhh, blessed quiet. T3/r7/2021-12-05.txt.gz:{chan ch=tech}Durel Tech: some people put urls in their description so you see it and can't gag it if you look in a room T3/r7/2021-12-05.txt.gz:{chan ch=tech}Durel Tech: err title, not description T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: coughcough sokic T3/r7/2021-12-05.txt.gz:{chan ch=tech}Big Boi Zyanya Tech: Talli is this related to your epic script or something else? T3/r7/2021-12-05.txt.gz:{chan ch=tech}Tallimos Tech: No it is something else T3/r7/2021-12-05.txt.gz:{chan ch=tech}Tallimos Tech: found the issue, it was indeed being caused by another script T3/r7/2021-12-05.txt.gz:{chan ch=tech}Nohh Tech: ugh other peoples' code is the worst T3/r7/2021-12-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: lol T3/r7/2021-12-05.txt.gz:{chan ch=tech}Durel Tech: He didn't technically say it was someone else's script though *grin* T3/r7/2021-12-05.txt.gz:{chan ch=tech}Tallimos Tech: It is someone else's :P T3/r7/2021-12-05.txt.gz:{chan ch=tech}Tallimos Tech: I disabled all my own scripts first T3/r7/2021-12-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: MUSHclient package r2165 was broken. r2166 fixes it. T3/r7/2021-12-05.txt.gz:{chan ch=tech}A Calm Stormwind Tech: stahp breaking stuff Fiendish! =p *inno T3/r7/2021-12-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: thanks to Gigel for the quick report T3/r7/2021-12-05.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: new release has some improvements to the helpfile capture miniwindow T3/r7/2021-12-06.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: problems with SND again, no matter if it's a quest or cp target, whenever I click the room or use mapper goto room , it sends the same (wrong) speedwalk directions ... no matter the mob or area..? T3/r7/2021-12-06.txt.gz:{chan ch=tech}Trachx Tech: not a S&D problem but mapper one (if you use mapper goto) T3/r7/2021-12-06.txt.gz:{chan ch=tech}Selitos Tech: thats a mapper problem not SnD T3/r7/2021-12-06.txt.gz:{chan ch=tech}Trachx Tech: most likely some clan exits were removed or you have defined incorrect cexits T3/r7/2021-12-06.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: ahh okay, so how do I fix it? I've never messed with any cexits T3/r7/2021-12-06.txt.gz:{chan ch=tech}Trachx Tech: pretty simple, stand in room that "mapper goto" will fail, then type "mapper where " and follow its path manually T3/r7/2021-12-06.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: got Mapper_extender recently would that be it? T3/r7/2021-12-06.txt.gz:{chan ch=tech}PenguinGod Galoth Tech: check 4sd, that one was removed this year. if you have the direction in your mapper still it will mess it up T3/r7/2021-12-06.txt.gz:{chan ch=tech}Selitos Tech: yes other people have had that same problem with 4sd exit T3/r7/2021-12-06.txt.gz:{chan ch=tech}Algaru Tech: hrm T3/r7/2021-12-06.txt.gz:{chan ch=tech}Algaru Tech: oops... hit enter too fast. my mapper is stuck, things i'm in a room that i'm not in. is there any way to reinitialize that without restarting mush? T3/r7/2021-12-06.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: try making sure you're spelled up then typing "map" T3/r7/2021-12-06.txt.gz:{chan ch=tech}Karathos Tech: look usually works T3/r7/2021-12-06.txt.gz:{chan ch=tech}Algaru Tech: no dice... things i'm in the aard hotel, i'm in qong T3/r7/2021-12-06.txt.gz:{chan ch=tech}Karathos Tech: open the plugin menu, select gmcp mapper, reinstall T3/r7/2021-12-06.txt.gz:{chan ch=tech}Algaru Tech: that did it, thanks T3/r7/2021-12-06.txt.gz:{chan ch=tech}Algaru Tech: has anyone had that happen before, any ideas why or how to prevent it? T3/r7/2021-12-06.txt.gz:{chan ch=tech}Karathos Tech: shrug* unless it is happening over and over for you, I wouldn't worry about it, my guess is something caused the mapper plugin script to error out, so it stopped doing stuff T3/r7/2021-12-06.txt.gz:{chan ch=tech}Algaru Tech: not super frequent... but enough to be annoying (started happening once a month or so now) T3/r7/2021-12-06.txt.gz:{chan ch=tech}Karathos Tech: 'easy' fix - create a mushclient alias that sends to Script with this command: ReloadPlugin('b6eae87ccedd84f510b74714') T3/r7/2021-12-06.txt.gz:{chan ch=tech}Karathos Tech: that'll reload the mapper T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: IAC DO Fiendish buries his face in his hand and sighs, shaking his head. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Quadrapus Tech: Anyone use mudrammer these days T3/r7/2021-12-07.txt.gz:{chan ch=tech}Quadrapus Tech: Looking for a good iOS client that can set up miniwindows T3/r7/2021-12-07.txt.gz:{chan ch=tech}Korendir Tech: on the way to and back from work everyday yes :P T3/r7/2021-12-07.txt.gz:{chan ch=tech}Korendir Tech: but i dont have any thing configured with it, just base T3/r7/2021-12-07.txt.gz:{chan ch=tech}Ralyn Tech: looks like you'll be writing your own ios app T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: anyone know why mush would only want to open with no visuals or how to fix it T3/r7/2021-12-07.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: did you download the correct version? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: i've been playing with this mush and computer for almost two years T3/r7/2021-12-07.txt.gz:{chan ch=tech}Nohh Tech: and you haven't updated recently? T3/r7/2021-12-07.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: try installing from https://fiendish.github.io/aardwolfclientpackage/ pick the full visuals version T3/r7/2021-12-07.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: also possible you are loading wrong world file. there is Aardwolf.mcl and Aardwolf_no_visuals.mcl T3/r7/2021-12-07.txt.gz:{chan ch=tech}Gigel Tech: can we put a wait in an alias ? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Gaelehad Tech: mapper alias? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Nohh Tech: not like wait(3) but you can use DoAfter/DoAfterSpecial T3/r7/2021-12-07.txt.gz:{chan ch=tech}Gigel Tech: normal alias T3/r7/2021-12-07.txt.gz:{chan ch=tech}Faylen Tech: Uh, so, I just got a note that SND was updated. I ran the updater and now there's an unexpected EOF in the CDATA it says. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Faylen Tech: did anyone else get this? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Kerith Tech: grab the raw xml copy/paste it into file and reload snd T3/r7/2021-12-07.txt.gz:{chan ch=tech}Kerith Tech: yes :0 T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tallimos Tech: yes T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: updater cup tater T3/r7/2021-12-07.txt.gz:{chan ch=tech}Faylen Tech: Is it fixable without hunting down the file? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Faylen Tech: Well, I should ask, is it *easily* fixable. Because of course it's technically possible. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That was my mistake. I deleted a line I shouldn't have. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Metzli Tech: So what you're saying, so not do snd update? :P T3/r7/2021-12-07.txt.gz:{chan ch=tech}404 Eroe Tech: ctrl+shift+p, look for the s&d plugin, it tells you the path. no hunting required. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Open up the file, search for , and right above that line, put: ]]> T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Metzli: It SHOULD be safe now. :p T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Once you've added that line, save it, install it. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Of course, if it's 5.96, you'll need to update to 5.97, which eradicates that issue. For some reason, I was having issues with the release not pulling the right commit. Maddening. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tallimos Tech: there is still an error when you add that in T3/r7/2021-12-07.txt.gz:{chan ch=tech}404 Eroe Tech: Crowley broke aard! T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley buries his face in his hand and sighs, shaking his head. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley sobs in misery. T3/r7/2021-12-07.txt.gz:{chan ch=tech}404 Eroe Tech: #CancelCrowley2021 T3/r7/2021-12-07.txt.gz:{chan ch=tech}Faylen Tech: oh, yeah, trying to update from 5.93 to 5.96, or I guess 7. lol T3/r7/2021-12-07.txt.gz:{chan ch=tech}Metzli Tech: my snd is gone now lol T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Tallimos: What error does it give with the "fix"? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tallimos Tech: one sec I will put it into pastebin T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley grumbles and growls. You wonder what's wrong... T3/r7/2021-12-07.txt.gz:{chan ch=tech}404 Eroe Tech: honestly just get the latest file and drop it in. skip a few steps and debugging. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tallimos Tech: https://pastebin.com/3mJdaXLL T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Tallimos: Yeah, that's a changelog issue, doesn't break SnD, just the changelog. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tallimos Tech: ok T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Calm Stormwind Tech: anyone used pwar's and crowleys and have a preference? I've only used pwars and curious to try Crowleys. can they run side by side? T3/r7/2021-12-07.txt.gz:{chan ch=tech}404 Eroe Tech: no. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Not run side-by-side. But it does merge Pwar's database into a new one. T3/r7/2021-12-07.txt.gz:{chan ch=tech}404 Eroe Tech: Crowleys is better, written better, crashes less. improved experience. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Gaelehad Tech: miss pwars alt+numbers for campaign target 1-9 T3/r7/2021-12-07.txt.gz:{chan ch=tech}Graciella Tech: I prefer pwar's T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: You can easily set that up yourself, Gaelehad... :p T3/r7/2021-12-07.txt.gz:{chan ch=tech}Zhalut Tech: Gaelehad, have you tried setting up those aliases inside MUSH? T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Calm Stormwind Tech: nod i use my keypad for xcp 1, gg 1 etc. T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Calm Stormwind Tech: er qq 1 T3/r7/2021-12-07.txt.gz:{chan ch=tech}Korendir Tech: so i reinstalled the latest snd but it still gives that error T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Calm Stormwind Tech: is there anything pwars has but what Graciella said that crowleys doesn't, or anythin that crowlers has that pwars doesn't? T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Pwar's doesn't have tech support. ;) T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Nor his own help file.:p T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley runs away in utter terror! T3/r7/2021-12-07.txt.gz:{chan ch=tech}Korendir Tech: how do i fix it now crowley :P T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Korendir: What was the error you got? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Gaelehad Tech: Crowley doesn't make it easy to mark mobs as nohunt etc T3/r7/2021-12-07.txt.gz:{chan ch=tech}Korendir Tech: eh its a long chunk of text, something with state.lua:151 T3/r7/2021-12-07.txt.gz:{chan ch=tech}Gaelehad Tech: or i can't read help files... T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I'm working on adding that, Gaelehad. T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Calm Stormwind Tech: Those are good bonuses. I'm just of the mindset if it isn't broken don't fix it. But, everyone says Crowleys is the better choice. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: Doge Water Yajan keeps screaming, "Representative! Representative!" But, the robo voice continues... T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Calm Stormwind Tech: marking nohunt was done via mobsubs in pwars, is that not in Crowley's or just marking them nohunt but mobsubs is in? T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: mobsubs are in. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: nohunt is not. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Elfo Tech: Line 8607: Unexpected end-of-file inside [CDATA[ definition (Cannot load) T3/r7/2021-12-07.txt.gz:{chan ch=tech}Elfo Tech: anyone know how to fix that? i cant load snd now T3/r7/2021-12-07.txt.gz:{chan ch=tech}Trachx Tech: that looks like downloaded just web page instead of file contents T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I'm going to die today. That's what that means. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: No, that's not even remotely correct. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I accidentally deleted a line to close the CDATA. That line is ]]> -- apparently it's being a pain in the ass now. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Elfo Tech: oh other people same prob? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Trachx Tech: right, mus uses CDATA inside T3/r7/2021-12-07.txt.gz:{chan ch=tech}Trachx Tech: open file using notepad or any other text editor T3/r7/2021-12-07.txt.gz:{chan ch=tech}Elfo Tech: ahh ok, thank you T3/r7/2021-12-07.txt.gz:{chan ch=tech}Gaelehad Tech: and this is why I put all the lua in a lua file T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Alright, everyone, try this: https://raw.githubusercontent.com/AardCrowley/Search-and-Destroy/master/Search_and_Destroy.xml -- go there, highlight all, open the Search_and_Destroy.xml file. Paste it in there. Save it. Load it. It'll still throw out changelog errors, I believe, but it /should/ work. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Gaelehad Tech: and call it from the CDATA section T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Do not put the in there, because it is NOT the end of file. But yes, ]]> is okay. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: This is what I get for trying to fix the bug on the new areas. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley sighs. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Faylen Tech: aww T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: All while trying to get information on patients at work. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: Gaelehad runs over to (Aleister) Crowley and gives him a sweet HUGGLE! T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Next time, I just do it all from home. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Faylen Tech: hehe T3/r7/2021-12-07.txt.gz:{chan ch=tech}Faylen Tech: Sounds like my day today, getting the runaround while trying to set up an important appointment. gah T3/r7/2021-12-07.txt.gz:{chan ch=tech}Wardsmith Tech: Is there a way to assign values to nomap rooms? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Trachx Tech: if they do not have ID then you cannot map them, if they have IDs you can map them T3/r7/2021-12-07.txt.gz:{chan ch=tech}Gaelehad Tech: there was a hack to do that but Fiendish commented it out T3/r7/2021-12-07.txt.gz:{chan ch=tech}Wardsmith Tech: consarnit T3/r7/2021-12-07.txt.gz:{chan ch=tech}Gaelehad Tech: its a very hacky hack T3/r7/2021-12-07.txt.gz:{chan ch=tech}Trachx Tech: you could try to generate virtual IDs if you can identify some unique info about no-id room T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: hack me baby T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: anyone ever had a family member tell you they got hacked? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Wardsmith Tech: how would you go about generating virtual ids? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: it's like the real life equivalent of eating popcorn while listening to gclan T3/r7/2021-12-07.txt.gz:{chan ch=tech}Trachx Tech: where are those no-map rooms? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Wardsmith Tech: depends on what you mean by 'hacked'. Stolen card info or actually having a site account breached? T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: If anyone has any issues with the new one excepting the error about assert and set_value, please, let me know. :) T3/r7/2021-12-07.txt.gz:{chan ch=tech}Wardsmith Tech: Because my parents have had their credit card compromised twice T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: There's a few nomap rooms in Awwnn. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: typically it's "what do you mean 'password7' is a bad password?" T3/r7/2021-12-07.txt.gz:{chan ch=tech}Adele Tech: my parents had their bank account hacked twice T3/r7/2021-12-07.txt.gz:{chan ch=tech}Wardsmith Tech: pwyll and the blind spot in... preiddeu? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Faylen Tech: I got a long error, but it still loaded T3/r7/2021-12-07.txt.gz:{chan ch=tech}Gaelehad Tech: some of those you can cexit past T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I just always find it interesting that it only happens to people over the age of T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: makes me wonder if they get phishing emails and don't realize it's not really from their bank, etc. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Adele Tech: well with my parents it was because someone managed to open up an online bank account T3/r7/2021-12-07.txt.gz:{chan ch=tech}Trachx Tech: considering bank hacks - if you use credit cards - the you do not have problem, bank have a problem T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: they put their credentials into a shoddy web form and then go back to their day T3/r7/2021-12-07.txt.gz:{chan ch=tech}Adele Tech: my dad is old school when it comes to banking. checkbook and cash T3/r7/2021-12-07.txt.gz:{chan ch=tech}Adele Tech: never set up online banking as he saw no need to. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Adele Tech: so they had their account hacked to the tune of 6k T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: yeah, that opening up account in your name is the bank's fault most likely T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: or possibly someone else who let your sensitive data be breached T3/r7/2021-12-07.txt.gz:{chan ch=tech}Adele Tech: dad was pissed the bank never called him when he overdrafted (he has never overdrafted in his life and it's a small town bank) T3/r7/2021-12-07.txt.gz:{chan ch=tech}Adele Tech: so they got it all fixed with a new account and everything and it happened the next month. because they had opened up the online account. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: lol T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: technology T3/r7/2021-12-07.txt.gz:{chan ch=tech}Adele Tech: there's now a huge note in his file that my dad doesn't have an online bank account and if he wants one, he will walk up to the bank in person and open it. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Trachx Tech: in some countries - you need to authorize transactions, so if you give access codes (due to phishing) and other person uses it - then it was not a valid bank transaction, as it was not authorized by you T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: yes, I think we could learn from that 2FA type approach T3/r7/2021-12-07.txt.gz:{chan ch=tech}Trachx Tech: that is bank's problem, not user one T3/r7/2021-12-07.txt.gz:{chan ch=tech}Trachx Tech: if bank says 4-digit pin is enough, then it is enough as they are professional users and know better, but in case of fraud it is their problem - as they just limited security to "good enough" T3/r7/2021-12-07.txt.gz:{chan ch=tech}Trachx Tech: also considering 2FA - if you get phone from your bank number - a lot of people may follow directions given by "security team" claiming that you are "robbed just now" and you need to do some actions to save your money, like confirm some operations by giving SMS codes or confirm operations in bank app or give access to some RAT T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: yeah, unfortunately.. at some point people have to educate themselves T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Oh, cool. I figured out the reason for the stupid changelog error. Now to fix it and put out 5.98! *sigh* T3/r7/2021-12-07.txt.gz:{chan ch=tech}Korendir Tech: thank you! T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Now let's watch it blow up again and I have to just delete myself. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Didn't break for me... so hopefully... T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: So, if you could all just 'snd update' and yell at me for it not breaking, that'd make me feel a lot better. Thank you! ;) T3/r7/2021-12-07.txt.gz:{chan ch=tech}Faylen Tech: success! T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That wasn't enough yelling at me, Faylen. I'm disappointed. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Faylen Tech: hahahaha T3/r7/2021-12-07.txt.gz:{chan ch=tech}Antifa Raded Tech: what if my current version of snd mostly works unless I get Bloodlust Dungeon or Caravan T3/r7/2021-12-07.txt.gz:{chan ch=tech}Antifa Raded Tech: I am afraid T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: The update SHOULD fix that issue. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Kerith Tech: you need to edit the xml and add it manually T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It's already been added. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Kerith Tech: or update :) T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: "should" whoa.. today is shaking Crowley's confidence T3/r7/2021-12-07.txt.gz:{chan ch=tech}Antifa Raded Tech: we fear change T3/r7/2021-12-07.txt.gz:{chan ch=tech}Korendir Tech: seems good T3/r7/2021-12-07.txt.gz:{chan ch=tech}Korendir Tech: working for me thus far :P T3/r7/2021-12-07.txt.gz:{chan ch=tech}Faylen Tech: curious while it jumped from 93 to 96 though? I thought I just missed a couple versions, but even the changelog doesn't show 4 or 5 T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: In the future, I'm really just going to redo how snd updates. You all will get a shell of a file, and the update feature will pull the lua code from the website and load it each time you restart MUSH. That way, you won't have to worry about editing the fields, and I'll have a nice lua file to play with. *shifty* T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Faylen: Eh, I jumped it up because I was doing some behind-the-scenes stuff. Nothing really to worry about. It's at 5.98 now, though. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: looking for a girlfriend who likes to play with lua files, PST or PB T3/r7/2021-12-07.txt.gz:{chan ch=tech}Faylen Tech: ah, okay. nods I'm on the newest now, it was just from 3 to 6 that I was going wait what? Lol. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley grins evilly. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: I'm having an issue with DINV, i'm getting this error: there was a problem loading the plugin (Path) see the output window for more details. (i've tried reinstalling the plugin, deleting all previous versions of it but can't get past that window T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: It looks like mush didn't load it and gave details in the output window. Did you happen to see what it said in the output window? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: i don't really know where to look it's such a huge file T3/r7/2021-12-07.txt.gz:{chan ch=tech}Korendir Tech: crowley, is the new update supposed to not highlight the selection anymore? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: Did you recently download dinv from github? If so, how did you download it from there? Github has a bad design in that if you right-click on a file and select download, it won't actually download the file. It will download the download html page and name it the file you expected to download. SMH T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Can of Pringle Tech: yeah i just got the same error korendir T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Can of Pringle Tech: definitely a bug T3/r7/2021-12-07.txt.gz:{chan ch=tech}Korendir Tech: not exactly an error everything still works, just used to having the highlight heh T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Can of Pringle Tech: but crowley's offline T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: everything was working fine yesterday then today mush decided it wanted to break so i've been reinstalling everything T3/r7/2021-12-07.txt.gz:{chan ch=tech}PenguinGod Galoth Tech: its bug day! T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Can of Pringle Tech: no, it's a bug T3/r7/2021-12-07.txt.gz:{chan ch=tech}Korendir Tech: ok :P T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: dinv is the only thing i can't get working now for whatever reason T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: try "dinv reload" and see what messages (if any) are reported T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: there is no reload within aardwolf T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: ok, so dinv isn't loaded at all now. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: DINV Build confirmed: commencing inventory build... DINV Skipping save for "inv.items.table" table: plugin is not initialized DINV Are you AFK? You must be in the active state to complete initialization. DINV inv.items.save: Failed to save items table: component is not initialized DINV inv.items.build: inventory reset failed: component is not initialized T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: If you go to the mush plugin window and install dinv, do you see any errors? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: oh, so you do have dinv installed? What did you type to get those messages? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: just the one popup i initially stated T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: just the one popup i initially stated T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: dinv buid confirm T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I am not sure why it highlights for some, and not for others. That's a new thing. *sigh* T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Oh, well, that one didn't highlight, either. A new bug to figure out! T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: So you do have dinv installed it looks like. Do this "dinv reload" T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: there is no reload within Aardwolf. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: also, just for my sanity, do "dinv version" T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: DINV Skipping version request: plugin is not yet initialized (are you AFK or sleeping?) T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: are you asleep? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: or afk? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: negative T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: Please uninstall dinv from the plugin window and then reinstall it. Then watch for any errors that might be reported when it loads. I'm guessing something happened earlier but without knowing what went wrong it's hard to debug at this point. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: it's not showing in the plugins list T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: Forming a Crisalys sighs. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: it's called "aard_inventory" there T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: yeah, the name "dinv" was a last minute change :P T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: nope it's not there i checked T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: Have you tried restarting mush? It sounds like something went very wrong with mush at this point T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Calm Stormwind Tech: is it possible for dinv to get stuck in a state? IE a setting is forcing dinv to think he's afk when he isn't? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: Mush is confused at this point. It is saying the plugin isn't even installed T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: going to restart mush again back in a bit T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: so i can see the dinv help file, but can't get it to build the database or wear equipment T3/r7/2021-12-07.txt.gz:{chan ch=tech}Katsumoto Tech: Restart your computer when in doubt T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: and then uninstall Windows if that doesn't work T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: were there any errors or warnings when it loaded? And did you need to reinstall it since mush though it wasn't installed? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: Also, for my sanity, please do "dinv version" T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: no errors or warnings, just that origional message to check the popup file, i had to do a fresh run of MUSH because when I started today I could only get mush to run in non visual mode T3/r7/2021-12-07.txt.gz:{chan ch=tech}Katsumoto Tech: So wait...who's asking for help? Korendir or Crowley? T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I never ask for help. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I just slap people around. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I can testify to that T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: Katsumoto looks at (Aleister) Crowley ponderingly. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Doge Water Yajan Tech: he slapped me once T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: What version of dinv are you running? Please do "dinv version" T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: DINV Skipping version request: plugin is not yet initialized (are you AFK or sleeping?) T3/r7/2021-12-07.txt.gz:{chan ch=tech}The River Styx Tech: well, are you? T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Crisalys: type... wake. Just for s&g. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: no i'm not afk nor sleeping T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: you're already standing T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: Maybe a config file got corrupted? Just a sec and I'll tell you a directory to rename and then have you restart dinv T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Type 'protocol gmcp sendchar' T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Then try it again. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Katsumoto Tech: This line of conversation is confusing. Can't seem to tell who Durel is talking to. Lol. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: Crowley I get the same blasted thing T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Katsumoto: Crisalys T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: Katsumoto nods. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: Temporarily rename this folder to something else: [mushclient install location]/worlds/plugins/state/dinv-[a bunch of numbers]/[your username] T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: Then do "dinv reload" and it should create a fresh install for you. If something got corrupted before, hopefully that would resolve it T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Also, type: \\\require 'gmcphelper' print(gmcp("char.status.pos") .. " " .. gmcp("char.status.state")) T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: See what that says. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It /should/ say: Standing 3 T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: sorry, I'm talking to crisalys :p T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley snickers with Durel about their shared secret. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I'm curious if gmcp state got "stuck". T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: Durel You're amazing renaming that file fixed it T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: Crisalys: I'm guessing that when mush crashed it corrupted something in the dinv config file and that was the issue T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Can of Pringle Tech: crowley the latest S&D patch no longer highlights your current target in the list T3/r7/2021-12-07.txt.gz:{chan ch=tech}Antifa Raded Tech: yeah crowley T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: well I appreciate it a lot for all your help thank you T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: Glad you got it working :) T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Pringle: I've noticed. And I have to figure out that reason, too. Probably something to do with the changes I made so it didn't crash on the areas, and did not see residual effects. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Fyzzy Xyzzy Tech: you should be posting that in all caps... he said to yell! T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: it also does not work with qw. So, that'll be a fun thing to change. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Forming a Crisalys Tech: YOU got it working i was about to toss the whole computer out the window LOL T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Can of Pringle Tech: also I see an empty square next to the level/cp availability indicator that wasn't there before T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: But that'll have to be a "tonight" project, because I'm about 30 patients behind at work... T3/r7/2021-12-07.txt.gz:{chan ch=tech}Durel Tech: Lol, it was *also* me who didn't put any type of error detection in the dinv files so if something gets corrupted it's hard to recover from it :p T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Wait, Pringle, screenshot it for me and point it out? I'm not sure what you're referring to. T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Can of Pringle Tech: crowley https://i.imgur.com/qk2d2Qm.png T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Can of Pringle Tech: oh intereting crowley, it does highlight on room name cps, but not area cps T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That box to the left, that's interesting. It's the Settings box, should have a gear in it. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Wonder why you don't... might be an image issue you have missing. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: And only on room cps... okay, will help narrow it down, at least. T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Can of Pringle Tech: clicking the settings box does nothing btw T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Can of Pringle Tech: actually, NONE of the boxes work when I click them T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Can of Pringle Tech: still abe to set noexp threshhold but nothing else on that bar works T3/r7/2021-12-07.txt.gz:{chan ch=tech}Heracles Tech: works for me on 5.98 T3/r7/2021-12-07.txt.gz:{chan ch=tech}Heracles Tech: All the buttons, the gear icon is present T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Can of Pringle Tech: weird T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Can of Pringle Tech: lemme reinstall, see what that does T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Can of Pringle Tech: yeah okay reinstalling fixed T3/r7/2021-12-07.txt.gz:{chan ch=tech}Heracles Tech: the highlighting of the current target in a cp does not show, but otherwise everything else is fine /so far/ T3/r7/2021-12-07.txt.gz:{chan ch=tech}A Can of Pringle Tech: yeah like i said, i just did a reinstall and it works now T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: So, quick where and highlighting. Two new problems I'll have to address tonight. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: The cool thing about doing the updates the way that I am hoping to in the near future is that instead of having the player have to copy/paste/install, if it's a simple Lua error, one would just have to do 'snd reload' and in theory would be it (after I made the fixes). Will be an interesting take on things. Of course, the downside is it removes player ability from modifying Lua code, but in all honesty, it wouldn't be too difficult to override things. I think. We'll see how feasible it is. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I also plan on making the window dynamic, in that it'll change its height based on the number of entries. Of course, that'll be a toggle effect. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Katsumoto Tech: Crowley, question, I've noticed that the hunt trick doesn't realy work in global quests IIRC in SnD. Is that intentional or is there a setting that I'm missing somewhere.... T3/r7/2021-12-07.txt.gz:{chan ch=tech}Katsumoto Tech: I've enabled it as the default in xcp mode and it works just fine for regular campaigns, but with GQs, it defaults to where T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I'll look into that, too. Side note, bouncing for a few. Gotta meet with retirement counselor. No, I'm not that old yet. Just setting up the benefits plan. :p T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: Katsumoto thanks (Aleister) Crowley heartily. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: CheeZy Bot HiSaZuL goes, "SUUUUUUUURE...." T3/r7/2021-12-07.txt.gz:{chan ch=tech}Katsumoto Tech: I love the hunttrick very much. Probably the most noticeable QOL improvement among the wishes. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Katsumoto Tech: Is SND safe to update to 5.93? T3/r7/2021-12-07.txt.gz:{chan ch=tech}Greybeard Tech: should be T3/r7/2021-12-07.txt.gz:{chan ch=tech}Katsumoto Tech: Is there no way for invdetails to also show the resists? T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: invdetails shows the resists... T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Also, it's 5.98 now, Katsumoto. :P T3/r7/2021-12-07.txt.gz:{chan ch=tech}404 Eroe Tech: only if you have identify/lore/identify at the id place. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Oh yeah, forgot that identify wish may play into it. T3/r7/2021-12-07.txt.gz:{chan ch=tech}WREKT Anaristos Tech: or the wish T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Just pushed a new release of SnD. That should fix the highlighting mobs issue, as well as the qw/ht issues. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Katsumoto Tech: How does one get {resistmod} to show when using invdetails? T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Have the identify wish, or do it at Hester. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: *Yay!* Go (Aleister) Crowley!!! Katsumoto cheers him on. T3/r7/2021-12-07.txt.gz:{chan ch=tech}404 Eroe Tech: buy the id wish, swap to whatever race gives you lore (eldar, I think) or rt identify and do it there. T3/r7/2021-12-07.txt.gz:{chan ch=tech}404 Eroe Tech: if you have lore just alias id lore and you're set. dinv parses it and the game will just use lore. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Doesn't work if you're using invdetails for other reasons. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley's shifty eyes dart back and forth. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tsorovan Reyn Tech: how would it deal with (lore) failures? T3/r7/2021-12-07.txt.gz:{chan ch=tech}404 Eroe Tech: ah, yeah. I was thinking about dinv specifically--sorry. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It would tell you to 'git gud' T3/r7/2021-12-07.txt.gz:{chan ch=tech}404 Eroe Tech: I don't know if dural was cool enough to parse "get gud" :p T3/r7/2021-12-07.txt.gz:{chan ch=tech}Katsumoto Tech: I've tried using invdetails when I'm standing in the identify room (rt identify), but it still doesn't showup. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Yeah, I realized that because you aren't identifying anything, just using invdetails. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: So only way is if you own the item or have the wish. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Tech: Katsumoto nods. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Owned items should show resist mods (like Aardwolf Breastplate) T3/r7/2021-12-07.txt.gz:{chan ch=tech}Katsumoto Tech: Gotcha...looks like there's yet another wish to buy. T3/r7/2021-12-07.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It's a good wish to have. T3/r7/2021-12-07.txt.gz:{chan ch=tech}Legendary Gruagach Tech: is it thumb drive or jump drive? T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: hmm, s&d qw doesn't give you a link anymore? T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: damnit Crowley T3/r7/2021-12-08.txt.gz:{chan ch=tech}Korendir Tech: it does for me T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: didn't for me, at least right there. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Korendir Tech: maybe you didnt have that particular room mapped? T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: I did T3/r7/2021-12-08.txt.gz:{chan ch=tech}Korendir Tech: v5.99? T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: oh he released again? T3/r7/2021-12-08.txt.gz:{chan ch=tech}Korendir Tech: yeah there was a display bug, not sure about the qw portion tho T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: yeah its in the notes T3/r7/2021-12-08.txt.gz:{chan ch=tech}Naricain Tech: v6.0 when? T3/r7/2021-12-08.txt.gz:{chan ch=tech}Sheriff Shindo Tech: yeah, he had to do a series of updates due to finger slipping errors T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: my own spouse and he doesn't even tell me T3/r7/2021-12-08.txt.gz:{chan ch=tech}Sheriff Shindo Tech: doesn't his S&D tell you? T3/r7/2021-12-08.txt.gz:{chan ch=tech}Pump the Fuel Tech: is it possible to highlight a phrase next to the matched string? T3/r7/2021-12-08.txt.gz:{chan ch=tech}Nohh Tech: what do you mean next to? like the following line? T3/r7/2021-12-08.txt.gz:{chan ch=tech}Pump the Fuel Tech: string following the matched one on the same line T3/r7/2021-12-08.txt.gz:{chan ch=tech}Nohh Tech: can you give an example T3/r7/2021-12-08.txt.gz:{chan ch=tech}Pump the Fuel Tech: Milton tells you 'Seek an explorer out somewhere in the vicinity' T3/r7/2021-12-08.txt.gz:{chan ch=tech}Odorless Nuanse Tech: grab whole line, gag it, recolor parts you want and resend it to the screen T3/r7/2021-12-08.txt.gz:{chan ch=tech}Pump the Fuel Tech: wanna higlight "explorer" T3/r7/2021-12-08.txt.gz:{chan ch=tech}Nohh Tech: so you want your trigger to be something like: ^(?.*) tells you 'Seek (?.*) out somewhere in the vicinity T3/r7/2021-12-08.txt.gz:{chan ch=tech}Pump the Fuel Tech: yes T3/r7/2021-12-08.txt.gz:{chan ch=tech}Faylen Tech: This is random, but I just want to say thank you to all the helpful people on here. :) Another reason I love aard. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Nohh Tech: set it to omit the output, and your trigger just does ColourTell / ColourNote or whatever other method you want to print the line T3/r7/2021-12-08.txt.gz:{chan ch=tech}Pump the Fuel Tech: ok thx T3/r7/2021-12-08.txt.gz:{chan ch=tech}Gaelehad Tech: if you really want to get fancy with quests then use the gmcp data sent to your client T3/r7/2021-12-08.txt.gz:{chan ch=tech}Kerith Tech: actually something I've been trying to figure out is how do you make a simple variable in mush, and increase it, like in zmud I could create one #var variablename, and increase it by either variablename=something or #ad variablename #... is there a way to do something similar in mush? or is it really complex T3/r7/2021-12-08.txt.gz:{chan ch=tech}Pump the Fuel Tech: its very easy. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Gaelehad Tech: it is a bit more complicated but you just need to learn lua T3/r7/2021-12-08.txt.gz:{chan ch=tech}Faylen Tech: or use examples from other plugins T3/r7/2021-12-08.txt.gz:{chan ch=tech}Faylen Tech: Which is what I did. lol. The specs of gmcp confused me T3/r7/2021-12-08.txt.gz:{chan ch=tech}Pump the Fuel Tech: you dont even need to tinker with a plugin T3/r7/2021-12-08.txt.gz:{chan ch=tech}Nohh Tech: SetVariable("var", tonumber(GetVariable("var")) + 1) T3/r7/2021-12-08.txt.gz:{chan ch=tech}Faylen Tech: Oh, you can do gmcp stuff right in mush itself? Cool T3/r7/2021-12-08.txt.gz:{chan ch=tech}Kerith Tech: ok I'll take that example and dig into see if i can figure it out, thank you T3/r7/2021-12-08.txt.gz:{chan ch=tech}Gaelehad Tech: oh heck yes. first line of an alias or trigger has requires("gmcp") then you can read it all T3/r7/2021-12-08.txt.gz:{chan ch=tech}Pump the Fuel Tech: you can define a variable in world properties T3/r7/2021-12-08.txt.gz:{chan ch=tech}Gaelehad Tech: oops i mean require no S T3/r7/2021-12-08.txt.gz:{chan ch=tech}Nohh Tech: anything you can do in a plugin you can do in the aliases/triggers you do through the config, it just is usually a lot cleaner to do it in a plugin T3/r7/2021-12-08.txt.gz:{chan ch=tech}Tech: Gaelehad nods at Nohh. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Faylen Tech: Neayt. I tend to prefer plugins because they're easily sharable, but that's cool to know T3/r7/2021-12-08.txt.gz:{chan ch=tech}Kerith Tech: I tried to start a plugin but the verbiage on creating one scared me and made it sound like I was overwriting stuff, so i stopped lol... mush seems powerful but not very user friendly/inuitive. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Nohh Tech: just take one of the smaller xml files from world/plugins, copy it and change the id in the tag T3/r7/2021-12-08.txt.gz:{chan ch=tech}Pump the Fuel Tech: example https://drive.google.com/file/d/1M5OG-AXOfgACmdt85G0Skd5Hpu0wZyfo/view?usp=sharing T3/r7/2021-12-08.txt.gz:{chan ch=tech}Nohh Tech: the plugin wizard kinda does make it seem like it wants you to rip things out of the client to make a plugin, but of course that's all entirely optional T3/r7/2021-12-08.txt.gz:{chan ch=tech}Pump the Fuel Tech: changes my secondary skill. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Gigel Tech: I've just tier to Psi after warrior. before that I was using "dinv weapon.." to damage a mob that has some imunities. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Pump the Fuel Tech: another example how to manipulate: https://drive.google.com/file/d/1HndBuS43VztobstCrDYu-maHtPXswuhH/view?usp=sharing T3/r7/2021-12-08.txt.gz:{chan ch=tech}Gigel Tech: there is something similar for spells ? a plugin or script that will cycle different "spells combat" to find one that can damage current mob ? T3/r7/2021-12-08.txt.gz:{chan ch=tech}Faylen Tech: that would be cool, but I'm not aware of one T3/r7/2021-12-08.txt.gz:{chan ch=tech}Nohh Tech: well you can still use dinv... and 'spells combat ' to filter by damage type T3/r7/2021-12-08.txt.gz:{chan ch=tech}Gigel Tech: much less weapon type I can use as R0 psi T3/r7/2021-12-08.txt.gz:{chan ch=tech}Nohh Tech: yeah i guess.. weapon master wish comes in handy T3/r7/2021-12-08.txt.gz:{chan ch=tech}Gigel Tech: yeah, when I get enough QP :) T3/r7/2021-12-08.txt.gz:{chan ch=tech}Gaelehad Tech: but psi has tons of sources of bash and mental damage that handles 90% of cp mobs T3/r7/2021-12-08.txt.gz:{chan ch=tech}Nohh Tech: 'allspells psi combat' - i personally set up aliases for each damage type and just type 'fire' or 'cold', and 'setfire c 107' or something to change what spells get cast, but it's all manual for now so nothing super special T3/r7/2021-12-08.txt.gz:{chan ch=tech}Gigel Tech: I suppose I can set an array with all SN and cycle till I found one T3/r7/2021-12-08.txt.gz:{chan ch=tech}Drisker Tech: Hello. I am having some issues with the set up of my MUSH client. Anyone got a sec? T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: just ask, and if anyone can help, they will T3/r7/2021-12-08.txt.gz:{chan ch=tech}Drisker Tech: groovy. So is there a way to save the layout of the windows? Or to get the MUSHClient to actually use the full screen? Whenever i log in it all squished to the top left corner and not expanded to the full screen T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Look at 'aard help' T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Or read 'aard layout' T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Weird that it's squished up, though. You can try aard layout reset to see if that fixes it. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Drisker Tech: awesome. And is the chats thing the option to have chats/messages sent to a seperate window? T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: The communication log is where your chats can be separated, even with tabs. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Drisker Tech: and how do i turn on/enable that window? T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Should be enabled by default, at the top of the layout. If not, 'chats show' should show it. T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Then if you right-click it, you'll see all the wonderful options to play with. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Drisker Tech: lol layout reset just put it all back to the top left. I may not be describing it right. I can discord a screen shot to someone if that helps T3/r7/2021-12-08.txt.gz:{chan ch=tech}KnightLord Throxx Tech: I guess it's time to make backups of my mush and update... T3/r7/2021-12-08.txt.gz:{chan ch=tech}Drisker Tech: when i type chats show it says i can't do that T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: poor water on your motherboard, go out and rebuild from scratch and reinstall... should fix it T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Drisker: What does 'checkversion' show? T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: pour* T3/r7/2021-12-08.txt.gz:{chan ch=tech}Drisker Tech: Not sure how trolling me is helpful Styx... T3/r7/2021-12-08.txt.gz:{chan ch=tech}Drisker Tech: r2017 T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Oh, you're quite behind. Do package update check, and install the latest version. Then let us know if you still have issues. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Drisker Tech: oh? This is what installed from the website T3/r7/2021-12-08.txt.gz:{chan ch=tech}Xephrin Tech: yeah that's the version on the main page, r2017. the more recent version I found directly on the github T3/r7/2021-12-08.txt.gz:{chan ch=tech}Drisker Tech: ok, lemme install. Thanks T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: you mean 1802 is not current? Wow T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Anaristos: We're talking about MUSHClient versions, not the year you were born... T3/r7/2021-12-08.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley runs away in utter terror! T3/r7/2021-12-08.txt.gz:{chan ch=tech}Tech: WREKT Anaristos laughs out loud. T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: I was talking about my mushclient version :) T3/r7/2021-12-08.txt.gz:{chan ch=tech}KnightLord Throxx Tech: yeah, and the whole riga-ma-roll of convincing the antivirus that it's not being intruded... T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: I was lucky to make that version work the way I wanted it, I don't want to take any chances :) T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I don't have issues with the antivirus. Hmm. T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: what is anti-virus? T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: j/k T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Apparently not America. We're pro-virus here! T3/r7/2021-12-08.txt.gz:{chan ch=tech}Ayasinda Tech: no worries Anaristos. I use 1803 T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: it keeps the covid away T3/r7/2021-12-08.txt.gz:{chan ch=tech}Tech: A bright, shiny gold halo appears over (Aleister) Crowley's head. T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: I have mcafee and I am very displeased with them T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: cmud still rules for my alt :) You guys should try it T3/r7/2021-12-08.txt.gz:{chan ch=tech}A Calm Stormwind Tech: cmud had a better OOB mapper imo. loved cmud. T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Shame it is no longer being developed. T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: still works tho! T3/r7/2021-12-08.txt.gz:{chan ch=tech}A Calm Stormwind Tech: yeah i gave up cmud a long time ago T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: the mapper for one and I still think the scripting is a little more sophisticated too T3/r7/2021-12-08.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: I miss zmud :( T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: CMUD was good, but left a lot of us hanging with its constant bugs and whatnot. I wrote a large number of scripts for it. T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: the stuff here in MUSH is almost as good as the private scripts from cmud tho... lots better than it used to be. T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: Crowley and I were cmud testers. We got screwed royally. After 4 years of testing we got zilch for it. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods at The River Styx. T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well, I mean, we did get CMUD Pro for free for it, but yeah, got nothing else for it. T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: didn't you have to pay a final fee for 3.34? I did. T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: I got it for free and paid for it, because wanted to support. But yeah T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Zugg should have handed it off to someone or made it open source. T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Anaristos: I never had to pay for it... T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: I did T3/r7/2021-12-08.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: that stinks. I did like the zmud mapper I could have all the levels of a map on the same level and just walk to the next part and it auto did the exits and things T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: should have opened it for sure if he wasn't going to support it T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well, I'm sorry you had to pay for it. :( T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: yeah, it left me bitter. But I still use it. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: if I could have programed I'd have kept zmud. although mush has grown on me a bit. like a fungus T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: The one thing I really liked about the mapper was the ability to do create custom exits that you could use directions for, so if 'west' was supposed to be 'jump ravine', you could send the direction and it would do the actual command. T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: I mainly use it because I have moved many of my scripts to C# and so I use json to communicate with apps running under windows T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: yes, that was nice Crowley T3/r7/2021-12-08.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: yeah. zmud did that T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: so if you were just walking around it used the custom exit from the map T3/r7/2021-12-08.txt.gz:{chan ch=tech}Heracles Tech: Zmud/Cmud was great, especially for what was available back then. T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: major annoying that doesn't work in MUSH T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: You could, in theory, write one up for MUSH mapper, too, though. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: and being able to see it all on the same level when you built the map, just like the pdfs on the map sites T3/r7/2021-12-08.txt.gz:{chan ch=tech}KnightLord Throxx Tech: so. the latest mush update, ate all my mush settings, AGAIN T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: the mapper is great, I also like the speedwalk generator. I've tried to duplicate it with limited success. I still can't figure out how to get the portals right. T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Are you installing it to the same location, Throxx? T3/r7/2021-12-08.txt.gz:{chan ch=tech}KnightLord Throxx Tech: yes dear T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Oh, crap. Time for me to go home. Didn't realize it was 4:00. :( T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Good luck! T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: And don't know why it eats your settings. Never ate mine. T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: hey, its 4 T3/r7/2021-12-08.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: it's annoying not to be able to see the other rooms to click on it on the mapper. but over all, it's nice to have something people are using and working on T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Hey, Styx, it's v5.99. T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: your fault T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: not mine T3/r7/2021-12-08.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley snickers softly. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley waves happily. T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: I have nothing bad to say about mush's mapper. T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: custom exit thing is really the only thing that constantly pisses me off about it T3/r7/2021-12-08.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: I like what it does, but I like seeing all levels of the map T3/r7/2021-12-08.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: and being able to use the exit I have assigned to a exit when moving T3/r7/2021-12-08.txt.gz:{chan ch=tech}Naricain Tech: mapper updown T3/r7/2021-12-08.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: but that's it. it does good things T3/r7/2021-12-08.txt.gz:{chan ch=tech}Naricain Tech: shows up and down exits T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: I think that cmud has a better native scripting set for the mapper. T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: well, cmud had zscript. LUA is great but sometimes it was just easier to use zscript T3/r7/2021-12-08.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: not when I mean naricain. I have that showing. we are taking about z/cmud and how you used to be able to build your own map. you could have all of it on one level T3/r7/2021-12-08.txt.gz:{chan ch=tech}WREKT Anaristos Tech: lua with cmud is very powerful but sometimes it gets tedious :) T3/r7/2021-12-08.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: you could also give numbers to nomap rooms T3/r7/2021-12-08.txt.gz:{chan ch=tech}KnightLord Throxx Tech: so, why do my backups now not load either, even though they were copied, renamed, and moved? T3/r7/2021-12-08.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: good luck. I have no input for that convo T3/r7/2021-12-08.txt.gz:{chan ch=tech}KnightLord Throxx Tech: NOTE: if you keep your MUSHclient file inside, say, a character name file, you apparently ned to pull it back up to desktop to update it and not lose all ya data. or, its just me. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Amphitrite Tech: anyone know how to reset the snd thingy? mine is all FUBAR'ed T3/r7/2021-12-08.txt.gz:{chan ch=tech}Selitos Tech: just reinstall the plugin T3/r7/2021-12-08.txt.gz:{chan ch=tech}Amphitrite Tech: that didn't work... T3/r7/2021-12-08.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: you install v5.99? T3/r7/2021-12-08.txt.gz:{chan ch=tech}Amphitrite Tech: how do you see which version you have? T3/r7/2021-12-08.txt.gz:{chan ch=tech}PenguinGod Galoth Tech: says it along the top of the window T3/r7/2021-12-08.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: should say right at the top, is yours not loading at all? T3/r7/2021-12-08.txt.gz:{chan ch=tech}Amphitrite Tech: then yes... removed and reinstalled T3/r7/2021-12-08.txt.gz:{chan ch=tech}Amphitrite Tech: the xrt command doesn't work... i habe to goto recall then rt every area T3/r7/2021-12-08.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: that was an issue with like 5.97 or something. not having any issue with 5.99 so I'm not sure T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: What are you trying to xrt to? T3/r7/2021-12-08.txt.gz:{chan ch=tech}Selitos Tech: i think you have to have a room in the area to xrt to it T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I should also add an 'snd version' command so that people don't have to search for it in the window. T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Just the start room, yes. T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: But it doesn't run to the area if you don't match the key to the area (e.g. xrt dungeon works, but not xrt bloodlust, since bloodlust is not the area key). T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I'm also working on adding user-defined area keys, so it'll look there first, and if it exists, will try to run to the area. So, if you typed 'xrt tales2', it'd run to ftii, for example. T3/r7/2021-12-08.txt.gz:{chan ch=tech}A Calm Stormwind Tech: Hrm, pwars lets me xrt bloodlust. Is it just different searching mechanics? T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It is, yes. His looks at the area name before the key name, I think. T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I am working on adding 'area name' back in (it was in long ago, but changed for area keys instead). T3/r7/2021-12-08.txt.gz:{chan ch=tech}A Calm Stormwind Tech: i like the idea of custom names... brain is going wild now. xrt level10-1, xrt level10-2 T3/r7/2021-12-08.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods at A Calm Stormwind. T3/r7/2021-12-08.txt.gz:{chan ch=tech}A Calm Stormwind Tech: can it support multiple keys? xrt mudwog, xrt level-15-evil, xrt level-15 (as long as I set all of those as keys to mudwog? T3/r7/2021-12-08.txt.gz:{chan ch=tech}PenguinGod Galoth Tech: apply nicknames maybe T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Hmm, might be something I can consider. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I think it would have to in his design T3/r7/2021-12-08.txt.gz:{chan ch=tech}Doge Water Yajan Tech: otherwise you would overwrite the others? T3/r7/2021-12-08.txt.gz:{chan ch=tech}A Calm Stormwind Tech: that would be awesome could simplify common leveling patterns. maybe im the only one that anal on where i like to level tho. lol T3/r7/2021-12-08.txt.gz:{chan ch=tech}Scars Tech: could make an alais thst does mapper goto ### too T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: The next version (6.0) is going to have a number of changes. I'm going to be testing some concepts to help prevent corruption issues over time, and keep everything in the database. T3/r7/2021-12-08.txt.gz:{chan ch=tech}A Calm Stormwind Tech: yeah I use methods to track it now, but, the idea of keys sounds like a good easy way to organize it to areas as well. T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: But yes, the latest version should work. Still a few things to improve upon, and need to modify some things anyway. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Amphitrite Tech: is there a way to reset the mapper thing? maybe that will reset my snd T3/r7/2021-12-08.txt.gz:{chan ch=tech}Heracles Tech: Have you tried snd reload T3/r7/2021-12-08.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Amphitrite, what are you trying to run to? And which version are you running of SnD? Or whose version, for that matter. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley gives up. T3/r7/2021-12-08.txt.gz:{chan ch=tech}404 Eroe Tech: is there an easy way to find eq with dinv in a level range for a specific slot? T3/r7/2021-12-08.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I think you can utilize queries for that T3/r7/2021-12-08.txt.gz:{chan ch=tech}Durel Tech: dinv search wearable head minLevel 100 maxLevel 120 T3/r7/2021-12-08.txt.gz:{chan ch=tech}A Calm Stormwind Tech: dinv search minlevel 1 maxlevel 10 wearable feet T3/r7/2021-12-08.txt.gz:{chan ch=tech}A Calm Stormwind Tech: dang you durel T3/r7/2021-12-08.txt.gz:{chan ch=tech}404 Eroe Tech: thank both of you. T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: in mush, how can I tell if Im in combat? Is there some gmcp var I can read? T3/r7/2021-12-08.txt.gz:{chan ch=tech}Katsumoto Tech: http://www.aardwolf.com/wiki/index.php/Clients/GMCP T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: got it, thanks T3/r7/2021-12-08.txt.gz:{chan ch=tech}Tech: Katsumoto nods. T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: so much harder to use than cmud sigh T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: no time like the present to learn I guess T3/r7/2021-12-08.txt.gz:{chan ch=tech}Zhalut Tech: what made cmud easier? T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: just the ui for coding T3/r7/2021-12-08.txt.gz:{chan ch=tech}Katsumoto Tech: Lua is great IMHO. Great for newbies like myself. T3/r7/2021-12-08.txt.gz:{chan ch=tech}The River Styx Tech: I dunno maybe its better in MUSH, just not used to it T3/r7/2021-12-08.txt.gz:{chan ch=tech}A Calm Stormwind Tech: how do we call a line of gmcp in the command bar again? T3/r7/2021-12-08.txt.gz:{chan ch=tech}Katsumoto Tech: \\\ T3/r7/2021-12-08.txt.gz:{chan ch=tech}Zhalut Tech: yeah \\\require "gmcphelper" code blah T3/r7/2021-12-08.txt.gz:{chan ch=tech}A Calm Stormwind Tech: i must be doing something wrong, trying this. \\\require "gmcphelper" gmcp("char.status") T3/r7/2021-12-08.txt.gz:{chan ch=tech}404 Eroe Tech: Note(gmcp("char.status")) I think? T3/r7/2021-12-08.txt.gz:{chan ch=tech}A Calm Stormwind Tech: ahh that worked, but gave me a table as a response. hrm T3/r7/2021-12-08.txt.gz:{chan ch=tech}Wardsmith Tech: Oh, that's what I was doing wrong? I wasn't using quotation marks... T3/r7/2021-12-08.txt.gz:{chan ch=tech}404 Eroe Tech: gim' a sec, I can look up how I use it. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Zhalut Tech: that is a table. need to add to it for what you want within status T3/r7/2021-12-08.txt.gz:{chan ch=tech}A Calm Stormwind Tech: think i see i need to get the charstatus.state T3/r7/2021-12-08.txt.gz:{chan ch=tech}404 Eroe Tech: ah yeah. it's a table. look at the char.status section of the wiki. T3/r7/2021-12-08.txt.gz:{chan ch=tech}404 Eroe Tech: so you can do something like T3/r7/2021-12-08.txt.gz:{chan ch=tech}404 Eroe Tech: \\\require("gmcphelper") Note(gmcp("char.status.level")) T3/r7/2021-12-08.txt.gz:{chan ch=tech}A Calm Stormwind Tech: ahh perfect. thanks T3/r7/2021-12-08.txt.gz:{chan ch=tech}Durel Tech: You can also use tprint to print a table too. \\\require("tprint") require("gmcphelper") tprint(gmcp("char.status")) T3/r7/2021-12-08.txt.gz:{chan ch=tech}A Calm Stormwind Tech: ahh very nifty. T3/r7/2021-12-08.txt.gz:{chan ch=tech}Durel Tech: But all of my apps would need to be manually downloaded / installed / configured again T3/r7/2021-12-08.txt.gz:{chan ch=tech}Durel Tech: oops, mis T3/r7/2021-12-08.txt.gz:{chan ch=tech}Amphitrite Tech: is there a way to have the mud tell me what approximate level of the mobs are when i type con all? T3/r7/2021-12-08.txt.gz:{chan ch=tech}Doge Water Yajan Tech: help con gives ranges T3/r7/2021-12-08.txt.gz:{chan ch=tech}Karathos Tech: there are plugins that will do that T3/r7/2021-12-08.txt.gz:{chan ch=tech}Doge Water Yajan Tech: there's a couple other tricks to know mob level after you kill them T3/r7/2021-12-08.txt.gz:{chan ch=tech}Karathos Tech: I think snd does? T3/r7/2021-12-09.txt.gz:{chan ch=tech}No pants Travis Tech: anyone else run the aard client in linux T3/r7/2021-12-09.txt.gz:{chan ch=tech}Sheriff Shindo Tech: do you mean MUSHClient via wine in linux? T3/r7/2021-12-09.txt.gz:{chan ch=tech}No pants Travis Tech: yeah boi! T3/r7/2021-12-09.txt.gz:{chan ch=tech}Sheriff Shindo Tech: a number of us do... T3/r7/2021-12-09.txt.gz:{chan ch=tech}Bogstar Tech: im on blowtorch T3/r7/2021-12-09.txt.gz:{chan ch=tech}Sheriff Shindo Tech: I loved blowtorch, when it was all i could haxx T3/r7/2021-12-09.txt.gz:{chan ch=tech}No pants Travis Tech: does it run well, i just installed popos and got it running via lutris but some of the aard client specific scripts are throwing dirrectory errors ima have fix T3/r7/2021-12-09.txt.gz:{chan ch=tech}Sheriff Shindo Tech: it runs really well under wine. I launch it via a bash script that does a cd to the mushclient directory first. that seems to solve lots of issues T3/r7/2021-12-09.txt.gz:{chan ch=tech}Sheriff Shindo Tech: so the bash script does cd blahblahblah followed by $Ywine MUSHclient.exe T3/r7/2021-12-09.txt.gz:{chan ch=tech}Sheriff Shindo Tech: oops T3/r7/2021-12-09.txt.gz:{chan ch=tech}Sheriff Shindo Tech: i meant MUSHclient.exe as the second line T3/r7/2021-12-09.txt.gz:{chan ch=tech}No pants Travis Tech: hmmm T3/r7/2021-12-09.txt.gz:{chan ch=tech}No pants Travis Tech: okay lets see here T3/r7/2021-12-09.txt.gz:{chan ch=tech}No pants Travis Tech: aaaaye, writing all my stuff into a .lua file works well for not having to rebind all my macros T3/r7/2021-12-09.txt.gz:{chan ch=tech}Selitos Tech: wow whats with the extremely slow load on the new mush? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Limunious Tech: loading bot trackers T3/r7/2021-12-09.txt.gz:{chan ch=tech}Selitos Tech: wow this is a disaster T3/r7/2021-12-09.txt.gz:{chan ch=tech}Big Boi Zyanya Tech: do you have it saved on an external drive T3/r7/2021-12-09.txt.gz:{chan ch=tech}Big Boi Zyanya Tech: that slows it down T3/r7/2021-12-09.txt.gz:{chan ch=tech}Selitos Tech: dinv keeps failing to timeout T3/r7/2021-12-09.txt.gz:{chan ch=tech}Selitos Tech: i installed the new mush, got the message one was availible this morning T3/r7/2021-12-09.txt.gz:{chan ch=tech}Selitos Tech: crap i may have to go back to the the previous version T3/r7/2021-12-09.txt.gz:{chan ch=tech}Selitos Tech: ok i quit and relogged this is working better T3/r7/2021-12-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Odd that you just got it this morning, because he has not put out a new one in ages. T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: I blame russia. it's slow because they're using your aard connection to backdoor the aard server and steal the election. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Tech: 404 Eroe's shifty eyes dart back and forth. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley snickers softly. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Selitos Tech: yeah i got a pupup window that a new build or whatever its called was avalible T3/r7/2021-12-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Oh, for MUSHclient, yeah. I thought you meant DINV. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Selitos Tech: yeah was very slow to load everything and the dinv plugin kept failing on init T3/r7/2021-12-09.txt.gz:{chan ch=tech}Selitos Tech: well it would timeout and then try again and timeout again T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: l T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: welp. T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: is there a way to determine if qw found something? I was trying to make an alias to save typing that would qw foo and then go to it if foo was found. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Dogwater Welding Tech: can just type "go" after qw if you find your target i think. is that what youre referring to? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Gaelehad Tech: are you using mushclient? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: have your alias turn on a trigger that reads the output - if it succeeds, goto, if not, turn off the trigger. T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: yeah. not totally sure how to trigger that though since it's just mob room. basically just trying to simulate "go" to save the typing. I messed up my wrist a while back and the more I can simulate for things I do a lot the better for my typing without jumping into actual botting. T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: I am using mush. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Gaelehad Tech: if you're also using S&D it already does that... T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: My initial hacky solution was to call go in a DoAfterSpecial, but if qw found nothing it will take me back to my previous location. T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: is the snd version a different command? I'm using Crowley's. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Gaelehad Tech: then you should just qw mobname and if it finds a mob with a known room you just type go T3/r7/2021-12-09.txt.gz:{chan ch=tech}Tech: 404 Eroe boggles at the concept. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Gaelehad Tech: but you may also need the nx command bound to go to the next room in hte list T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: my point is I'm trying to simulate qw+go. so I type one command and if qw finds something it goes there. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Gaelehad Tech: winkle did all this work at least a decade ago T3/r7/2021-12-09.txt.gz:{chan ch=tech}Gaelehad Tech: then switch to pwars snd or whine to crowley that it doesn't automagically go there T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: pwars snd doesn't automatically drag you there either... T3/r7/2021-12-09.txt.gz:{chan ch=tech}Gaelehad Tech: oh right, it only does that for campaigns when it finds one and only one option T3/r7/2021-12-09.txt.gz:{chan ch=tech}Gaelehad Tech: anyway, bind go to a key and nx to another key then mash them T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: mannec, i don't think you can trigger off plugin output T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: oh yeah, there's that too. I might be able to call into snd though. T3/r7/2021-12-09.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: Couldn't you just create an alias that you bind to a key that executes a quick script with the qw then wait or doafterspecial then go? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: my old zmud can trigger off anything on the screen. im sure theres a way to do it in mush, but it might require re-jiggering the plugin. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: zmud and mushclient are very different programs. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: with great complexity comes great power - and awful workarounds :p T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: ayup. T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: it's not that mush can't trigger from what's on the screen, it's that triggers are from text sent -from the mud- not from plugins. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: i'm 90% sure you can't trigger off plugin output without some extreme don't-try-this-at-home foolery T3/r7/2021-12-09.txt.gz:{chan ch=tech}Gaelehad Tech: that is why onpluginbroadcast exists T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: you just need windows 98. with my old windows 98 you can do anything you want! T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: include getting it pwned 2 sec after connecting it to the internet, eroe? :D T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: thats what i said, yes. T3/r7/2021-12-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well, then the question of legality comes into play. T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: of course. that's the fun part. T3/r7/2021-12-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Which is a prime reason to NOT add 'automatically go to a room after qw finds the mob'. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: bah, windows peaked at 2k. xp was a slight step downhill. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Lasher Tech: can you just modify it to write the note to request a nuke and save us some steps? T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: does going to a mob after qw qualify as a nuke? If so that does shorten my script, yes! T3/r7/2021-12-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Sure! T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: sure, outputting from a plugin to the mud is easy. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Tech: All you see is a little, furry mouse where 404 Eroe was. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Tech: Anssett throws back his head and cackles with insane glee! T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: oh, thats cool. zmud _can_ generate output that either does, or does not, get run thru the trigger processor - i just never needed to do a bypass like that :p T3/r7/2021-12-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: So can MUSH. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: there seemed to be some debate over that question. im glad to hear that mush continues its 'better than the other stuff' trend. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: you can probably do some sort of simulated mud output from a plugin but it's not the normal thing you'd want to do T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: Seriously though, I don't understand the legalities around this. If it's a problem I won't do it, but running to mobs after I type qw if I'm manually triggering the qw feels like it fell within the rules. Is this incorrect? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: i find it hard to devise a reason i _wouldnt_ want my output parsed - but i suppose there would be cases. T3/r7/2021-12-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: But yeah, if you get the okay from Lasher to allow something like that, I can work on adding it. But I do not make a habit of adding things that are "conveniences" for others that make it easier for a person to bot things. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: from older eras of mudding, i wouldn't want any client chat to get parsed in case somebody calls my IP and does things to kick off triggers. hasn't been an issue in a while since i dont think many people use that protocol anymore anyway T3/r7/2021-12-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: The issue falls in what you do with it. Adding a function like that, while trivial to some, quickly becomes an issue when a person writes a trigger to qw a mob upon entry of an area or upon death of a mob and automatically runs to it. Not saying you would do that, but adding the function makes it easier to do. T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: are you just plugging straight into the modem? how would someone "call your IP" T3/r7/2021-12-09.txt.gz:{chan ch=tech}Tech: 404 Eroe nods at (Aleister) Crowley. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: mushclient, mudmaster, zmud all support (supported?) a host-host chat protocol T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: open the firewall and port forward T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: defensive programming is a bit difficult at first, but once you get used to parsing input properly, its not so hard to avoid that sort of thing. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: ... that sounds alot like something that would be easier to manage server-side. like with tells or group talk. T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: they still do, but you need to forward the port before someone can do that to you, if that's how that works. I didn't think mush's chat protocol triggered triggers. also FWIW someone has to be able to get your IP first. Aard doesn't make it a habbit of handing out users' IP address. T3/r7/2021-12-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: But again, if you can convince Lasher (you probably won't) that it should be added, then it'll ease my conscious and I can add it. Otherwise, I'm simply not comfortable adding such a function. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: tells and group talk fall under mud rules and mud channel restrictions and mud command stacking T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: I thought about building something like that to create a channel system for aard so people didn't have to group to socialize among people. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: maybe it was never a thing on aard, i dunno. definitely was on other muds for a long time T3/r7/2021-12-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Eroe: There exists a system like that already. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Tech: 404 Eroe peers intently at (Aleister) Crowley. T3/r7/2021-12-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: MUSHClient has its own chat feature, much like a chat room. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: private channels have, as far as i know, no real restrictions, and command stacking is a fools' errand anyway. T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: sure. that requires everyone port forward, no? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: you can also write a chat server that only requries a single host to port forward. T3/r7/2021-12-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Not sure. But it probably requires IP addresses. :P T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: it does. it's pretty dated. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Not an Imm Erikson Tech: If only there were some way to relay chat across the internet... T3/r7/2021-12-09.txt.gz:{chan ch=tech}Katsumoto Tech: what's difficult about pressing another key again after QW in SND? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Katsumoto Tech: Campaigns have now been boiled to 3-4 key presses. Not sure how much easier it can get. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: i played on a mud once that had what they called virtual channels - you could create a channel, give it a name, and invite others to talk on it. still had command-stacking issues, but ... see above. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: now you're making me want to see how well my chat server worked from multiple mush versions ago haha T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: Yeah, I suggested virtual channels for aard a year or so ago to get around the social group. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Lasher Tech: in a text based game any explorating / discovering type game mechanic can and will be automated right up to the limit of the rules. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: for what its worth, the same thing happens on graphical mmos. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Lasher Tech: took a while to accept that, over it, in a "I'll never bother writing anything like campaigns again" type over it. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: honestly lasher, you can probably drop the "text based" part of that. plenty of bots in graphical games too. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: lol T3/r7/2021-12-09.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: I say no on user-channels, my god my brain wants to explode whenever I have to deal with Discord. i swear it only makes sense to Gen Z brains T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: FWIW I didn't want to or care about using this for quests or campaigns. Just to try to calm some of the upset discussion here. It had a very specific and limited use for me, although I understand why it was reinterpreted the way it was. T3/r7/2021-12-09.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well, you'd probably be able to ignore user channels if you don't want to join them. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: for something completely different: i've done a lot of googling and i think the answer to what i want to do is 'no', but does anybody here have experience with LDAP filters for active directory? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: the answer is definitely 'no'. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: heh apparently. oh well :) T3/r7/2021-12-09.txt.gz:{chan ch=tech}Methyl Tech: yeah, what's up? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: are you aware of a way to do an ldap filter to exclude a sub-OU? if i have a structure like "OU=bad OU,OU=employees,DC=corp,DC=com", and I want to do an ldap query that gets me all the contents of "OU=employees,etc" but not the sub-OU of "OU=Bad" T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: seem slike i can't exclude an OU like that but i'm still hoping :) T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: I've never found a way to do exclusions like that with fliters. T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: filters* T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: apparently LDAP supports it but AD isn't a complete implementation :( T3/r7/2021-12-09.txt.gz:{chan ch=tech}Methyl Tech: if you're using powershell, basically need to pipe out into like where-object and exclude distinguished names for the OU you don't want T3/r7/2021-12-09.txt.gz:{chan ch=tech}Tech: 404 Eroe nods. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: it's for a webapp, i can only do the filter angle on it unfortunately T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: so microsoft fails at an industry standard protocol? color me surprised :) T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: typically it's Apple. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Methyl Tech: ah, then suppose it depends on the language you're using, not sure off the top of my head for .net, but i'm sure it's possible with a little research T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: Microsoft just wants a piece of the pie. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: a piece of the apple pie eh :P T3/r7/2021-12-09.txt.gz:{chan ch=tech}Methyl Tech: worst comes to worse, you could probably build a list of ous off a specific search base and then just iterate through all the ones you want T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: that's not going to work if they want authentication. T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: and authentication doesn't expose the OU to just let you auth and then check that the user is from the "bad" OU. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Methyl Tech: hmmm T3/r7/2021-12-09.txt.gz:{chan ch=tech}Methyl Tech: if it was aad or aadds, then it's easy enough to do through the graph T3/r7/2021-12-09.txt.gz:{chan ch=tech}Methyl Tech: but not sure about on-prem ad in that scenario T3/r7/2021-12-09.txt.gz:{chan ch=tech}Methyl Tech: probably need to read further into wsenum T3/r7/2021-12-09.txt.gz:{chan ch=tech}Methyl Tech: if it's not a possibility there, probably not a possibility at all without some hacky solution T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: the searchbase seems to automaticallyr ecurse, which is part of the problem (sorry, phone interrupted). we are talking about onprem, and again, i'm constrained to whatever magic the app we're working with is using. if i could do more complex conditionals i would :) T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: am I the only one who wants alcohol after trying to understand AWS pricing? T3/r7/2021-12-09.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: If you have to ask..:) T3/r7/2021-12-09.txt.gz:{chan ch=tech}404 Eroe Tech: I don't need no lip, I'm already contemplating which bottle to open. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: on a possibly unrelated topic, i just learned that there was a chex cereal-based first person shooter. officially released and everything. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: o.O T3/r7/2021-12-09.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: post link :) T3/r7/2021-12-09.txt.gz:{chan ch=tech}Vanellus Tech: No because I'm t-total but I do find it confusing. But less so than Azure. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: https://youtu.be/8Kfx2fANELo?t=193 T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: oh man that looks amazing T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: oh god it's on steam now haha T3/r7/2021-12-09.txt.gz:{chan ch=tech}Tech: Mannec falls to the ground and rolls around, laughing hysterically. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Anssett Tech: oh man. this is going to be my evening i think T3/r7/2021-12-09.txt.gz:{chan ch=tech}Mannec Tech: i would play the shit out of pasta fighter. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Braun Tech: Heh.. I played the heck out of that game... They put a chex 3 not too many years ago. T3/r7/2021-12-09.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: does anyone have a Cisco partner/rep ? I need some info on their workspaces but the damn form is broken through 4 browsers T3/r7/2021-12-09.txt.gz:{chan ch=tech}Slips Tech: anyone know how to set a trigger? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Slips Tech: i want one to stay on line T3/r7/2021-12-09.txt.gz:{chan ch=tech}Crowley Tech: Nope, not a soul here knows how to set up a trigger. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Braun Tech: I think you can "glance" to stay online... T3/r7/2021-12-09.txt.gz:{chan ch=tech}Pringle Tech: who uses glance over look lmao T3/r7/2021-12-09.txt.gz:{chan ch=tech}Crowley Tech: You can do anything to stay online. You can trigger off "Your eyes glaze over." to do whatever you want it to do. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Braun Tech: I've just been told that glance isn't spammy.. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Crowley Tech: Pringle: People who don't want to read the room desc every time they want to see the room. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Tech: Yajan glances in your direction. Oh BOY! T3/r7/2021-12-09.txt.gz:{chan ch=tech}Welding Tech: i just use the basic one that Rumour explained on her youtube video. use the "your eyes glaze over" message, then trigger it with "look" T3/r7/2021-12-09.txt.gz:{chan ch=tech}Katsumoto Tech: Or a self-buffing trigger. This, too, keeps you online I think. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Katsumoto Tech: Or at least I think that's what keeps me online. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Crowley Tech: Personally, I use 'smile' on that trigger. You can also use a spellup plugin that will generally keep you online. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Katsumoto Tech: what is this smile that you speak of? Is this a Mayan tradition? Who smiles anymore these days? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Crowley Tech: But triggers are too complex for me to figure out. :( T3/r7/2021-12-09.txt.gz:{chan ch=tech}Tech: Crowley grins evilly at Katsumoto. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Katsumoto Tech: I can't even.... T3/r7/2021-12-09.txt.gz:{chan ch=tech}Crowley Tech: But can you odd? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Katsumoto Tech: If triggers are complicated for Crowley....I can't even. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Katsumoto Tech: Can't even odd either. Maybe just divide. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Crowley Tech: I only have 111 triggers not in plugins right now. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Crowley Tech: And 84 aliases. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Katsumoto Tech: Such flex. So triggered right now. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Tech: Katsumoto giggles at a transparent crow's actions. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Crowley Tech: If I'm transparent, you must be able to see right through me! Gasp! I've been foiled! T3/r7/2021-12-09.txt.gz:{chan ch=tech}RabbitSlayer Tech: Using the Aardwolf mushclient, is there a way to create another Communication Log window instead of tabs? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Ayasinda Tech: https://github.com/fiendish/aardwolfclientpackage/wiki/Communication-log-window T3/r7/2021-12-09.txt.gz:{chan ch=tech}Ayasinda Tech: look at the bottom T3/r7/2021-12-09.txt.gz:{chan ch=tech}RabbitSlayer Tech: Thanks Ayasinda T3/r7/2021-12-09.txt.gz:{chan ch=tech}RabbitSlayer Tech: That is exactly what I'm looking for Ayaasinda. Wish more of the plugins had help files like that! T3/r7/2021-12-09.txt.gz:{chan ch=tech}Tech: Ayasinda gallantly tips her hat. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Whiskey Tech: anyone know how to add elemental focus and ward to pwars spellup plugin T3/r7/2021-12-09.txt.gz:{chan ch=tech}Whiskey Tech: anyone know how to add elemental focus and ward to pwars spellup plugin? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Selitos Tech: those spells have a cooloff? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Stormwind Tech: is there an easy way to make an area clickable so it runs to it or does xrt area? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Stormwind Tech: via an alias? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Heracles Tech: Confused. Why make an alias so you then need to click something when it could just run you there T3/r7/2021-12-09.txt.gz:{chan ch=tech}Stormwind Tech: because the alias will produce more than one result to click. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Crowley Tech: I'm confused by what you're even asking, but okay. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Stormwind Tech: alias pulls up areas depending on my level. so i can click and go to. based on my level i serve different areas to my screen for me to click. Just looking for a way to make them clickable. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Braun Tech: Hyperlinks? Maybe? https://www.gammon.com.au/forum/?id=7419 T3/r7/2021-12-09.txt.gz:{chan ch=tech}Heracles Tech: Hyperlink ("mapper goto " ..gotocapture, "Locked onto target location - Click to Move!", "Click to Move", "cyan", "", 0) T3/r7/2021-12-09.txt.gz:{chan ch=tech}Heracles Tech: Can do something like that T3/r7/2021-12-09.txt.gz:{chan ch=tech}Stormwind Tech: that could work I'll look at it thanks Braun and Heracles T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: maybe someone knows, the graphic map has stopped showing on the working computer, the commands and reinstalling the client does not help T3/r7/2021-12-09.txt.gz:{chan ch=tech}Rhendadric Tech: type mapper show T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: hm.. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: Unknown command. Please check the helpfiles. T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: everything works on the home computer, the client is the same .. T3/r7/2021-12-09.txt.gz:{chan ch=tech}HiSaZuL Tech: mapper show should work. at least it shouldn't say unknown command T3/r7/2021-12-09.txt.gz:{chan ch=tech}Stormwind Tech: means it isn't installed likely T3/r7/2021-12-09.txt.gz:{chan ch=tech}Stormwind Tech: or fired an error T3/r7/2021-12-09.txt.gz:{chan ch=tech}HiSaZuL Tech: check if mapper plugin is actually enabled T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: GMCP_mapper - enable-yes T3/r7/2021-12-09.txt.gz:{chan ch=tech}HiSaZuL Tech: disable it and then re-enable T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: Enabled plugin Aardwolf_GMCP_Mapper (b6eae87ccedd84f510b74714) T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: no work T3/r7/2021-12-09.txt.gz:{chan ch=tech}Stormwind Tech: make sure all plugins made by Fiendish, Nick Gammon, Lasher and enabled T3/r7/2021-12-09.txt.gz:{chan ch=tech}Stormwind Tech: er are enabled T3/r7/2021-12-09.txt.gz:{chan ch=tech}HiSaZuL Tech: do any commands for mapper work? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: no command works T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: s&d work T3/r7/2021-12-09.txt.gz:{chan ch=tech}HiSaZuL Tech: snd can't work without mapper... T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: that's why I turned here, I don't know what to do, the same client is working fine at home T3/r7/2021-12-09.txt.gz:{chan ch=tech}HiSaZuL Tech: did you copy the client or install it? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: copy T3/r7/2021-12-09.txt.gz:{chan ch=tech}HiSaZuL Tech: only other thing i can think of besides some plugin not being enabled is that you put mush in bad system folder or weird drive or just somewhere far. fiendish few times mentioned that mush does some weird stuff with folder structure T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: commands mapper started to work T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: but on mapper show does not react T3/r7/2021-12-09.txt.gz:{chan ch=tech}Crowley Tech: Try aard layout reset T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: Aardwolf_Main_Layout? T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: did not help T3/r7/2021-12-09.txt.gz:{chan ch=tech}Balalayka Tech: everything works except the graphics map T3/r7/2021-12-10.txt.gz:{chan ch=tech}Abraxos Tech: I just updated to the newest version of MUSH and DINV is no longer working... anyone have any idea how to get it back? I tried re-downloading Durel's plugin but MUSH says its too big. T3/r7/2021-12-10.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That's what she said. T3/r7/2021-12-10.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Don't redownload it, though. Try dinv reload. T3/r7/2021-12-10.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Not sure why the upgrade to MUSH seems to be breaking DINV, though. T3/r7/2021-12-10.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Unless Fiendish made changes to how some of the plugins work (i.e. gmcphelper) T3/r7/2021-12-10.txt.gz:{chan ch=tech}Gaelehad Tech: - h 10 T3/r7/2021-12-10.txt.gz:{chan ch=tech}404 Eroe Tech: I will not T3/r7/2021-12-10.txt.gz:{chan ch=tech}Durel Tech: if it says it's too big when you downloaded it, that means you probably right-clicked on the github link and hit save. That saves the *download page* and names it like the dinv plugin. I hate github :P Click the button on github that gives you the download zip and you should be fine. T3/r7/2021-12-10.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It'll be the green "Code" button. T3/r7/2021-12-10.txt.gz:{chan ch=tech}Abraxos Tech: i'll try that, thanks T3/r7/2021-12-10.txt.gz:{chan ch=tech}Abraxos Tech: awesome, that was it... I just didn't know how to use gethub. Thanks for the help. T3/r7/2021-12-10.txt.gz:{chan ch=tech}Durel Tech: No worries. Github has done that to a lot of people :p T3/r7/2021-12-10.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Did the redownload fix it? T3/r7/2021-12-10.txt.gz:{chan ch=tech}Abraxos Tech: yes, redownloading it did the trick T3/r7/2021-12-10.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Interesting. T3/r7/2021-12-10.txt.gz:{chan ch=tech}Throbbing Redwood Tech: mush has an option to countdown to tick on the bottom display bar, anyone know off the top of their head where to enable it? T3/r7/2021-12-10.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I think it's a plugin T3/r7/2021-12-10.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Install the tick plugin. Fiendish took it out, I believe, upon initial install. T3/r7/2021-12-10.txt.gz:{chan ch=tech}Doge Water Yajan Tech: mine is off right now T3/r7/2021-12-10.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Alternatively, you can install my clock plugin, which serves the same purpose, but looks fanciful. T3/r7/2021-12-10.txt.gz:{chan ch=tech}Doge Water Yajan Tech: there's a separate window for mine.. are those one in the same or two separate plugins? T3/r7/2021-12-10.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It's Aardwolf_Tick_Timer that you want, Redwood. T3/r7/2021-12-10.txt.gz:{chan ch=tech}Anssett Tech: crowley, you had a diff program you mentioned a while ago that you like. remind me what it was? :D T3/r7/2021-12-10.txt.gz:{chan ch=tech}Tech: Throbbing Redwood thanks (Aleister) Crowley heartily. T3/r7/2021-12-10.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Anssett: For? The timer? You mean my Aardclock I just mentioned? T3/r7/2021-12-10.txt.gz:{chan ch=tech}Anssett Tech: no entirely unrelated T3/r7/2021-12-10.txt.gz:{chan ch=tech}Anssett Tech: text diff T3/r7/2021-12-10.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Meldmerge. T3/r7/2021-12-10.txt.gz:{chan ch=tech}Anssett Tech: tyvm :) T3/r7/2021-12-10.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2021-12-10.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley got bored and wrote an alias to load a plugin on the command line and showing whether it was successful or not. *shifty* T3/r7/2021-12-10.txt.gz:{chan ch=tech}Selitos Tech: there a way to have dinv manage wearing a regen ring ans switching back? T3/r7/2021-12-10.txt.gz:{chan ch=tech}Durel Tech: see "dinv help regen" T3/r7/2021-12-10.txt.gz:{chan ch=tech}Graciella Tech: turn the regen feature on T3/r7/2021-12-10.txt.gz:{chan ch=tech}Durel Tech: It will auto-wear a regen ring when you sleep if you turn that mode on T3/r7/2021-12-10.txt.gz:{chan ch=tech}Selitos Tech: well look at that i knew you must have thought of that durel :) T3/r7/2021-12-10.txt.gz:{chan ch=tech}Braun Tech: Durel sleeps? T3/r7/2021-12-10.txt.gz:{chan ch=tech}Durel Tech: Well, I implemented it, but it wasn't my idea :p T3/r7/2021-12-10.txt.gz:{chan ch=tech}Selitos Tech: no way to alias sleep with dinv regen? T3/r7/2021-12-10.txt.gz:{chan ch=tech}Karathos Tech: just toggle dinv regen on, and whenever you sleep/wake it should automatically work T3/r7/2021-12-10.txt.gz:{chan ch=tech}Selitos Tech: just but if i alias sleep as something else it doesn't work T3/r7/2021-12-10.txt.gz:{chan ch=tech}Selitos Tech: even if the alias is in much..perhaps if i use execuite instead of send T3/r7/2021-12-10.txt.gz:{chan ch=tech}Karathos Tech: you don't need an alias, just sleep regularly T3/r7/2021-12-10.txt.gz:{chan ch=tech}Braun Tech: You could just use a string of commands to get and wear the ring for the sleep alias and then put a trigger for "You wake and stand up." To run dinv set wear . T3/r7/2021-12-10.txt.gz:{chan ch=tech}Braun Tech: I guess that wouldn't work for beds >.> I don't know... Kind of silly not to just use sleep. T3/r7/2021-12-10.txt.gz:{chan ch=tech}Selitos Tech: because i don't wand to type sleep/wake. my hands are stressed enough as it is less typing is better T3/r7/2021-12-10.txt.gz:{chan ch=tech}Selitos Tech: i had a 2 letter code for sleep and 1 for wake... T3/r7/2021-12-10.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: 5 more minutes T3/r7/2021-12-10.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: until Advent of Code? T3/r7/2021-12-10.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yeah T3/r7/2021-12-10.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'm awake this time T3/r7/2021-12-10.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: and remaining double, apparently T3/r7/2021-12-11.txt.gz:{chan ch=tech}Tech: Faithful Ruhamah hops around like a little kid. T3/r7/2021-12-11.txt.gz:{chan ch=tech}Tensaw Tech: been a while since I logged in. I had recently installed an inventory manager (MUSHclient). Could someone please help me refresh the 'ol memory? T3/r7/2021-12-11.txt.gz:{chan ch=tech}Nohh Tech: dinv T3/r7/2021-12-11.txt.gz:{chan ch=tech}Ramuh Tech: when it says "Questor tells you..." how to i get that text to show up in a separate tab? i have checked to show "tells" but it seems to only be player tells T3/r7/2021-12-11.txt.gz:{chan ch=tech}Nohh Tech: it's not a tell at all its just what the game prints out for questor T3/r7/2021-12-11.txt.gz:{chan ch=tech}Nohh Tech: so it would require some scripting T3/r7/2021-12-11.txt.gz:{chan ch=tech}Ramuh Tech: ok, thanks :) T3/r7/2021-12-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: https://twitter.com/TartanLlama/status/1469432051187294209 T3/r7/2021-12-11.txt.gz:{chan ch=tech}Nohh Tech: why is your commit just ascii art of a pair of lips T3/r7/2021-12-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you have to lick the code out of the ascii art lips. also the lips are my lips. T3/r7/2021-12-11.txt.gz:{chan ch=tech}Nohh Tech: how avant garde T3/r7/2021-12-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: contemporary code does not offer easy answers T3/r7/2021-12-11.txt.gz:{chan ch=tech}Nohh Tech: i feel like this meme hasn't yet hit the mainstream yet for most people to get it T3/r7/2021-12-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hah T3/r7/2021-12-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ok ok https://www.today.com/food/brutal-review-michelin-starred-restaurant-bros-goes-viral-t242696 T3/r7/2021-12-11.txt.gz:{chan ch=tech}Xephrin Tech: oh my, "oyster loaf that tasted like newark airport"... as a resident of New Jersey that sounds terrifying! T3/r7/2021-12-11.txt.gz:{chan ch=tech}Nohh Tech: it's supposed to taste like the hudson T3/r7/2021-12-11.txt.gz:{chan ch=tech}404 Eroe Tech: anyone know of a good distro around a mail server? kind of like proxmox is for vms or whatever. just trying to not have to set up postfix and a ton of stuff and I have multiple systems and servers that need to relay mail out. T3/r7/2021-12-11.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: for all your get rich quick spams? T3/r7/2021-12-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: don't run your own mail server T3/r7/2021-12-11.txt.gz:{chan ch=tech}404 Eroe Tech: yes. I'm a prince with 12 billion dollars and I'm being hunted by priests. can I have your account number, social security number, and any other information that might help me in sending you 12 billion dollars? T3/r7/2021-12-11.txt.gz:{chan ch=tech}Elfo Tech: lol, sounds legit :) T3/r7/2021-12-11.txt.gz:{chan ch=tech}404 Eroe Tech: eh, I just need inboxes and relays through mailgun or something. do you recommend any service that handles this for me? I know of things like mailgun but not really an all-in-one sort of solution. T3/r7/2021-12-11.txt.gz:{chan ch=tech}Kridak Tech: priests always looking for money... T3/r7/2021-12-11.txt.gz:{chan ch=tech}404 Eroe Tech: I guess technically I could use something like mailgun to send mail out and handle the DMARC and everything for me, then dovecot for inboxes. that's less scary. T3/r7/2021-12-11.txt.gz:{chan ch=tech}404 Eroe Tech: my own inboxes for free with mail delivery handled. T3/r7/2021-12-11.txt.gz:{chan ch=tech}Trachx Tech: debian based one is good choice T3/r7/2021-12-11.txt.gz:{chan ch=tech}Trachx Tech: https://workaround.org/ispmail T3/r7/2021-12-11.txt.gz:{chan ch=tech}Trachx Tech: own mail domain is pretty handy, with catchup all you just need single mailbox to receive mail to mailboxes like shopnameydomain.com T3/r7/2021-12-11.txt.gz:{chan ch=tech}Xephrin Tech: just now trying to set up mapper portals but goto keeps prioritizing recall over the academy portal, am I doing something wrong? (it does work for norecall rooms. recall is set as portalrecall and bouncerecall, academy is set as bounceportal) T3/r7/2021-12-11.txt.gz:{chan ch=tech}Veritheia Tech: because recall is closer to where you're trying to go T3/r7/2021-12-11.txt.gz:{chan ch=tech}Nohh Tech: wish there was a minimum you could set to not use a portal T3/r7/2021-12-11.txt.gz:{chan ch=tech}Xephrin Tech: hmm, stacking a move down to recall from academy seems to trick it that it's the same distance and it prioritizes the academy portal T3/r7/2021-12-11.txt.gz:{chan ch=tech}Nohh Tech: or just get a garbage can T3/r7/2021-12-11.txt.gz:{chan ch=tech}Xephrin Tech: ahh, I knew I was forgetting to do something before leveling T3/r7/2021-12-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: this is your once in a lifetime reminder that when the mapper calls something a portal, that just means set of commands that you can use to go somewhere starting from a room that isn't flagged noportal T3/r7/2021-12-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if you want to end your portal command with a silly dance, go for it T3/r7/2021-12-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if you want to go to the recall room in Aylor via the amulet hotel, that's cool too T3/r7/2021-12-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if you want the mapper to go to recall via the amulet hotel when you've told it that the recall command gets there faster, well...no, lol T3/r7/2021-12-11.txt.gz:{chan ch=tech}Nohh Tech: as long as those commands always end up in the specified room, and work from any noportal start room... T3/r7/2021-12-11.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: actually setting a portal to recall via the amulet hotel is a pretty smart idea if you never want to use the recall command except from noportal rooms. T3/r7/2021-12-11.txt.gz:{chan ch=tech}Nohh Tech: i just dont have a recall portal set up :( works fine pretty much everywhere outside of partroxis T3/r7/2021-12-11.txt.gz:{chan ch=tech}Throbbing Redwood Tech: anyone have the qmob scan script handy? T3/r7/2021-12-11.txt.gz:{chan ch=tech}Fatal FrostBite Tech: You kids and your scipts... back in my day, we scanned manually! T3/r7/2021-12-11.txt.gz:{chan ch=tech}Throbbing Redwood Tech: well back in my day we used telnet, but, times change T3/r7/2021-12-11.txt.gz:{chan ch=tech}Tech: There goes Fatal FrostBite giggling again, and this time he's looking towards Throbbing Redwood. T3/r7/2021-12-11.txt.gz:{chan ch=tech}Throbbing Redwood Tech: on the schools isdn connection. was sweet. T3/r7/2021-12-11.txt.gz:{chan ch=tech}Throbbing Redwood Tech: aard and cs 1.6 on the lan network. good times. T3/r7/2021-12-11.txt.gz:{chan ch=tech}A Calm Stormwind Tech: is there a GMCP event for when double xp/qp happens? T3/r7/2021-12-12.txt.gz:{chan ch=tech}RabbitSlayer Tech: Somehow my mushclient closed and when I reopened it, I've lost my small map. How do I get it back? T3/r7/2021-12-12.txt.gz:{chan ch=tech}Xephrin Tech: you could try 'aard layout reset' but that would reset all your windows T3/r7/2021-12-12.txt.gz:{chan ch=tech}RabbitSlayer Tech: Thanks! That stinks but at least I'd get the map back and it's not that much trouble putting them back the way i want them. T3/r7/2021-12-12.txt.gz:{chan ch=tech}Xephrin Tech: once you get a layout you like you can always save it with 'aard layout'. I keep one layout saved for my laptop and another for my desktop and just restore whatever device I'm playing on at the time. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Luc Tech: I have a plugin for spellup, anyone recall the command for it? T3/r7/2021-12-13.txt.gz:{chan ch=tech}Porcius Tech: spellup help? T3/r7/2021-12-13.txt.gz:{chan ch=tech}Luc Tech: it's a plugin, I just can't remember the command name to access it for adjustments, helps, etc T3/r7/2021-12-13.txt.gz:{chan ch=tech}Porcius Tech: it depends on which one you use. Mine shows up with spellup help T3/r7/2021-12-13.txt.gz:{chan ch=tech}Luc Tech: hmmm... bastmush? T3/r7/2021-12-13.txt.gz:{chan ch=tech}Gigel Tech: if is bast's try "bsp" T3/r7/2021-12-13.txt.gz:{chan ch=tech}Luc Tech: looked in my plugin folder, that's the only that stands out T3/r7/2021-12-13.txt.gz:{chan ch=tech}Luc Tech: yup, that's the one, thank you T3/r7/2021-12-13.txt.gz:{chan ch=tech}A Calm Stormwind Tech: my Dinv seems to have a hiccup. [[ Worn on feet ]: < empty >] but [dinv search wearable feet maxlevel 71] shows im wearing feet [ 41 A *Brand* New Brain feet] T3/r7/2021-12-13.txt.gz:{chan ch=tech}Selitos Tech: can you see invis and hidden? T3/r7/2021-12-13.txt.gz:{chan ch=tech}A Calm Stormwind Tech: Yep I have aard helmet on. Maybe it got trashed let me see if I can grab it T3/r7/2021-12-13.txt.gz:{chan ch=tech}Selitos Tech: ok i think it did that to me when i realized my detect invis was off and i didn't realize it T3/r7/2021-12-13.txt.gz:{chan ch=tech}Selitos Tech: once i put detects back up it was fine T3/r7/2021-12-13.txt.gz:{chan ch=tech}A Calm Stormwind Tech: that is the problem, somhow I lost this item. Odd. As normal selft inflisted newbie error. Which means it got sold to a random shop =\ T3/r7/2021-12-13.txt.gz:{chan ch=tech}Durel Tech: "dinv search ..." doesn't show what you are wearing. It shows what you have in your inventory. If you want to see what you are currently wearing, do "dinv search worn" T3/r7/2021-12-13.txt.gz:{chan ch=tech}Gigel Tech: any ignored containers ? T3/r7/2021-12-13.txt.gz:{chan ch=tech}A Calm Stormwind Tech: Oh, I assumed the green colored meat we are wearing it since that normally matches. What does it mean when it's highlight green in dinv search? T3/r7/2021-12-13.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: it is. T3/r7/2021-12-13.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Green is what you are wearing. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley slaps Durel. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Durel Tech: oh, yes the green font means it is worn. I missed that T3/r7/2021-12-13.txt.gz:{chan ch=tech}Durel Tech: try "dinv refresh all", maybe something got out of sync T3/r7/2021-12-13.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: When your users know more about your plugin than you do... T3/r7/2021-12-13.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Durel: He already solved it - he didn't have detects on. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Porcius Tech: How do we set up kill with special on our s&d plugin? T3/r7/2021-12-13.txt.gz:{chan ch=tech}A Calm Stormwind Tech: yeah this was my bad, it wasn't kept and I guess it landed in my inventory and got sold because I no longer have it. =( T3/r7/2021-12-13.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Porcius: What do you mean special? T3/r7/2021-12-13.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: If you have an alias and you do not need to target the mob because your alias does it, xset kk notarg -- that'll allow you to use your alias. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Porcius Tech: when I hover over the "kk" tab is says left click = "kill" target mob. right click = kill with special T3/r7/2021-12-13.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Oh, hmm. I'll have to revist the code on that. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Selitos Tech: you can alias kk to backstab or something liek that T3/r7/2021-12-13.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Doesn't look like it has any actual function currently. I'll look into it though. Wonder how I've missed that before. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: fov dinv when you attribute a point to a skill like irongrip/dual wield/flying does dinv look at whether you can cast that ability periodically or based on your remorts, or what? T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: asking for myself T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I don't have any friends so T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: like as a scrub without a way to have the flying effect, I've added a point value for it, so it's equipping these nifty wings.. but when I get the spell.. will it know to stop doing that? T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: thank you in advance T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: also, does anyone on this channel know how to create a trigger in MUSHclient? T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: everyone must have me ignored.. not surprised I guess T3/r7/2021-12-13.txt.gz:{chan ch=tech}Brobeo Tech: It does not adjust for what spells you know automatically, but you can set different point values for different level ranges to get the same effect. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Brobeo Tech: What trigger are you trying to make? T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: was joking about trigger... someone asked that a while back T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: ok, yeah or use a different priority or whatever T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: it really doesn't? I'm surprised.. I know it tracks avg spell/stat gains from spellup.. surprised it wouldn't track ability to apply flying affect T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I wonder if it *not* tracking is the reason it seems to always equip Aard Gloves even at SH with points assigned to dual wield T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: hrmm.. will look into this more T3/r7/2021-12-13.txt.gz:{chan ch=tech}A Calm Stormwind Tech: Yajan You can force dual wield via Dinv, but im not sure if it understand if you can dual wield or not, never been an issue for me becuase because i used gloves as well T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: well I picked up some nice ranked gloves.. and I was wondering why dinv was choosing Aard gloves which have no resists over them.. so kind of thinking maybe it is as Brobeo says T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: if Durel gets bored, maybe a good improvement on current plugin would be to add that layer of logic for effects (if it's truly not there) T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: and yes, Durel.. I'll help you test the new version and you can pay me 5-10 TPs like you did all of us last time.. thanks! T3/r7/2021-12-13.txt.gz:{chan ch=tech}High Risk Losteix Tech: what i do is keep a bag on ignore and when i don't want dinv to equip my wings anymore i just throw them in the bag. it's manual, but it works. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: hmm.. not a bad idea T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: probably quite a few options for workarounds, lots of dinv features T3/r7/2021-12-13.txt.gz:{chan ch=tech}A Calm Stormwind Tech: Dinv assigns points. So your points for the one item combined must be higher than the other item, or dinv recognizes it requires the gloves to wear the other items. That could be but speculation. T3/r7/2021-12-13.txt.gz:{chan ch=tech}High Risk Losteix Tech: alternatively, you can set separate profiles from 1-36 and from 37-291 which is exactly the same but deprioritizes flight. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: well sub-SH I'll have to keep adjusting as I tier with the separate profiles.. and yeah I could probably shift the point values around to get a similar effect.. would be a lot of experimentation there T3/r7/2021-12-13.txt.gz:{chan ch=tech}High Risk Losteix Tech: dinv already adjusts levels as you tier T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: not really.. it uses whatever exact numbers you put in your ranges T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: just considers them all "tier levels" T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: it only uses your tier to consider what equipment you could wear for purposes of covet, etc. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: so you'd have to manually adjust your ranges as you tier T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: not a big deal for me personally.. but for a T0 going through T3/r7/2021-12-13.txt.gz:{chan ch=tech}A Calm Stormwind Tech: I'm not sure I follow Yajan. Dinv understand you're a tier and what bonuses that implies. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: referring to the ranges you specify in your priority T3/r7/2021-12-13.txt.gz:{chan ch=tech}A Calm Stormwind Tech: you shouldn't have to manually adjust, you will have to rerun analyze each tier i believe but you shouldn't have to manually adjust anything as you level. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: if you do 1 36 and you're 4+ that range is never used T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: Tier 4+ T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: it doesn't subtract 40 levels and use it T3/r7/2021-12-13.txt.gz:{chan ch=tech}A Calm Stormwind Tech: But you can leave 1-36 and it will be safely ignored? T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: you can, but it's also pointless to even have it at that point T3/r7/2021-12-13.txt.gz:{chan ch=tech}A Calm Stormwind Tech: That's just personal preference then. I still have 1-51 in mine T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: honestly it might be a mut point because your acquisition of a spell is based on your current tier.. so if you set the breakpoints based on when you would get the spell with that class.. it won't require modification (now that I'm thinking about it) T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: however this all assuming you always redo/tier to the same class or have a priority for each that you use T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I've got into that [bad] habit of using a single priority for everything T3/r7/2021-12-13.txt.gz:{chan ch=tech}A Calm Stormwind Tech: I use a single priority depending on which PClass I am. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I think I still change mine so often, it would be annoying to upkeep that many T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: still trying to find the right values for my gear I think T3/r7/2021-12-13.txt.gz:{chan ch=tech}A Calm Stormwind Tech: with your dual wield issue. You need to add the points for both items, but for dual wield you need to include the point's you have assigned to dual wielding as well. T3/r7/2021-12-13.txt.gz:{chan ch=tech}A Calm Stormwind Tech: every time dinv wears something I think it shouldn't it's always turned out the misunderstanding was on my end. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: not following what you mean by points for both items T3/r7/2021-12-13.txt.gz:{chan ch=tech}A Calm Stormwind Tech: grab the item it's wearing, and the item you expect it to wear. Use the priority values you setup and add up all of the values. I'm betting the one it's wearing has a higher point value than the one you're expecting it to wear. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: could be, when I assigned a value to dual wield I put it really high because I thought it was monitoring natural ability to have the effect T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: thinking.. "Yeah, I always want to be able to dual wield" T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: what I would really like (and I think others), is that you always dual wield, and ONLY use the gloves if you can't otherwise T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: same with other effects T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: sanctuary, flying, etc. T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: sounds like that's not natively supported and everyone suggested their flavor of workaround T3/r7/2021-12-13.txt.gz:{chan ch=tech}Doge Water Yajan Tech: which is helpful, I appreciate that T3/r7/2021-12-14.txt.gz:{chan ch=tech}Hellion Tech: is there a way to tell mapper to run to a specific room id? or room number? T3/r7/2021-12-14.txt.gz:{chan ch=tech}Sheriff Shindo Tech: mapper goto 123 T3/r7/2021-12-14.txt.gz:{chan ch=tech}Wardsmith Tech: mapper goto T3/r7/2021-12-14.txt.gz:{chan ch=tech}Hellion Tech: ty T3/r7/2021-12-14.txt.gz:{chan ch=tech}Malark Tech: any idea how to prevent to pass through mansion area when using snd's xrt? there was no problem before. T3/r7/2021-12-14.txt.gz:{chan ch=tech}Anssett Tech: xrt uses mapper db i'm pretty sure, so you would need to figure out what exit you want to block and level-restrict it or something T3/r7/2021-12-14.txt.gz:{chan ch=tech}Anssett Tech: does the path not work, or do you just not want to run that direction? T3/r7/2021-12-14.txt.gz:{chan ch=tech}Gigel Tech: it is possible to get char.status inside an alias ? T3/r7/2021-12-14.txt.gz:{chan ch=tech}Throbbing Redwood Tech: how do i add a variable to a trigger, to say count an event and display the new value after it adds one to it? T3/r7/2021-12-14.txt.gz:{chan ch=tech}Xephrin Tech: You could try this, Redwood: send the trigger to a script, expand variables then use SetVariable("x",(GetVariable("x") + 1)) followed by Send("x") T3/r7/2021-12-14.txt.gz:{chan ch=tech}Amphitrite Tech: ok... have a problem that i'm sure is just me being dumb... trying to create an alias in mush -- refill-helpots -- @goto-aard -- run (blah blah) -- buy (blah blah) -- whaqt its doing is not doing the "@goto-aard" which is another alias i have setup that gets my aardportal from bag then holds it then enters it. if i type "goto-aard" by itself in the dommand line it works fine. am i missing something? T3/r7/2021-12-14.txt.gz:{chan ch=tech}Karathos Tech: probably have to set it to Execute instead of Send (default) T3/r7/2021-12-14.txt.gz:{chan ch=tech}Le do, lo Shakia Tech: i have a question related to Mushclient. it's quite funny actually because sometimes when a question is asked here all my foreground text color turns green T3/r7/2021-12-14.txt.gz:{chan ch=tech}Karathos Tech: also, instead of setting up your own portal aliases, I suggest you take a look at https://github.com/fiendish/aardwolfclientpackage/wiki/GMCP-driven-world-mapper especially the section on portals T3/r7/2021-12-14.txt.gz:{chan ch=tech}Le do, lo Shakia Tech: i have colors off on the MUD so i think it is some gcmp thing? T3/r7/2021-12-14.txt.gz:{chan ch=tech}Amphitrite Tech: nope changing it to "Execute" didn't do anything T3/r7/2021-12-14.txt.gz:{chan ch=tech}Amphitrite Tech: and if i click on "expnd variables" it says "variable goto is not defined" T3/r7/2021-12-14.txt.gz:{chan ch=tech}Karathos Tech: hmm, ah yeah, @ is for variables, so just remove that T3/r7/2021-12-14.txt.gz:{chan ch=tech}A Calm Stormwind Tech: is there no easy way to mark the room you're in as noportal/norecall without using the id and a true/false flag ? T3/r7/2021-12-14.txt.gz:{chan ch=tech}Karathos Tech: recon T3/r7/2021-12-14.txt.gz:{chan ch=tech}Xephrin Tech: it could definitely be scripted, grab the room id from 'mapper thisroom' and toss it into the mapper noportal norecall command T3/r7/2021-12-14.txt.gz:{chan ch=tech}High Risk Losteix Tech: i usually just try to mapper goto somewhere i can only reach by portal and then the room will mark as noportal after it fails. T3/r7/2021-12-14.txt.gz:{chan ch=tech}<> Slips Tech: anyone know how to pull info off a phone that doesnt' have charge T3/r7/2021-12-14.txt.gz:{chan ch=tech}<> Slips Tech: i need to pull info off a phone that has no charge and no way to do it T3/r7/2021-12-14.txt.gz:{chan ch=tech}<> Slips Tech: i tried investigator tools and to dismay T3/r7/2021-12-14.txt.gz:{chan ch=tech}<> Slips Tech: its legal. i have a laptop and its my phone. so any ideas T3/r7/2021-12-14.txt.gz:{chan ch=tech}<> Slips Tech: i have to do it 5 times. 5 different phones T3/r7/2021-12-14.txt.gz:{chan ch=tech}Brobeo Tech: If you can't power on the phone your solution will have to involve opening up the phone, removing the storage and putting it into something that can read it. Painfull stuff. T3/r7/2021-12-14.txt.gz:{chan ch=tech}Elfo Tech: anyone got the message for when its time to quest again please? tryignt o fix my trigger :/ T3/r7/2021-12-14.txt.gz:{chan ch=tech}Brobeo Tech: http://www.aardwolf.com/wiki/index.php/Main/MudMessages T3/r7/2021-12-14.txt.gz:{chan ch=tech}Elfo Tech: thanks :) T3/r7/2021-12-14.txt.gz:{chan ch=tech}Elfo Tech: trying to make some nice and spammy triggers to spam gt with :) T3/r7/2021-12-14.txt.gz:{chan ch=tech}Tech: Doge Water Yajan moans in ecstasy at Elfo. T3/r7/2021-12-14.txt.gz:{chan ch=tech}Marais Tech: for some reason my prompt is not processing my typing after some minutes of playing... T3/r7/2021-12-14.txt.gz:{chan ch=tech}Marais Tech: have you seen this before? T3/r7/2021-12-14.txt.gz:{chan ch=tech}Malark Tech: -10 h T3/r7/2021-12-15.txt.gz:{chan ch=tech}Seductress Reina Tech: anyone using HOUBI exchange platform? T3/r7/2021-12-15.txt.gz:{chan ch=tech}Katsumoto Tech: How do you capture multi-line regexes? T3/r7/2021-12-15.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Pull a sample from highlighting several lines of text on the main screen, right-click, and choosing 'multi-line trigger' T3/r7/2021-12-15.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That will give you the information you need, Katsumoto. T3/r7/2021-12-15.txt.gz:{chan ch=tech}A shot of Whiskey Tech: can I have a trigger change a mush side alias? T3/r7/2021-12-15.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: You can. T3/r7/2021-12-15.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Take a look at the function SetAliasOption. T3/r7/2021-12-15.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: SetAliasOption(BSTR AliasName, BSTR OptionName, BSTR Value) -- that's the basics of it. T3/r7/2021-12-15.txt.gz:{chan ch=tech}RabbitSlayer Tech: How do I expand variables from the command line? T3/r7/2021-12-15.txt.gz:{chan ch=tech}RabbitSlayer Tech: Anyone know of a good tick timer plugin? T3/r7/2021-12-15.txt.gz:{chan ch=tech}Porcius Tech: The default one we have with fiendish package T3/r7/2021-12-15.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: finger crowley, he has a nice clock plugin T3/r7/2021-12-15.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Either the one that comes with MUSH or my Aardclock. Depends on what you want, really. T3/r7/2021-12-15.txt.gz:{chan ch=tech}Throbbing Redwood Tech: anyone have the qmob scan script handy? have asked a couple times to no avail T3/r7/2021-12-15.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: https://i.vgy.me/4aXvC2.png -- That's the output of my clock. T3/r7/2021-12-15.txt.gz:{chan ch=tech}RabbitSlayer Tech: Thanks all! T3/r7/2021-12-15.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Redwood: My SnD scans for qmob and marks it as [Q]. T3/r7/2021-12-15.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: And it will only scan for the qmob based on keyword anyway. T3/r7/2021-12-15.txt.gz:{chan ch=tech}Kerith Tech: any help? mush hates me :( [string "Trigger: "]:3: '' expected near 'for' = line3= for v in variablelist : world.Note (v + " = " + world.GetVariable(v)) T3/r7/2021-12-15.txt.gz:{chan ch=tech}Kerith Tech: ^ i copied this python script to a trig, and it just errors out :( http://mushclient.com/scripts/doc.php?function=GetVariableList T3/r7/2021-12-15.txt.gz:{chan ch=tech}Xephrin Tech: Kerith, did you change your scripting language from Lua to Python? I think there's some additional setup to use Python T3/r7/2021-12-15.txt.gz:{chan ch=tech}Kerith Tech: hmmf no i didn't, but if I do that, my lua stuff will stop working right? cant use both? T3/r7/2021-12-15.txt.gz:{chan ch=tech}Xephrin Tech: I'm not sure - I only see a global option under Configuration > Scripting > Scripts. Plugins look like they specify a language in the xml, but it would probably be more trouble than it's worth to figure it out (even though I know Python way better than Lua) T3/r7/2021-12-15.txt.gz:{chan ch=tech}Kerith Tech: hmmf ya i tried switching to python language (noidea what it did to my plugins)... guess i'll try to do it in lua, tx for try Xeph T3/r7/2021-12-15.txt.gz:{chan ch=tech}Antifa Raded Tech: I've found the best log4j fix T3/r7/2021-12-15.txt.gz:{chan ch=tech}Rakiso Tech: dont use log4j? T3/r7/2021-12-15.txt.gz:{chan ch=tech}Antifa Raded Tech: delete the folder and hope nothing important breaks T3/r7/2021-12-15.txt.gz:{chan ch=tech}Vanellus Tech: Sorry I can't find this in dinv help. How do I see the overall score given to an item against a priority? I can see how to report the stats. T3/r7/2021-12-15.txt.gz:{chan ch=tech}Durel Tech: dinv doesn't track individual item scores, it only tracks the score of an entire set T3/r7/2021-12-15.txt.gz:{chan ch=tech}Vanellus Tech: Thank you that makes sense now. T3/r7/2021-12-15.txt.gz:{chan ch=tech}Durel Tech: because an item may not be able to contribute all of it's stats to a set if the set is hitting a stat ceiling T3/r7/2021-12-15.txt.gz:{chan ch=tech}A Calm Stormwind Tech: Durel does dinv break down the points an individual item puts toward a set? or at any point does it have a count of points it contributes? would be a cool feature to troubleshoot why it's wearing some things over others. T3/r7/2021-12-15.txt.gz:{chan ch=tech}Vanellus Tech: That was my use case, to save multiplying up the score by hand T3/r7/2021-12-15.txt.gz:{chan ch=tech}Durel Tech: No, it really just finds the set with the highest overall score. There really isn't a way to know which piece is contributing out of the set if you are at the ceiling T3/r7/2021-12-15.txt.gz:{chan ch=tech}A Calm Stormwind Tech: using SnD to go to relinquished is causing me to run through a high aggro/deadly area for current level... its been so long I forgot how to stop that from happening. Any ideas? T3/r7/2021-12-15.txt.gz:{chan ch=tech}Heracles Tech: level lock the exit to the area you don't want to go to T3/r7/2021-12-15.txt.gz:{chan ch=tech}A Calm Stormwind Tech: and does level lock take my tier into account? so really i want to make it like 30 levels higher than it should be so this doesn't happen t8 and t9? T3/r7/2021-12-15.txt.gz:{chan ch=tech}Heracles Tech: No it doesn't T3/r7/2021-12-15.txt.gz:{chan ch=tech}A Calm Stormwind Tech: oh perfect T3/r7/2021-12-15.txt.gz:{chan ch=tech}Heracles Tech: Look at mapper help exits for lockexit T3/r7/2021-12-15.txt.gz:{chan ch=tech}A Calm Stormwind Tech: will do thanks T3/r7/2021-12-15.txt.gz:{chan ch=tech}Kerith Tech: where in the 'ether' are mush tables & arrays stored so can look at them? T3/r7/2021-12-15.txt.gz:{chan ch=tech}Karathos Tech: dinv is not picking up new item stats after enchanting, even with dinv refresh all and said items in main inventory, any ideas? T3/r7/2021-12-15.txt.gz:{chan ch=tech}Durel Tech: If someone else enchanted it for you, then dinv won't know about the change. You'll need to tell dinv to first forget the item(s) and then refresh. T3/r7/2021-12-15.txt.gz:{chan ch=tech}Karathos Tech: ah, gotcha, thx T3/r7/2021-12-15.txt.gz:{chan ch=tech}Durel Tech: So something like: dinv forget name somethingOrOther T3/r7/2021-12-15.txt.gz:{chan ch=tech}Durel Tech: then dinv refresh all T3/r7/2021-12-15.txt.gz:{chan ch=tech}Durel Tech: Basically if dinv ever identifies an item, it tries to just remember what the item was so it won't reidentify it if you drop it or give it away and then pick it back up again. But if the item changes when it's out of your inventory then dinv first needs to be told to ignore (forget) what it thinks it knows about the item T3/r7/2021-12-15.txt.gz:{chan ch=tech}Karathos Tech: makes sense ^^ T3/r7/2021-12-16.txt.gz:{chan ch=tech}Kerith Tech: anyone know if theres a way to make mush tables persistant through reboots/restarts? if not something other than tables i should use? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Zhalut Tech: yeah i think you need to serialize it and save to variable T3/r7/2021-12-16.txt.gz:{chan ch=tech}Odorless Nuanse Tech: write it to file. or use plugin to save it to state T3/r7/2021-12-16.txt.gz:{chan ch=tech}Tech: Kerith sits down and thinks deeply. T3/r7/2021-12-16.txt.gz:{chan ch=tech}Kerith Tech: thanks i'll look at those T3/r7/2021-12-16.txt.gz:{chan ch=tech}Sheriff Shindo Tech: does bast's XBroadcast_Level plugin not like redoers? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Sheriff Shindo Tech: ahh, I think i see the Issue... You gain 31 hit points, 27 mana, 18 moves, 9 practices, 6 trains and 6 instinct trains.%C the extra bit for redoers T3/r7/2021-12-16.txt.gz:{chan ch=tech}Aciath Tech: good morning. Does mush have a global function to stop all playing sounds at once? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Sheriff Shindo Tech: see sphelp T3/r7/2021-12-16.txt.gz:{chan ch=tech}Sheriff Shindo Tech: but that might only be for the sound pack T3/r7/2021-12-16.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: spmute is the command for soundpack. Assuming that's what's makign the sounds T3/r7/2021-12-16.txt.gz:{chan ch=tech}Aciath Tech: found it. stopsound(0) T3/r7/2021-12-16.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: If you haven't, you should install the Mushclient_Help plugin. There, you can type things like 'mchelp sound' to see a list of functions (and topics) that relate to sound. T3/r7/2021-12-16.txt.gz:{chan ch=tech}Kerith Tech: ya i been meeaning to ask about that where do you get that T3/r7/2021-12-16.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It's in the plugin folder automatically. Just has to be installed. T3/r7/2021-12-16.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: what's the best to do a timestamped snapshot of a webpage for legal purposes? does internet archive like accept requests? T3/r7/2021-12-16.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: or am I better off just doing a screenshot to a file? T3/r7/2021-12-16.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Probably ss to fie. T3/r7/2021-12-16.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: file* T3/r7/2021-12-16.txt.gz:{chan ch=tech}SNEAKER Mushambo Tech: anyone here know solidity? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Anssett Tech: is there a color code to use to reset colors in a chat line to what the reader's color is for that line? so for instance if i have sent something in color here, how do i get it back to the color that you, the reader have your colorset at T3/r7/2021-12-16.txt.gz:{chan ch=tech}Anssett Tech: i had @d suggested but it did not seem to work :) T3/r7/2021-12-16.txt.gz:{chan ch=tech}Durel Tech: according to "help color", use "" for that T3/r7/2021-12-16.txt.gz:{chan ch=tech}Durel Tech: err dollar sign then C, I guess that gets gagged T3/r7/2021-12-16.txt.gz:{chan ch=tech}Anssett Tech: oh there it is. ty, apparently i can only read n-1 paragraphs in a helpfile today. T3/r7/2021-12-16.txt.gz:{chan ch=tech}Anssett Tech: also in help color it says if you want to send that character you do $@ C - $C T3/r7/2021-12-16.txt.gz:{chan ch=tech}Anssett Tech: yay weird escapes lol T3/r7/2021-12-16.txt.gz:{chan ch=tech}404 Eroe Tech: anyone know how to operate on files with # in their name with bash/zsh? I tried \# and that's just #, but echo "#" echos nothing. T3/r7/2021-12-16.txt.gz:{chan ch=tech}Sheesh Kabob Tech: single quotes around the string? T3/r7/2021-12-16.txt.gz:{chan ch=tech}404 Eroe Tech: ah. yeah. also stupidly my screen reader was just refusing to read a single # on a line when I used echo. thanks. T3/r7/2021-12-16.txt.gz:{chan ch=tech}Gigel Tech: anyone has a script that can appraise items from shops and save the info to a database or file ? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Zhalut Tech: how long has Cynik's winds trading card site been unreachable? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Not an Imm Erikson Tech: 2 months maybe? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Yajirobe Roninleader Tech: what coding language is mush in? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Brobeo Tech: The client is c++, the plugins are lua T3/r7/2021-12-16.txt.gz:{chan ch=tech}A Calm Stormwind Tech: I think mush supports several languages for plugins not just lua? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Zhalut Tech: -s T3/r7/2021-12-16.txt.gz:{chan ch=tech}Negader Tech: can read more here: http://www.gammon.com.au/mushclient/mushclient.htm T3/r7/2021-12-16.txt.gz:{chan ch=tech}Yajirobe Roninleader Tech: ok i guess more importantly, is snd in lua? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Heracles Tech: yes T3/r7/2021-12-16.txt.gz:{chan ch=tech}Yajirobe Roninleader Tech: nice! T3/r7/2021-12-16.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I truly need to utilize espanso more. One of the best text expansion tools (100% free) I've ever used. T3/r7/2021-12-16.txt.gz:{chan ch=tech}Katsumoto Tech: Anyone knows how to capture a multiline regex? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Mannec Tech: its quite difficult in mush and zmud both - essentially, you need to process each line separately. T3/r7/2021-12-16.txt.gz:{chan ch=tech}Mannec Tech: capture all the lines, stuff them into a single string, and then process that - good luck figuring out where to start and stop. T3/r7/2021-12-16.txt.gz:{chan ch=tech}Katsumoto Tech: bummer. trying to figure how to capture invdetails T3/r7/2021-12-16.txt.gz:{chan ch=tech}Zhalut Tech: three triggers, one that captures {invdetails} and turns on the trigger that reads individual lines after it. then the final {/invdetails} which turns off the trigger that reads lines T3/r7/2021-12-16.txt.gz:{chan ch=tech}Mannec Tech: thats actually helpful - the start and end tags will come in handy. T3/r7/2021-12-16.txt.gz:{chan ch=tech}Katsumoto Tech: i prefer to capture it all with 1 regex T3/r7/2021-12-16.txt.gz:{chan ch=tech}Mannec Tech: probably impossible, unless you want to try filtering out newlines - which clients dont make easy. T3/r7/2021-12-16.txt.gz:{chan ch=tech}Mannec Tech: also, thats the hard way. the info looks like its consistently distributed across the lines that it takes. makes processing each line separately much easier. T3/r7/2021-12-16.txt.gz:{chan ch=tech}Katsumoto Tech: tech let me try T3/r7/2021-12-16.txt.gz:{chan ch=tech}Doge Water Yajan Tech: congrats on your GQ win Durel.. I have a question about Dinv.. ;P T3/r7/2021-12-16.txt.gz:{chan ch=tech}Scars Tech: omg issa trap T3/r7/2021-12-16.txt.gz:{chan ch=tech}Tech: Doge Water Yajan throws back his head and cackles with insane glee! T3/r7/2021-12-16.txt.gz:{chan ch=tech}Durel Tech: heh, nicely done T3/r7/2021-12-16.txt.gz:{chan ch=tech}Doge Water Yajan Tech: got into a lengthy discussion about something in Dinv with some of your biggest fans and was wondering about your take on it T3/r7/2021-12-16.txt.gz:{chan ch=tech}Durel Tech: flattery followed by a nice setup and hook T3/r7/2021-12-16.txt.gz:{chan ch=tech}Tech: Doge Water Yajan throws back his head and cackles with insane glee! T3/r7/2021-12-16.txt.gz:{chan ch=tech}Durel Tech: I'm starting to get worried :p T3/r7/2021-12-16.txt.gz:{chan ch=tech}Doge Water Yajan Tech: let me lay out my use case and you tell me what you would do T3/r7/2021-12-16.txt.gz:{chan ch=tech}Tech: Furen grabs some popcorn and sits back to watch the show. T3/r7/2021-12-16.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I'm just a lowly SC Cleric and I want my priority to equip the Aard gloves up until the point I get the dual wield skill (similarly with flying or haste, or true seeing, etc. for other SC), but I don't want to keep changing my priority or have to upkeep multiple priorities as I get new remorts that may or may not have those skills T3/r7/2021-12-16.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I would only want to receive those abilities from my gear, if I didn't have a way to apply the spell/skill T3/r7/2021-12-16.txt.gz:{chan ch=tech}Durel Tech: Set multiple level ranges in your priority T3/r7/2021-12-16.txt.gz:{chan ch=tech}Doge Water Yajan Tech: works for the first r0.. but then what about r1? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Durel Tech: That's probably the closest thing available at the moment T3/r7/2021-12-16.txt.gz:{chan ch=tech}Doge Water Yajan Tech: so I get dual wield really early next remort T3/r7/2021-12-16.txt.gz:{chan ch=tech}Doge Water Yajan Tech: ok, that's kind of the consensus we all hit T3/r7/2021-12-16.txt.gz:{chan ch=tech}Doge Water Yajan Tech: what about a feature similar to your spellup one that looks at what you can do and gives you a hook to not equip the things to get abilities that you can cast? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Durel Tech: Yeah, I understand the thought and I did consider it. However, it gets a bit tricky to check if your char has access to a skill/spell and then roll that into the decision of what to wear T3/r7/2021-12-16.txt.gz:{chan ch=tech}The River Styx Tech: does dinv prioritize portal location at all? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Durel Tech: To be honest, that was on my roadmap until I hit T9 and then I just said screw it since it didn't affect me anymore :P I probably shouldn't admit that :p T3/r7/2021-12-16.txt.gz:{chan ch=tech}Doge Water Yajan Tech: it's certainly a lot of documenting.. I have most of the stuff recorded for my own spellup script.. I think you'd still have to create a hook or flag to not use the gear (or just not use the priority score if the character can natively cast).. but make it optional? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Durel Tech: Styx: dinv will use the portal location just like any other location and will try to maximize the "score" of your total set including any portals T3/r7/2021-12-16.txt.gz:{chan ch=tech}Doge Water Yajan Tech: that's totally fair honestly T3/r7/2021-12-16.txt.gz:{chan ch=tech}Doge Water Yajan Tech: kind of got that impression that you'd moved on for the most part from actively developing it T3/r7/2021-12-16.txt.gz:{chan ch=tech}Doge Water Yajan Tech: was just curious T3/r7/2021-12-16.txt.gz:{chan ch=tech}The River Styx Tech: hmm, seems to always prioritize amulet over tiger of kai, eventho obv better T3/r7/2021-12-16.txt.gz:{chan ch=tech}Durel Tech: Styx: your priority is probably telling dinv that you want stats and that's why it's picking the amulet. That's my guess at least. T3/r7/2021-12-16.txt.gz:{chan ch=tech}The River Styx Tech: maybe, seems to prioritize dr over stats in other locations so thats why I was wondering. I'll make Crowley fix it for me. He built my priority anyways T3/r7/2021-12-16.txt.gz:{chan ch=tech}Durel Tech: Yajan: I'm actually doing quite a bit of plugin development now and dinv will get some attention later this year if all goes as planned. It's just not at the top of my list at the moment. T3/r7/2021-12-16.txt.gz:{chan ch=tech}Scars Tech: in the next 2 weeks? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Durel Tech: Oh, in the next 12 months I mean :P T3/r7/2021-12-16.txt.gz:{chan ch=tech}Tech: Scars nods. T3/r7/2021-12-16.txt.gz:{chan ch=tech}The River Styx Tech: wishful thinking :) T3/r7/2021-12-16.txt.gz:{chan ch=tech}Tech: Doge Water Yajan bursts into tears. T3/r7/2021-12-16.txt.gz:{chan ch=tech}Doge Water Yajan Tech: is your new plugin for public consumption? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Doge Water Yajan Tech: will it help me get to 100k pups? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Durel Tech: That's the goal! T3/r7/2021-12-16.txt.gz:{chan ch=tech}Durel Tech: err, the goal is for (mostly) public consumption. I won't comment on your pups :p T3/r7/2021-12-16.txt.gz:{chan ch=tech}Tech: Doge Water Yajan giggles. T3/r7/2021-12-16.txt.gz:{chan ch=tech}Braun Tech: Dang! You got my hopes up! T3/r7/2021-12-16.txt.gz:{chan ch=tech}Tech: Doge Water Yajan nods. T3/r7/2021-12-16.txt.gz:{chan ch=tech}The River Styx Tech: whats that gmcp wiki link again? T3/r7/2021-12-16.txt.gz:{chan ch=tech}Zhalut Tech: http://www.aardwolf.com/wiki/index.php/Clients/GMCP T3/r7/2021-12-16.txt.gz:{chan ch=tech}The River Styx Tech: thx T3/r7/2021-12-17.txt.gz:{chan ch=tech}Urshilikai Tech: dinv seems to only be analyzing what I'm currently wearing, how do I make it include my entire inventory in analyze T3/r7/2021-12-17.txt.gz:{chan ch=tech}Smudge Tech: Mush client working okay on Win 11? T3/r7/2021-12-17.txt.gz:{chan ch=tech}Seductress Reina Tech: no idea T3/r7/2021-12-17.txt.gz:{chan ch=tech}Giddorah Tech: Hmm... So... I've turned off logging in my Mush-client but, everytime I log off there's a 500Mb file that needs to be uploaded to onedrive (I play from onedrive)... Is there a toggle that I've missed somewhere not in the logging-part of the settings? T3/r7/2021-12-17.txt.gz:{chan ch=tech}404 Eroe Tech: onedrive is on crack and likely it's just your sqlite file T3/r7/2021-12-17.txt.gz:{chan ch=tech}Giddorah Tech: No, I'm looking at the file right now and it's currently being written to T3/r7/2021-12-17.txt.gz:{chan ch=tech}Algaru Tech: i see 2 log files in my directory - one called "aardwolf log" and the other is "aardwolfChatLog" T3/r7/2021-12-17.txt.gz:{chan ch=tech}Algaru Tech: so you may need to do something to turn off the chat log - that's the larger one for me T3/r7/2021-12-17.txt.gz:{chan ch=tech}Giddorah Tech: Yeah, I've got AardwolfChatLog, and the timestamp on it for last change changes every minute T3/r7/2021-12-17.txt.gz:{chan ch=tech}Giddorah Tech: Yeah, that's the one I'm wondering about if anyone know where to toggle that one off :) T3/r7/2021-12-17.txt.gz:{chan ch=tech}Algaru Tech: right click on the communication log window T3/r7/2021-12-17.txt.gz:{chan ch=tech}Algaru Tech: then logging to file -> disable T3/r7/2021-12-17.txt.gz:{chan ch=tech}Giddorah Tech: Oooh! I need to do that for all tabs? T3/r7/2021-12-17.txt.gz:{chan ch=tech}Algaru Tech: no idea, i only have 2 log files T3/r7/2021-12-17.txt.gz:{chan ch=tech}Giddorah Tech: Ah, doesn't look like I have to. Excellent. Now let's hope that file stops swelling. Thanks for the find :) T3/r7/2021-12-17.txt.gz:{chan ch=tech}Algaru Tech: i just found this one myself, haha... i should turn it off too, i don't need this T3/r7/2021-12-17.txt.gz:{chan ch=tech}Giddorah Tech: Yeah, it's not like my name is Abelinc :P T3/r7/2021-12-17.txt.gz:{chan ch=tech}Algaru Tech: oh, wow... this is years of communication logs T3/r7/2021-12-17.txt.gz:{chan ch=tech}Giddorah Tech: Yep, that seems to be it :) Awesome! T3/r7/2021-12-17.txt.gz:{chan ch=tech}Evine Tech: anyone figure out a way to link aardwolf and discord for example if there's a double going on, to send a discord message? :D T3/r7/2021-12-17.txt.gz:{chan ch=tech}Sheriff Shindo Tech: umm i'm sure that already is on the aardwolf discord channel T3/r7/2021-12-17.txt.gz:{chan ch=tech}Sheriff Shindo Tech: but i may be mistaken and it's only a twitter feed T3/r7/2021-12-17.txt.gz:{chan ch=tech}Evine Tech: aardwolf has a discord channel? T3/r7/2021-12-17.txt.gz:{chan ch=tech}Evine Tech: anyone has an invite link? T3/r7/2021-12-17.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: Unofficial one yes T3/r7/2021-12-17.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: help www T3/r7/2021-12-17.txt.gz:{chan ch=tech}Sheriff Shindo Tech: oh, i wasn't mistaken, there is a channel anoucing double on the discord server T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Evine: If you go to my Github, you can see the instructions to use Telegram to send you notifications. T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It includes double alerts, and you can add whatever else you want. T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I personally have tells sent to it as well as quest time. T3/r7/2021-12-17.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: MUSHclient questions answered here T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Fiendish: What's the likelihood you would add a "mapper portal change " option so you don't have to delete and re-enter a portal if you are changing its command? T3/r7/2021-12-17.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: isn't that exactly what mapper fullportal does? T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: No, because mapper fullportal needs all the arguments as far as I know. T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: But if I have a portal already mapped, and I realize there's a typo, or I make a new alias to simplify things, I don't want to have to do: mapper fullportal ...., but instead do: mapper change #15 port 123456 T3/r7/2021-12-17.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hmm T3/r7/2021-12-17.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: ah i see T3/r7/2021-12-17.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: since entering portals correctly is something that only needs to happen once, this strikes me as not a very important detail T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: As of now, you have to do: mapper delete portal , then redo the portal. Skip the delete and update the new command. T3/r7/2021-12-17.txt.gz:{chan ch=tech}A Calm Stormwind Tech: I'd concur an easier ability to change them would be nice. especially if you change up your aliase, which requires redoing 100% of them. T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Typically, yes. But sometimes portals change (e.g. clan portals), or someone learns that DINV handles portals nicely and now want to use an alias instead of their command of "get item bag;;wear item;;enter;;remove item;;put item bag" T3/r7/2021-12-17.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: i remember swapping to dinv... that was alot of typing T3/r7/2021-12-17.txt.gz:{chan ch=tech}Tech: CheeZy Bot HiSaZuL falls down laughing. T3/r7/2021-12-17.txt.gz:{chan ch=tech}Sheriff Shindo Tech: What Fiendish isn't saying is if you write it ... he might add it T3/r7/2021-12-17.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods at Sheriff Shindo. T3/r7/2021-12-17.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'm not opposed to it T3/r7/2021-12-17.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: It just seems very not important T3/r7/2021-12-17.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods at IAC DO Fiendish. T3/r7/2021-12-17.txt.gz:{chan ch=tech}Sheriff Shindo Tech: oh yeah... that snippet to visually mark rooms as norecall etc... where is it? T3/r7/2021-12-17.txt.gz:{chan ch=tech}A Calm Stormwind Tech: oh yeah the ability to mark thisroom as norecall/no portal would be nice too T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Only reason I brought it up is because I've done that whole routine before, and another person had brought it up. The next easiest way right now is to modify the database on exits. Filter by *, and change what you need to do. Write the changes, reload MUSH. But that's silly and can be dangerous if you mess up. T3/r7/2021-12-17.txt.gz:{chan ch=tech}Evine Tech: is it possible to mark an entire area as no portal/no recall? or do you have to manually do it for each room? T3/r7/2021-12-17.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: lol T3/r7/2021-12-17.txt.gz:{chan ch=tech}Sheriff Shindo Tech: Fiendish already build in a system that catches recon info T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Stormwind: You can already mark rooms as norecall/noportal. And recon will do it automatically. T3/r7/2021-12-17.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yeah I wouldn't suggest that to anyone T3/r7/2021-12-17.txt.gz:{chan ch=tech}Porcius Tech: any way to ignore portal use depending on your level + tier? Like I mapped my portals using dinv but it often uses portals that are not within my level reach yet. Might be minor issue as I get tiered but it's quite unpleasant now T3/r7/2021-12-17.txt.gz:{chan ch=tech}Evine Tech: useful for uplanes T3/r7/2021-12-17.txt.gz:{chan ch=tech}A Calm Stormwind Tech: recon is nice.. when you have it. T3/r7/2021-12-17.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you'll get it soon! T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well, how do you know a room is noportal/norecall without testing it if you don't have recon? It automatically marks norecall/noportal if it fails. T3/r7/2021-12-17.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: free warrior advertisement right there T3/r7/2021-12-17.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: thats a boring way of doing it. T3/r7/2021-12-17.txt.gz:{chan ch=tech}A Calm Stormwind Tech: because i know the areas well enough? =p typing home/enter in every room is time taxing when I could just noportal thisroom T3/r7/2021-12-17.txt.gz:{chan ch=tech}A Calm Stormwind Tech: having a mapping ability class gated is odd imo. T3/r7/2021-12-17.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I kinda like it T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: So, set up a MUSH alias to do: Execute("mapper noportal " .. gmcp("room.info.num") .. " true") T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: And the same for norecall. T3/r7/2021-12-17.txt.gz:{chan ch=tech}A Calm Stormwind Tech: yeah I'll setup one myself. =p T3/r7/2021-12-17.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: you all trying to avoid fun stuff imo... T3/r7/2021-12-17.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Evine: one room at a time T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Anyway, I'll look into submitting a PR to add 'mapper portal change # ' at some point this weekend, unless someone beats me to it. T3/r7/2021-12-17.txt.gz:{chan ch=tech}Greybeard Tech: ohh, a race T3/r7/2021-12-17.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley snickers softly. T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: To be quite fair, you COULD query all the rooms in a zone, get all their IDs, then just set up a loop through the table and send the noportal/norecall command. Would be spammy... or you could query the DB and do it that way. T3/r7/2021-12-17.txt.gz:{chan ch=tech}A Calm Stormwind Tech: yeah for the areas that are almost 100% noportal/norecall doing an update query would be quicker T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Unless someone puts in a new command of: mapper area -- to mark it as such, then individually change the ones you need to... *shifty* T3/r7/2021-12-17.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Maybe I'll submit some new PRs this weekend, then. T3/r7/2021-12-17.txt.gz:{chan ch=tech}Odorless Nuanse Tech: mapper portallevel 1 300 one alias to make them so T3/r7/2021-12-17.txt.gz:{chan ch=tech}Le do, lo Shakia Tech: is there any way in mushclient to purge an entire area from the map, my chaprenulas lab is so screwed lol T3/r7/2021-12-17.txt.gz:{chan ch=tech}Greybeard Tech: mapper purgezone T3/r7/2021-12-17.txt.gz:{chan ch=tech}Doge Water Yajan Tech: mapper help all.. T3/r7/2021-12-17.txt.gz:{chan ch=tech}Doge Water Yajan Tech: utilities section at the bottom T3/r7/2021-12-17.txt.gz:{chan ch=tech}Le do, lo Shakia Tech: ty T3/r7/2021-12-17.txt.gz:{chan ch=tech}Luc Tech: mapper command to do something, for example greet statue T3/r7/2021-12-17.txt.gz:{chan ch=tech}Luc Tech: please, I would really like the command to do something like 'descend stairs' on mapper T3/r7/2021-12-17.txt.gz:{chan ch=tech}Griks Tech: are you looking for mapper cexit? T3/r7/2021-12-17.txt.gz:{chan ch=tech}Luc Tech: yes, thank you T3/r7/2021-12-18.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2021-12-18.txt.gz:{chan ch=tech}Sheriff Shindo Tech: Fiendish, is there a plan to include the visual showing of rooms as norecalll/noportal in the standard release? T3/r7/2021-12-18.txt.gz:{chan ch=tech}Sheriff Shindo Tech: someone posted a couple of lines of text a while back that could be added to the mapper plugin... but i forgot to save it and can't remember where i saw it T3/r7/2021-12-18.txt.gz:{chan ch=tech}Sheriff Shindo Tech: and despite my diff-fu i couldn't find the lines T3/r7/2021-12-18.txt.gz:{chan ch=tech}Trachx Tech: pretty simple, just open mapper plugin and locate elseif room.info and string.match(room.info, "pk") then T3/r7/2021-12-18.txt.gz:{chan ch=tech}Trachx Tech: then add another if then with if room.norecall == 1 then or if room.noportal == 1 then T3/r7/2021-12-18.txt.gz:{chan ch=tech}Sheriff Shindo Tech: no, it actually used the flags in the database as set by recon T3/r7/2021-12-18.txt.gz:{chan ch=tech}Dogwater Welding Tech: IIRC i think Sath was the one who made a plugin thing for it T3/r7/2021-12-18.txt.gz:{chan ch=tech}Sheriff Shindo Tech: yeah all you did was find the write place and stick in like 6 lines of code T3/r7/2021-12-18.txt.gz:{chan ch=tech}Sheriff Shindo Tech: oops fingers are faster than brain this morning T3/r7/2021-12-18.txt.gz:{chan ch=tech}Trachx Tech: but mapper does ourroom = load_room_from_database (uid) T3/r7/2021-12-18.txt.gz:{chan ch=tech}Trachx Tech: but if you want to use other database than mappers then you need to add selects from that other database T3/r7/2021-12-18.txt.gz:{chan ch=tech}Sheriff Shindo Tech: it didn't change the database, just the mapper display T3/r7/2021-12-18.txt.gz:{chan ch=tech}Trachx Tech: I do not quite get you, load_room_from_database loads room info from database also it gets info: noportal = row.noportal, norecall = row.norecall, T3/r7/2021-12-18.txt.gz:{chan ch=tech}Trachx Tech: so at that place with "pk" you already have info whether room is noportal or norecall T3/r7/2021-12-18.txt.gz:{chan ch=tech}Sheriff Shindo Tech: yes but when the default mapper draws the rooms it doesn't show all that with a nice little red X in the room T3/r7/2021-12-18.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: > "Shindo Tech: someone posted a couple of lines of text" - nobody ever shows things to _me_ though. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Sheriff Shindo Tech: damn... i had hoped you'd seen it :-( T3/r7/2021-12-18.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: no T3/r7/2021-12-18.txt.gz:{chan ch=tech}Macbeth Tech: send a screenshot to fiendish :P T3/r7/2021-12-18.txt.gz:{chan ch=tech}Sheriff Shindo Tech: i upgraded.... so i can't :-( T3/r7/2021-12-18.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but if someone sends me a picture of what it looks like or a PR I'd add it T3/r7/2021-12-18.txt.gz:{chan ch=tech}Trachx Tech: that is why you just have to add: elseif room.info and room.norecall then room.bordercolour = EYE_HITTING_RAINBOW T3/r7/2021-12-18.txt.gz:{chan ch=tech}Sheriff Shindo Tech: but i do have zip backups... T3/r7/2021-12-18.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: assuming it isn't horrible T3/r7/2021-12-18.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'm not prepared to add rainbow borders. the draw cost would be too high T3/r7/2021-12-18.txt.gz:{chan ch=tech}Tech: Luc dies T3/r7/2021-12-18.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: the mapper drawing is already too slow and needs to be completely rewritten which I've been putting off for years T3/r7/2021-12-18.txt.gz:{chan ch=tech}The River Styx Tech: I just want custom exits on walk T3/r7/2021-12-18.txt.gz:{chan ch=tech}The River Styx Tech: as cmud mapper did T3/r7/2021-12-18.txt.gz:{chan ch=tech}Dogwater Welding Tech: i want unique mapper backgrounds for every area :p T3/r7/2021-12-18.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: that's like my oldest mapper request lol T3/r7/2021-12-18.txt.gz:{chan ch=tech}Trachx Tech: be creative, why not just add a small picture with room contents T3/r7/2021-12-18.txt.gz:{chan ch=tech}Trachx Tech: then you could zoom and look at the picture instead of reading room descs T3/r7/2021-12-18.txt.gz:{chan ch=tech}Throbbing Redwood Tech: why stop there, render the room in 3d and add animations to a avatar wearing our eq..... >.> T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: with lots of customization options for faces and stuff, per race T3/r7/2021-12-18.txt.gz:{chan ch=tech}Throbbing Redwood Tech: of course T3/r7/2021-12-18.txt.gz:{chan ch=tech}Throbbing Redwood Tech: and spell effects T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: just basically marry aardwolf to WoW, but good:) T3/r7/2021-12-18.txt.gz:{chan ch=tech}Throbbing Redwood Tech: i mean legion timewalking has been fun lately T3/r7/2021-12-18.txt.gz:{chan ch=tech}Throbbing Redwood Tech: and mage tower is back T3/r7/2021-12-18.txt.gz:{chan ch=tech}Sheriff Shindo Tech: ooh i found it, in aardmapper.lua :-) T3/r7/2021-12-18.txt.gz:{chan ch=tech}Sheriff Shindo Tech: https://pastebin.com/HHYfLy95 T3/r7/2021-12-18.txt.gz:{chan ch=tech}Porcius Tech: any way to make mapper ignore an area before reaching a certain level? T3/r7/2021-12-18.txt.gz:{chan ch=tech}Sheriff Shindo Tech: you mean when searching for room names? T3/r7/2021-12-18.txt.gz:{chan ch=tech}Heracles Tech: Go to the entry to the room and use mapper lockexit T3/r7/2021-12-18.txt.gz:{chan ch=tech}Heracles Tech: to the area* T3/r7/2021-12-18.txt.gz:{chan ch=tech}Porcius Tech: will try that, thx T3/r7/2021-12-18.txt.gz:{chan ch=tech}Heracles Tech: It will stop it from speedwalking through the exit until a specific level T3/r7/2021-12-18.txt.gz:{chan ch=tech}Sheriff Shindo Tech: very useful in masquerade and the bar full of brawlers T3/r7/2021-12-18.txt.gz:{chan ch=tech}Odorless Nuanse Tech: you should add lockexit to brawler rooms anyways. faster to go around than walk through T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Whee, successfully added 'mapper change portal # {new command}' to my GMCP mapper plugin. Now to do a PR on it! T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: No more deleting portals and adding them back. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Turie Tech: PR? T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Pull request to Fiendish's AardMUSH package. T3/r7/2021-12-18.txt.gz:{chan ch=tech}404 Eroe Tech: wonder how many log4j we're going to go through before things stop dying. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Gaelehad Tech: till they fix it correctly T3/r7/2021-12-18.txt.gz:{chan ch=tech}404 Eroe Tech: oh so a few more versions T3/r7/2021-12-18.txt.gz:{chan ch=tech}Amarufox Tech: buckle up :) T3/r7/2021-12-18.txt.gz:{chan ch=tech}404 Eroe Tech: because does -anyone- understand that shitshow? T3/r7/2021-12-18.txt.gz:{chan ch=tech}Decimator Tech: log142j T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Making a PR is significantly more difficult when your own fork is 2200 commits behind. T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: While I'm messing with mapper, anyone else have a request to add for commands? I'm submitting a 'mapper change portal #index {new command}' change so that instead of deleting a portal and then adding a portal back in, you can simply change it to the new command. Helpful if you have 80 portals of 'get blah bag;;wear blah;;enter;;remove blah;;put blah bag' and you want to use an alias like 'port blah' instead. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Tech: Scrooge Mc Ruckus enters A Portal to Blah and disappears. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Zhalut Tech: a flag to turn on off portals for gq's? T3/r7/2021-12-18.txt.gz:{chan ch=tech}404 Eroe Tech: woohoo, you made fuckus vanish T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Ruckus winds up ahead of a politician's head... Eewww, what's all this brown stuff surrounding him? T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Language, Eroe. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Tech: Scrooge Mc Ruckus sniffs himself curiously. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Macbeth Tech: may need another column to label "chaos portal" and they wouldnt be used when gq in progress.. or we can just alias to portal delete.. and add back after gq T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Zhalut: In order to do that, I'd have to add a column to the existing database. Until Fiendish adds a 'enabled' column, that probably won't be able to be added. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Zhalut Tech: could the script add a column to a table if one doesn't exist? T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Honestly, it's not too entirely difficult to do yourself, if you know how to run sql commands. T3/r7/2021-12-18.txt.gz:{chan ch=tech}404 Eroe Tech: you could just alter table and set it to true by default. T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It can, yes, but when Fiendish updates MUSH again, you lose the column anyway. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Zhalut Tech: his code looks at tables and removes columns? i dont have a need for this. just tossing out the idea T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: What I would do, honestly, is run a query on all portals in the database and their corresponding levels. Then you can manually add to a local table the commands that are not golden portals. Then you can loop through that table and change the corresponding level to 300. After the gq, reset them back to their original levels. T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Zhalut: It doesn't remove columns. But any changes made to files that come with Aardwolf packages are overwritten when you update. As far as the Aardwolf database, I think it checks for differences in the tables and attempts to 'correct' them. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: command to see if I have the most current version of s&d and how to update it? T3/r7/2021-12-18.txt.gz:{chan ch=tech}Metzli Tech: snd update will update if there's a version available T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: there a helpfile system for snd, if so, what's the command? T3/r7/2021-12-18.txt.gz:{chan ch=tech}Porcius Tech: xhelp T3/r7/2021-12-18.txt.gz:{chan ch=tech}Metzli Tech: snd help T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: both return unknown T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: I have version 4.51? T3/r7/2021-12-18.txt.gz:{chan ch=tech}Porcius Tech: heh, I have 5.99 T3/r7/2021-12-18.txt.gz:{chan ch=tech}Porcius Tech: which one u using T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: so it doesn't automatically update? T3/r7/2021-12-18.txt.gz:{chan ch=tech}Metzli Tech: I would guess he's on winklewinkles T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: I thought I had moved over to crowley's? T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: it's been a while T3/r7/2021-12-18.txt.gz:{chan ch=tech}Metzli Tech: This is the part where I bow out due to not wanting to give incorrect information. Best of luck with your fix! T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Eh, if snd update doesn't work, just get it from my github. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: keeps saying paging, should I let that run? T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Huh? T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: I typed snd update and it updated, said indexing area levels, then kept returning paging for a while T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Oh, odd. It should automatically detect paging, too. Glad it updated, though. Try 'xset index areas' again, though. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: returns a bunch of paging, gonna turn pagesize off and try again T3/r7/2021-12-18.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Been a LOT of changes since v4.51. T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Some due to the help of Naricain. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: worked that time, almost instant index T3/r7/2021-12-18.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: biggest issue I had is that I couldn't find a command to show me clickable area of target mob on a quest beyond when the questgiver first gives it T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: is there a command to use 'where' on a mob that returns a clickable link to rt? T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: qw , yes. T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Read through 'xhelp', though. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: thank you, that's the main help and I should be able to use it and learn about the rest of its functionality T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: how to copy text in mushclient with color? T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Depends on where you grab it from. T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: comm-log, right-click, copy with color. Main window, it's ctrl+d. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: easiest place? would that be communication log? T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: thank you T3/r7/2021-12-18.txt.gz:{chan ch=tech}Luc Tech: thank you, Crowley, this version of snd is a lot more helpful T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I'm glad. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Tinypotato Tech: h T3/r7/2021-12-18.txt.gz:{chan ch=tech}Tensaw Tech: Mushclient aard package...just load aard_inventory plugin and I'm getting an error about file size? Thanks for any help! T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That's because you saved the web page instead of downloaded the code. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Tensaw Tech: sweet. thanks T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: On the github, look for the green Code button. Click on it, download zip, extract it, and install that xml file. T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Whoops. Apparently linked the wrong url in my tech note. If you've already installed my gmcp mapper update based on the note, go back and copy the link again. I was targeting the wrong branch at the time, but now corrected the master branch. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Mannec Tech: obvious solution is obvious - make all changes in-place, so that you never have the wrong branch :p T3/r7/2021-12-18.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Fiendish prefers PRs to go to the development branch, though. :D T3/r7/2021-12-18.txt.gz:{chan ch=tech}404 Eroe Tech: hi the 90s called and csv is a terrible idea. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Scars Tech: what's wrong with csv? T3/r7/2021-12-18.txt.gz:{chan ch=tech}Mannec Tech: its a perfectly valid way to distribute data in an organized way. commas rule, and flat files are damn near bullet-proof. T3/r7/2021-12-18.txt.gz:{chan ch=tech}404 Eroe Tech: haha I mistyped, was supposed to be cvs! T3/r7/2021-12-18.txt.gz:{chan ch=tech}404 Eroe Tech: blame alcohol. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Mannec Tech: oh yeah, thats different. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Scars Tech: whats... what's cvs? the drug store? T3/r7/2021-12-18.txt.gz:{chan ch=tech}404 Eroe Tech: really old version control system, changes were made in place and all kinds of issues broke it horribly. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Scars Tech: ah T3/r7/2021-12-18.txt.gz:{chan ch=tech}Kerthump Tech: hiya T3/r7/2021-12-18.txt.gz:{chan ch=tech}Mannec Tech: pretty sure the drug store would have been a more effective tool. at least they rotate their stock :p T3/r7/2021-12-18.txt.gz:{chan ch=tech}404 Eroe Tech: 1 tp to whoever helps me modify my snd to win every gq from here on, please and thanks. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Tech: 404 Eroe says, 'Botting is like a drunk weasel. It's only fun until someone gets caught.' T3/r7/2021-12-18.txt.gz:{chan ch=tech}Princess Alison Tech: finger crowley, click the link, type snd update T3/r7/2021-12-18.txt.gz:{chan ch=tech}Throbbing Redwood Tech: couple of people that can help you there. gq hist and look for those tiny time peoples T3/r7/2021-12-18.txt.gz:{chan ch=tech}Princess Alison Tech: You're welcome, fido the tp please T3/r7/2021-12-18.txt.gz:{chan ch=tech}404 Eroe Tech: wait but that's not how this works. T3/r7/2021-12-18.txt.gz:{chan ch=tech}404 Eroe Tech: It needs to be instant. I just think gq win and I win. 4.2 seconds per mob, maybe a bit less but I'd settle for 4.2 T3/r7/2021-12-18.txt.gz:{chan ch=tech}Princess Alison Tech: 4.2 seconds is your idea of instant? What kind of lag do you have?! T3/r7/2021-12-18.txt.gz:{chan ch=tech}Throbbing Redwood Tech: honestly the run to mob time is dependent on your portals T3/r7/2021-12-18.txt.gz:{chan ch=tech}Dogwater Welding Tech: we on that Mars internet T3/r7/2021-12-18.txt.gz:{chan ch=tech}Tech: Princess Alison suspects Eroe is mudding from the International Space Station T3/r7/2021-12-18.txt.gz:{chan ch=tech}404 Eroe Tech: Well yes. I do my gqs coming down from space. Our toilet broke half way through so I just need a distraction. T3/r7/2021-12-18.txt.gz:{chan ch=tech}Princess Alison Tech: What happened to the goat? Did it die already? T3/r7/2021-12-18.txt.gz:{chan ch=tech}404 Eroe Tech: it's the reason the toilet broke, don't ask. T3/r7/2021-12-19.txt.gz:{chan ch=tech}Coosa Tech: why does dinv go up to level 25, though I'm level 3? Thanks! T3/r7/2021-12-19.txt.gz:{chan ch=tech}Vanellus Tech: What do you mean go up to? T3/r7/2021-12-19.txt.gz:{chan ch=tech}Coosa Tech: ah, the analyze output shows equipment listed up to level 25 T3/r7/2021-12-19.txt.gz:{chan ch=tech}Vanellus Tech: Maybe the highest analyse for the priority? Did you analyse fully? T3/r7/2021-12-19.txt.gz:{chan ch=tech}Tech: Fatal FrostBite looks at Coosa and grins as he strikes the enter key. T3/r7/2021-12-19.txt.gz:{chan ch=tech}Negader Tech: what was the command to disable/enable plugins... googling it but not having luck. T3/r7/2021-12-19.txt.gz:{chan ch=tech}Tech: Doge Water Yajan moans in ecstasy at Cold Wars. T3/r7/2021-12-19.txt.gz:{chan ch=tech}Doge Water Yajan Tech: mis haha.. the text color got me T3/r7/2021-12-19.txt.gz:{chan ch=tech}Tech: Doge Water Yajan . o O ( why friend/tech have the same colors...) ) T3/r7/2021-12-19.txt.gz:{chan ch=tech}404 Eroe Tech: anyone here done any alexa skill dev? T3/r7/2021-12-19.txt.gz:{chan ch=tech}404 Eroe Tech: I'm running into a huge issue and I can't figure it out. T3/r7/2021-12-19.txt.gz:{chan ch=tech}Urshilikai Tech: any tips for using mapper with vidblain entrances? T3/r7/2021-12-19.txt.gz:{chan ch=tech}A Canadian Wonder Tech: portal T3/r7/2021-12-19.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: get a tp portal to low level area T3/r7/2021-12-19.txt.gz:{chan ch=tech}Selitos Tech: snedhia portal T3/r7/2021-12-19.txt.gz:{chan ch=tech}Selitos Tech: sendhia even T3/r7/2021-12-20.txt.gz:{chan ch=tech}Talbor Tech: have any idea whyh xrt adald would work fine yesterday & now it's running me to The Temple of the Moons? T3/r7/2021-12-20.txt.gz:{chan ch=tech}Redryn Tech: uses some clan exit and the clan changed it? T3/r7/2021-12-20.txt.gz:{chan ch=tech}Talbor Tech: honestly have no idea. Having a lot of trouble with my mapper lately, especially Tao T3/r7/2021-12-20.txt.gz:{chan ch=tech}Macbeth Tech: try mapper where (roomNo) it should show u the speedwalk. then walk manually to identify where the kink is T3/r7/2021-12-20.txt.gz:{chan ch=tech}Macbeth Tech: also agree likely a changed public clan exit that ruined it T3/r7/2021-12-20.txt.gz:{chan ch=tech}Le do, lo Shakia Tech: bit of a longstretch, but thought i'd ask before i go on the adventure of making it. is there any script for consider that is known that will group the aligns and give you an alias for a kill command? e.g i want to do `bs g1`, `bs g2` and `bs e1` `bs e2` for good\evil respectively T3/r7/2021-12-20.txt.gz:{chan ch=tech}Hellion Tech: how do i move my mapper info, areas, etc to new pc T3/r7/2021-12-20.txt.gz:{chan ch=tech}Odorless Nuanse Tech: just copy whole folder and start it from where you copied it to T3/r7/2021-12-20.txt.gz:{chan ch=tech}Hellion Tech: thata what i did but dont see the large clickable map T3/r7/2021-12-20.txt.gz:{chan ch=tech}Odorless Nuanse Tech: you can reset that with command.. use mapper help T3/r7/2021-12-20.txt.gz:{chan ch=tech}Odorless Nuanse Tech: probably mapper show and then mapper zoom in T3/r7/2021-12-20.txt.gz:{chan ch=tech}Xephrin Tech: troubleshooing mapper - any idea it thinks there's an exit down from Phoenix Square? for some reason goto 39872 in tilule keeps trying to take me through there... T3/r7/2021-12-20.txt.gz:{chan ch=tech}Xephrin Tech: more troubleshooting - my mapper thinks down from Phoenix Square leads to Amazon clan? I level locked it to prevent pathing but is this normal? T3/r7/2021-12-20.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: sometimes clans change their exits. do a room purge and remap them T3/r7/2021-12-20.txt.gz:{chan ch=tech}Metzli Tech: you can go back to the room, and do mapper purgeroom T3/r7/2021-12-20.txt.gz:{chan ch=tech}Metzli Tech: remap the exits T3/r7/2021-12-20.txt.gz:{chan ch=tech}Tinypotato Tech: go to phoenix square and do mapper purgeroom, then go explore it again T3/r7/2021-12-20.txt.gz:{chan ch=tech}Xephrin Tech: awesome, that fixed it - thank you! T3/r7/2021-12-20.txt.gz:{chan ch=tech}Hellion Tech: mapper show isnt showing me the window :( waaaaa T3/r7/2021-12-20.txt.gz:{chan ch=tech}Gaballon Tech: maybe i should ask here, but i created a forum post here: https://www.gammon.com.au/forum/?id=14888 T3/r7/2021-12-20.txt.gz:{chan ch=tech}Gaballon Tech: i'm curious if anyone knows of a plugin to create a separate window in MUSH that shows your current buffs/debuffs T3/r7/2021-12-20.txt.gz:{chan ch=tech}Katsumoto Tech: Can two identical triggers be present at the same time in Mush? T3/r7/2021-12-20.txt.gz:{chan ch=tech}Zhalut Tech: make sure you check keep evaluation option to Y T3/r7/2021-12-20.txt.gz:{chan ch=tech}Zhalut Tech: but yes T3/r7/2021-12-20.txt.gz:{chan ch=tech}Katsumoto Tech: What if it's two triggers that's capturing the same line, but made with slightly different regexes, would I need to mark yes for "Keep evaluating" for both triggers? T3/r7/2021-12-20.txt.gz:{chan ch=tech}Zhalut Tech: i think so. i think it's about if the line was matched, regardless of the regex T3/r7/2021-12-20.txt.gz:{chan ch=tech}Katsumoto Tech: Thank you T3/r7/2021-12-20.txt.gz:{chan ch=tech}Negader Tech: or could change sequence to a lower # and mark that only with keep evaluating? T3/r7/2021-12-21.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: I'm using #sub {A feather pillow (with teeth)} {feather pillow} but it's not changing anything. any idea why? T3/r7/2021-12-21.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: it shows as a sub in the sub list T3/r7/2021-12-21.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: just not when I con T3/r7/2021-12-21.txt.gz:{chan ch=tech}High Risk Losteix Tech: maybe escape the ()? i don't know for #sub myself, but if it's expecting a regexp those parentheses would screw things up. T3/r7/2021-12-21.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: I can try that. how do you escape the ()? T3/r7/2021-12-21.txt.gz:{chan ch=tech}High Risk Losteix Tech: {A feather pillow \(with teeth\)} T3/r7/2021-12-21.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: thank you T3/r7/2021-12-21.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: nope. was worth a try. T3/r7/2021-12-21.txt.gz:{chan ch=tech}Balalayka Tech: such a question, if one chaos portal leads to the zone, but it is far from the entrance to the zone, with the usual company, the mapper will still run to the entrance? in theory, you need to put down the entrance through xmark? T3/r7/2021-12-21.txt.gz:{chan ch=tech}Evine Tech: i'm pretty sure the mapper calculates the shortest path to the xset mark-ed start of the area T3/r7/2021-12-21.txt.gz:{chan ch=tech}Selitos Tech: yes Evine if the runto is shorter then using the portal it will runto T3/r7/2021-12-21.txt.gz:{chan ch=tech}Selitos Tech: keep in mind if the portal is close to your quest mob for example then it will iuse the portal T3/r7/2021-12-21.txt.gz:{chan ch=tech}Selitos Tech: ki9nda workds like the lemniscate portal T3/r7/2021-12-21.txt.gz:{chan ch=tech}Balalayka Tech: even with the usual company, when should I first run into the zone? T3/r7/2021-12-21.txt.gz:{chan ch=tech}Gaballon Tech: anyone savvy with MUSH triggers? i want to use a wildcard for the word that appears just before the trigger text on the line T3/r7/2021-12-21.txt.gz:{chan ch=tech}Heracles Tech: Wouldn't that just be "* trigger text" T3/r7/2021-12-21.txt.gz:{chan ch=tech}Heracles Tech: Unless I'm misunderstanding what you're doing T3/r7/2021-12-21.txt.gz:{chan ch=tech}Gaballon Tech: my understanding is that %0 returns the entire string, %1 the first word, %2 the second word T3/r7/2021-12-21.txt.gz:{chan ch=tech}Gaballon Tech: but there could be a lot of words T3/r7/2021-12-21.txt.gz:{chan ch=tech}Gaballon Tech: and i want the last word T3/r7/2021-12-21.txt.gz:{chan ch=tech}Heracles Tech: What are you trying to trigger on T3/r7/2021-12-21.txt.gz:{chan ch=tech}Gaballon Tech: ^You wield (.*?) in your off\-hand\.$ T3/r7/2021-12-21.txt.gz:{chan ch=tech}Gaballon Tech: so pull a word in between and set a variable T3/r7/2021-12-21.txt.gz:{chan ch=tech}Gaballon Tech: i figured the last word would work for most weapons T3/r7/2021-12-21.txt.gz:{chan ch=tech}Heracles Tech: So you want to trigger off wielding a weapon and set the weapon name/type/keyword as the variable T3/r7/2021-12-21.txt.gz:{chan ch=tech}Gaballon Tech: that's right T3/r7/2021-12-21.txt.gz:{chan ch=tech}Heracles Tech: That may work with aard quest weapons, but you're gonna run into issues with other weapons which have no weapon name/keyword as their first word T3/r7/2021-12-21.txt.gz:{chan ch=tech}Heracles Tech: like "A long stick" you'd set the variable "a" which is not desirable T3/r7/2021-12-21.txt.gz:{chan ch=tech}Selitos Tech: FYI i use my alias for wield to set the variable T3/r7/2021-12-21.txt.gz:{chan ch=tech}Gaballon Tech: ya the first word is problematic, so i wanted to pull the last word T3/r7/2021-12-21.txt.gz:{chan ch=tech}Heracles Tech: If you're choosing to wield something, write and alias that wields the weapon and sets the variable at the same time. T3/r7/2021-12-21.txt.gz:{chan ch=tech}Selitos Tech: so 'wield axe' sets axe as my wield variable T3/r7/2021-12-21.txt.gz:{chan ch=tech}Gaballon Tech: so "stick" would probably work T3/r7/2021-12-21.txt.gz:{chan ch=tech}Heracles Tech: if you wield a sword of aardwolf then you're setting aardwolf as the variable then T3/r7/2021-12-21.txt.gz:{chan ch=tech}Selitos Tech: yeah its tough witout know the keywords, unless you setup a table with all your weapons and set a keyword T3/r7/2021-12-21.txt.gz:{chan ch=tech}Gaballon Tech: if the variable triggers off actually wielding in off-hand, it would catch all scenarios. even if i "wear all" T3/r7/2021-12-21.txt.gz:{chan ch=tech}Tinypotato Tech: i recommend reading help invmon and triggering off that instead, using the objid as the keyword T3/r7/2021-12-21.txt.gz:{chan ch=tech}Heracles Tech: Since most people use a fixed set of weapons, I'd probably do it through aliases where you can entirely control what you're doing T3/r7/2021-12-21.txt.gz:{chan ch=tech}Selitos Tech: so (Sparkling) <(Cleaver)> of the |Onyx Armory| would reference cleaver in my table T3/r7/2021-12-21.txt.gz:{chan ch=tech}Heracles Tech: You could trigger off the tags as well yeah T3/r7/2021-12-21.txt.gz:{chan ch=tech}Gaballon Tech: hmm yeah T3/r7/2021-12-21.txt.gz:{chan ch=tech}Selitos Tech: yeah if you use dinv you could pull the id too T3/r7/2021-12-21.txt.gz:{chan ch=tech}Heracles Tech: the id is provided through invmon data without dinv T3/r7/2021-12-21.txt.gz:{chan ch=tech}Selitos Tech: using an alias is the easy way but there are more complicated ways to do it T3/r7/2021-12-21.txt.gz:{chan ch=tech}Selitos Tech: oh cool T3/r7/2021-12-21.txt.gz:{chan ch=tech}Gaballon Tech: ok, i did a dirty method but it works, probably not for all weapons but it's something T3/r7/2021-12-21.txt.gz:{chan ch=tech}Gaballon Tech: ^You wield (.*?) (\w+) in your off\-hand\.$ T3/r7/2021-12-21.txt.gz:{chan ch=tech}Gaballon Tech: %2 returns the word before "in your off-hand." T3/r7/2021-12-21.txt.gz:{chan ch=tech}Antifa Raded Tech: is it possible to RDP to a local computer while the computer I'm sitting at is connected to a VPN? T3/r7/2021-12-21.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley runs away in utter terror! T3/r7/2021-12-21.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Mis. T3/r7/2021-12-21.txt.gz:{chan ch=tech}Antifa Raded Tech: trying to write an Excel function to see if the text in J2 matches the text in B2 and it's not liking my, "=IF(J2=B2,YES,NO)", how do I fix this T3/r7/2021-12-21.txt.gz:{chan ch=tech}Zhalut Tech: need quotes before and after your text "yes" "no" T3/r7/2021-12-21.txt.gz:{chan ch=tech}Katsumoto Tech: Do "Yes" and "No" T3/r7/2021-12-21.txt.gz:{chan ch=tech}Katsumoto Tech: Need quotes T3/r7/2021-12-21.txt.gz:{chan ch=tech}Katsumoto Tech: Or what Zhalut said T3/r7/2021-12-21.txt.gz:{chan ch=tech}Antifa Raded Tech: wow I'm dumb T3/r7/2021-12-21.txt.gz:{chan ch=tech}Antifa Raded Tech: thanks guys T3/r7/2021-12-21.txt.gz:{chan ch=tech}Zhalut Tech: now we are even -- for all the rsocials i sent to you on behalf of rad(rat) lol T3/r7/2021-12-21.txt.gz:{chan ch=tech}Tech: Antifa Raded crosses his arms and nods slowly and sagely. T3/r7/2021-12-21.txt.gz:{chan ch=tech}Antifa Raded Tech: better than the people who attack me thinking I'm radrat T3/r7/2021-12-21.txt.gz:{chan ch=tech}Durel Tech: who would do that??? T3/r7/2021-12-21.txt.gz:{chan ch=tech}Negader Tech: that sme T3/r7/2021-12-21.txt.gz:{chan ch=tech}A Calm Stormwind Tech: Tial you mean like getting the values of your identify? T3/r7/2021-12-21.txt.gz:{chan ch=tech}Tial Tech: Yes, especially Resist Mods. T3/r7/2021-12-21.txt.gz:{chan ch=tech}A Calm Stormwind Tech: you can do it directly from the identify command via regex, or you can use the inventory output tags the game sends when you pick up a new item. T3/r7/2021-12-21.txt.gz:{chan ch=tech}A Calm Stormwind Tech: i think if you disable Dinv you will see what these look like when you pickup a new item T3/r7/2021-12-21.txt.gz:{chan ch=tech}A Calm Stormwind Tech: but that would be through something like regex as well T3/r7/2021-12-21.txt.gz:{chan ch=tech}Tial Tech: It's more complicated, because I don't use mush client/plugins, and I can only match one line. T3/r7/2021-12-21.txt.gz:{chan ch=tech}A Calm Stormwind Tech: ahh in that case I'll bow out not sure how it'd be done without a plugin. T3/r7/2021-12-22.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions drunkenly answered here T3/r7/2021-12-22.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: wow T3/r7/2021-12-22.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: its 1 post away from being gone forever, so ill make a copy of it now T3/r7/2021-12-22.txt.gz:{chan ch=tech}Throbbing Redwood Tech: anyone got a good hourly/24 hr report script T3/r7/2021-12-22.txt.gz:{chan ch=tech}Scars Tech: i use hadar's it works for me T3/r7/2021-12-22.txt.gz:{chan ch=tech}Throbbing Redwood Tech: reports gold earned, pups, qp? T3/r7/2021-12-22.txt.gz:{chan ch=tech}Scars Tech: he has a gold tracker and an exp tracker and all that, but maybe not all the details you want T3/r7/2021-12-22.txt.gz:{chan ch=tech}Scars Tech: crowley has one too T3/r7/2021-12-22.txt.gz:{chan ch=tech}Scars Tech: never used it tho T3/r7/2021-12-22.txt.gz:{chan ch=tech}Gaballon Tech: is there a way to exclude single character commands from the command history in MUSH? like n,s,e,w,etc. T3/r7/2021-12-22.txt.gz:{chan ch=tech}Korendir Tech: i dont htink so, but you could use keypad to walk so that clears up history T3/r7/2021-12-22.txt.gz:{chan ch=tech}Sheriff Shindo Tech: with accelerator function you can bind any keycombo to move/alias T3/r7/2021-12-22.txt.gz:{chan ch=tech}Gaballon Tech: i do use the keypad on my desktop, this is more for my tablet T3/r7/2021-12-22.txt.gz:{chan ch=tech}Gaballon Tech: it'd be nice to not store n,e,s,w,d,u in the command history T3/r7/2021-12-22.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: is there a way to never see a color on your screen. the dark blue is an issue for me T3/r7/2021-12-22.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: I what to make it into light bluw or something? T3/r7/2021-12-22.txt.gz:{chan ch=tech}Korendir Tech: just colorset all your dark blue channels to something else? T3/r7/2021-12-22.txt.gz:{chan ch=tech}Shaelynne Tech: you can change the color that shows as dark blue in options! T3/r7/2021-12-22.txt.gz:{chan ch=tech}Shaelynne Tech: i changed it so the blue is more readable T3/r7/2021-12-22.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: not a channel, like all thins that use the color T3/r7/2021-12-22.txt.gz:{chan ch=tech}Sheesh Kabob Tech: you can change it in mushclient (if that's the client you're using) in Game->Configure->Custom Color T3/r7/2021-12-22.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: thank you! T3/r7/2021-12-22.txt.gz:{chan ch=tech}RabbitSlayer Tech: In the mushclient alias, is there a way to put in a comment line? T3/r7/2021-12-22.txt.gz:{chan ch=tech}Firme Tech: If it's Lua based, a -- should work T3/r7/2021-12-22.txt.gz:{chan ch=tech}RabbitSlayer Tech: Cool. I try that. Thanks Firme. T3/r7/2021-12-22.txt.gz:{chan ch=tech}Negader Tech: for multiple lines --[[ and ]]-- T3/r7/2021-12-22.txt.gz:{chan ch=tech}RabbitSlayer Tech: Thank you Negader. I'll try to remember that. T3/r7/2021-12-23.txt.gz:{chan ch=tech}Punkgirl Tech: any idea how to fix this. when I load the instinct goal tracker I get this error: Line 15: Attribute name 'crossorigin' not followed by '=' (Cannot load) T3/r7/2021-12-23.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: You saved it, not downloaded it. T3/r7/2021-12-23.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Gotta download the Code, not save the xml. T3/r7/2021-12-23.txt.gz:{chan ch=tech}Punkgirl Tech: okay, ty T3/r7/2021-12-23.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2021-12-23.txt.gz:{chan ch=tech}Anssett Tech: sounds like you need to find that attributename and put a '=' after it :D T3/r7/2021-12-23.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Nah, Github is dumb like that. T3/r7/2021-12-23.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: As a webpage, it messes up the xml file. T3/r7/2021-12-23.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Adds things that MUSH is confused by. T3/r7/2021-12-23.txt.gz:{chan ch=tech}Durel Tech: You need to create a new "github" social crow :P T3/r7/2021-12-23.txt.gz:{chan ch=tech}Anssett Tech: i haven't been an ass enough on here lately, just had to make my useless/distracting contributions :) T3/r7/2021-12-23.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley snickers with Durel about their shared secret. T3/r7/2021-12-23.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: AnSSett, your name says it all. :p T3/r7/2021-12-23.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Also, the top line of my showdesc says it all for me. T3/r7/2021-12-23.txt.gz:{chan ch=tech}Anssett Tech: hah T3/r7/2021-12-23.txt.gz:{chan ch=tech}Gaballon Tech: is there a way to set a minimum portal use distance for mapper? so it doesn't use a portal to travel like 2 rooms away T3/r7/2021-12-23.txt.gz:{chan ch=tech}Sheesh Kabob Tech: the logic for findpath checks if a room is one away, you could probably add a var and check it for "min distance to portal" or something to that effect T3/r7/2021-12-23.txt.gz:{chan ch=tech}Sheesh Kabob Tech: (for where that check is in the plugin): https://github.com/fiendish/aardwolfclientpackage/blob/MUSHclient/MUSHclient/worlds/plugins/aard_GMCP_mapper.xml#L4374-L4378 T3/r7/2021-12-23.txt.gz:{chan ch=tech}Sheesh Kabob Tech: - 10 T3/r7/2021-12-23.txt.gz:{chan ch=tech}Kazuma Tech: I have just returned to Aard after a long break, I noticed my mapper in my client was no longer working, and neither were my gauges. After a little investigation I found "protocol gmcp" everything is listed as Status OFF. Trying to figure out the command to turn the ones back on that I use T3/r7/2021-12-23.txt.gz:{chan ch=tech}KnightLord Throxx Tech: have you updated your mush? T3/r7/2021-12-23.txt.gz:{chan ch=tech}Kazuma Tech: I am using Mudlet, not mush T3/r7/2021-12-23.txt.gz:{chan ch=tech}Kazuma Tech: and yes, its latest development branch, just compiled it T3/r7/2021-12-23.txt.gz:{chan ch=tech}KnightLord Throxx Tech: sry, misread T3/r7/2021-12-23.txt.gz:{chan ch=tech}Vanellus Tech: The mudlet package is not actively developed as far as I know T3/r7/2021-12-23.txt.gz:{chan ch=tech}Kazuma Tech: well MAG is not, but I put together a package about 2 years ago T3/r7/2021-12-23.txt.gz:{chan ch=tech}Vanellus Tech: The Mudlet Discord is where I ask questions about Mudlet and aard T3/r7/2021-12-23.txt.gz:{chan ch=tech}Kazuma Tech: well this issue is specific to aardwolf, just type protocol gmcp T3/r7/2021-12-23.txt.gz:{chan ch=tech}Kazuma Tech: no worries though, ill figure it out im sure T3/r7/2021-12-23.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: So check your settings T3/r7/2021-12-23.txt.gz:{chan ch=tech}Kazuma Tech: just thought somebody on tech might no T3/r7/2021-12-23.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: There is a check box in settings for game protocols T3/r7/2021-12-23.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: One of those should be enable gmcp T3/r7/2021-12-23.txt.gz:{chan ch=tech}Kazuma Tech: sure enough wow, the basics T3/r7/2021-12-23.txt.gz:{chan ch=tech}Kazuma Tech: thanks Kelaire! T3/r7/2021-12-23.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: No problem! T3/r7/2021-12-23.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: I don't think that's enabled by default...which I guess makes sense. Anytime you rebuild the new version, you'll likely have to do that T3/r7/2021-12-23.txt.gz:{chan ch=tech}Kazuma Tech: in an older version of Mudlet it was defaultly enabled.... but its been like 2 years for me. I will add a note about this to my github page. T3/r7/2021-12-23.txt.gz:{chan ch=tech}Kazuma Tech: awesome, back in business! T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2021-12-23.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: I am scared of updating my MUSHclient :P T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it happens T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: sometimes I break things T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but then sometimes I fix things T3/r7/2021-12-23.txt.gz:{chan ch=tech}Methyl Tech: tech -h T3/r7/2021-12-23.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: I'm on r2110 from a network drive, do the newer versions still support installing to a network drive? T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: that support hasn't changed. it's on my list to improve it though. T3/r7/2021-12-23.txt.gz:{chan ch=tech}Tech: Faithful Ruhamah thanks IAC DO Fiendish heartily. T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it's mostly a relative/fixed path problem, yeah? T3/r7/2021-12-23.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: I think so, probably. FWIW, my MUSHclient is installed on M:, and I think my tester MUSH is installed on X: T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I think I can do something to undo MUSHclient baking fixed paths into the settings db after it loads T3/r7/2021-12-23.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: ahhh T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if I bulldoze the paths so that they get reset to relative it will probably help T3/r7/2021-12-23.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: also, been wondering how to set a longer info bar (e.g. I have some help/status stuff display using world.Info('message') ) T3/r7/2021-12-23.txt.gz:{chan ch=tech}Methyl Tech: i need to figure out why my mushclient on windows/gdrive doesn't launch -- main desktop is linux and using insync to sync gdrive to a folder and using wine/lutris to launch mushclient T3/r7/2021-12-23.txt.gz:{chan ch=tech}Methyl Tech: something about save state folder not found when trying to launch in windows T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: info bar or status bar? :upside_down_smiley: T3/r7/2021-12-23.txt.gz:{chan ch=tech}Methyl Tech: or not writable T3/r7/2021-12-23.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: View > Info Bar T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ah, yeah, the info bar is super weird T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: like it doesn't even fill the space by default and I don't know why T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: never looked at the code for it T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I keep it disabled :D T3/r7/2021-12-23.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: it's like a fixed width of 800px or so. I use it to display stuff liek how many potions I have left in my inventory, how many CP mobs left, etc. T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: file sync services like to lock files, and windows is particularly bad about accessing files while they're being accessed by other processes T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Methyl: ^ T3/r7/2021-12-23.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: I like the info bar because it's fixed position, as opposed to the windows which you have to re-layout. I connect to a Windows VirtualBox from Microsoft Remote Desktop, which tends to retile my windows depending on the available screen size of the device I am on. T3/r7/2021-12-23.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: I just don't know how to read the code at all, if you give me a pointer, I'd be down to try to see if I could hack up a PR. Maybe. T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: the aardwolf mushclient package at least has a plugin for saving and restoring different miniwindow layouts T3/r7/2021-12-23.txt.gz:{chan ch=tech}Methyl Tech: oh i've tried copying the mushclient folder out to a local drive on a windows machine, no luck on it -- just an annoyance really T3/r7/2021-12-23.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: yes, I like that feature a lot! I have a dozen layouts lol T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: woooow T3/r7/2021-12-23.txt.gz:{chan ch=tech}Methyl Tech: linux side works great and has worked great for ages though T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: linux is much better about letting you read and write open files simultaneously T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Methyl: you might need to reboot the windows side after moving the folder to local T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: windows might stupidly clone the locked flag T3/r7/2021-12-23.txt.gz:{chan ch=tech}Methyl Tech: tried that -- this also happened a year or so ago when the old google sync app updated to google drive sync T3/r7/2021-12-23.txt.gz:{chan ch=tech}Methyl Tech: solved it at the time by reinstalling mush fresh into the google drive folder (full sync) and copying over things like aard db, snd db, etc -- think it's not happy with paths T3/r7/2021-12-23.txt.gz:{chan ch=tech}Methyl Tech: but on linux full time now -- when i was windows exclusive for desktop/laptop it worked fine T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it could very well be the path thing then that I'll work on next T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: the mushclient code that creates the info bar is: https://github.com/nickgammon/mushclient/blob/6b79a6d88ea811f797b143623e839eed07fa9802/mainfrm.cpp#L334-L339 T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it docks here: https://github.com/nickgammon/mushclient/blob/6b79a6d88ea811f797b143623e839eed07fa9802/mainfrm.cpp#L391-L396 T3/r7/2021-12-23.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: ah, nice! I shall check it out T3/r7/2021-12-23.txt.gz:{chan ch=tech}Luc Tech: mapper command to see room id? T3/r7/2021-12-23.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: mapper thisroom T3/r7/2021-12-23.txt.gz:{chan ch=tech}Luc Tech: thank you T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: there's also a toggle on the miniwindow (click the upper left corner) to always show it for the current room T3/r7/2021-12-23.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if you use the miniwindow display T3/r7/2021-12-23.txt.gz:{chan ch=tech}Luc Tech: thank you T3/r7/2021-12-24.txt.gz:{chan ch=tech}Urshilikai Tech: are mapper cexits supposed to be in aardwolf.db? T3/r7/2021-12-24.txt.gz:{chan ch=tech}Punkgirl Tech: yes T3/r7/2021-12-24.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Hmm. I wonder what are the chances Fiendish will update the 'package update check' command to have two buttons to automatically download either visual or non-visual instead of having to open up a browser... T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: more likely now that I can make scrolling text miniwindows trivially T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: well...maybe... T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'd have to think about the accessibility implications T3/r7/2021-12-24.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods at IAC DO Fiendish. T3/r7/2021-12-24.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley still waits for his PR to be accepted. :( I think it's the cleanest code I've written in a long while for a PR. :p T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'm on vacation T3/r7/2021-12-24.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Every day is a vacation, if you really think about it. When you're at work, you are on vacation from home. When you're at home, you're on vacation from work. When you're not online, you're on vacation from the internet... T3/r7/2021-12-24.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Enjoy holiday vacations, though! We're staying home and having dinner with the MIL. T3/r7/2021-12-24.txt.gz:{chan ch=tech}Scars Tech: time with the MIL is a vacation from happiness T3/r7/2021-12-24.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Eh, my MIL isn't so bad, honestly. She absoutely loves me and actually calls me her son. :P T3/r7/2021-12-24.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I got lucky on that. Then my FIL gifted me a hoodie for Christmas that says, "Legendary Dad" with Captain America on the front. I'm going to wear it when we drop the kids off at their dad's tonight. Let him wonder where I got it from, and stew about how the kids didn't get him one. ;) T3/r7/2021-12-24.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Any database design folks? say I'm making a workout app, I want to track all sorts of workouts but display them all together...but each type of workout has different types of atributes, like maybe if it's a swim I want to track the water tempature, how many laps, if a bike ride, what type of bike, etc....what kind of table design would you folks do for a relational database table? T3/r7/2021-12-24.txt.gz:{chan ch=tech}Torkin Tech: ok ok we get it you workout T3/r7/2021-12-24.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: The cheating way seems to just be use json T3/r7/2021-12-24.txt.gz:{chan ch=tech}Scars Tech: idk if this answers your question or not, but a star-schema seems easy enough with the 'fact' table containing whatever measures you want T3/r7/2021-12-24.txt.gz:{chan ch=tech}Scars Tech: dimension tables that contain whatever heirachies you care to create/track T3/r7/2021-12-24.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: thhanks will look look into that...it seems like it can't be that hard of a problem... T3/r7/2021-12-24.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: I was also looking into polymorphic design... T3/r7/2021-12-24.txt.gz:{chan ch=tech}Trachx Tech: basically table: workouts and table attributes and table relations T3/r7/2021-12-24.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: is there a commnd to put in the send of a trigger to do it twice. like when it's time to quest I want it to flash/beep 2 times or 3? T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: anyone here using mushclient on a shared network drive and struggling with non-relative file paths that don't match between different computers? T3/r7/2021-12-24.txt.gz:{chan ch=tech}Haagen Tech: me but i have no idea how to solve it lol T3/r7/2021-12-24.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: hmmmmm. not personally, but ive seen people using chrome books have HUGE issues playing because the files are stored "elsewhere" T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'm hoping you'll help test a possible solution for me T3/r7/2021-12-24.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: or also if you've backed up your stuff on dropbox and its stored "in the cloud" T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Haagen: type checkversion plz T3/r7/2021-12-24.txt.gz:{chan ch=tech}Haagen Tech: r2068 atm T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: what is the latest? I'm using r2036 T3/r7/2021-12-24.txt.gz:{chan ch=tech}Haagen Tech: yeah, my issue was dropbox. but i will only be really able to test it when i get back to work after the hols :) i can still install whatever u want me to though T3/r7/2021-12-24.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: 2178 T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: type 'package update check' to look for the latest T3/r7/2021-12-24.txt.gz:{chan ch=tech}Haagen Tech: oooh T3/r7/2021-12-24.txt.gz:{chan ch=tech}Haagen Tech: okies quiting and installing it T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Haagen: cool, I think as long as you have a plugin loaded called Aardwolf_Package_Requirements we should be ok to test T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: should I quit and install it, will I have to reset things up? T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: no not you. the new version won't have the fix I want to test T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: gah T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: lol T3/r7/2021-12-24.txt.gz:{chan ch=tech}Useful Hadar Tech: i know with dropbox if you dont pause it, it likes to lock the files and cause mushclient to crash with them T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Luc, yes quit first, no you shouldn't have to re-set up T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Haagen: the update won't include what I want you to test T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: though what I'm hoping to test here will not fix file locking issues, just wrong paths T3/r7/2021-12-24.txt.gz:{chan ch=tech}Haagen Tech: how do i do version check again?>.> T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: checkversion T3/r7/2021-12-24.txt.gz:{chan ch=tech}Haagen Tech: okies, r2178 T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: easiest way to update the client? T3/r7/2021-12-24.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: click on the link and follow the instructions T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: from package update check? T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: package update check should take you to a web page T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: where you can download a new installer. point the installer at your existing mushclient folder T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: (if it isn't already) T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: thank you T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Haagen: please replace your aard_requirements.xml plugin file with this one https://raw.githubusercontent.com/fiendish/aardwolfclientpackage/d4661bca7f40a65e63d4bfeb9e832480fbca1508/MUSHclient/worlds/plugins/aard_requirements.xml T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: this is the experiment T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: checkversion T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: mis T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: 2178? T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: that's the latest, right? T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yes T3/r7/2021-12-24.txt.gz:{chan ch=tech}Haagen Tech: okay, replaced T3/r7/2021-12-24.txt.gz:{chan ch=tech}Haagen Tech: it didn't make me a t9 :( T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: only thing I've seen that's any different is that I got this error message on login: xBroadcast_SpellSkills - Invalid spellheaders line: 4 T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: that's not one of my plugins T3/r7/2021-12-24.txt.gz:{chan ch=tech}Haagen Tech: hehe so, what do i need to test the aardrequirement thing T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: xBroadcast_SpellSkills sounds like bast's spellup T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'd say report it to bast but... T3/r7/2021-12-24.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: looks like bast T3/r7/2021-12-24.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: what he said T3/r7/2021-12-24.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: big HEH T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: someone needs to convince bast to come back from the dead T3/r7/2021-12-24.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: im actually looking at that file in VS right now T3/r7/2021-12-24.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: I agree! :/ T3/r7/2021-12-24.txt.gz:{chan ch=tech}Haagen Tech: oh no... i didn't know he passed on...:( T3/r7/2021-12-24.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: he isnt dead T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: only metaphorically T3/r7/2021-12-24.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: I had to change his levelup one to include possibility of instinct trains to it didn't error out on redos. his stuff is old :( T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: trying to think if there's a toggle command, thought I saw one before, lemme try to quit and restart, see if it's any different T3/r7/2021-12-24.txt.gz:{chan ch=tech}Haagen Tech: oh, that is good news T3/r7/2021-12-24.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: I went into the plugin in edit and turned on the triggers and reinstalled the plugin T3/r7/2021-12-24.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: something in the update turns some of them off T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: I have no idea what you just said, I'm sorry T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ? T3/r7/2021-12-24.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: thought it was just me T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: nothing in my updates should touch plugins that aren't part of the package T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: it appears to be working on its own, my bsp plugin is still working just fine T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: what plugin screen, or do I just go to edit? T3/r7/2021-12-24.txt.gz:{chan ch=tech}Tech: Luc is feeling really dumb atm. T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: don't do what zxavier is suggesting T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: lol T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: I'm getting spell header errors, but they're not always the same ones, only when I log in tho, and I've only done that twice, but the plugin seems to be working just fine, spelling up as spells wear off T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hmm T3/r7/2021-12-24.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: you usually get that if you start up the client and dont log in quickly enough, or potentially if you log off and dont log in fast enough T3/r7/2021-12-24.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: its timered. close the client and reopen it and see how ya go T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: brb T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: the spellup plugin is? T3/r7/2021-12-24.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: the broadcast spellskills thing T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oof T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: is there a newer spellup plugin than basts? T3/r7/2021-12-24.txt.gz:{chan ch=tech}Scars Tech: winklew's gives me no trouble at all T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: third times the charm? no error message, but I did quit, exit client, reopen client all three times T3/r7/2021-12-24.txt.gz:{chan ch=tech}Useful Hadar Tech: i use winkles ATM but im also working on one T3/r7/2021-12-24.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: there might be, but I haven't seen one with the mini window and the option to set up the spell defaults and order T3/r7/2021-12-24.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: it also ties into the stats counter and things T3/r7/2021-12-24.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: his was the best T3/r7/2021-12-24.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: im not sure about the miniwindow, thats just the broadcast bit T3/r7/2021-12-24.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: miniwindow takes info frm the broadcasts T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: I don't know about all that, I just have bsp to keep me spelled up by adding, enabling, disabling skills/spells as I have them with very little to have to adjust T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: and it's all done with the bsp command T3/r7/2021-12-24.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: I do all that with the miniwindow point and click. bsp in the background :) T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: is working fine and I didn't get an error message, so if it's not broken, not gonna worry about 'fixing' it T3/r7/2021-12-24.txt.gz:{chan ch=tech}Hellishly Zxavier Tech: that's best T3/r7/2021-12-24.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: yeah, its just timered its not broken T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: but, thanks for the help in get my client updated to the most recent version T3/r7/2021-12-24.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: weird, for sure, but ive seen that error message tons of times if im logging in/out or doing something before logging in immediately T3/r7/2021-12-24.txt.gz:{chan ch=tech}Luc Tech: though I didn't look at the details to see what having the most recent client actually does any differently than the version I had, I imagined it's just better all around to have the latest version T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: among other things, there's a new plugin for capturing help files to a miniwindow, but it's not loaded by default yet so if you want it you have to load it manually T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I merged your PR Crowley. Had to make a few small edits, so it's just closed but the commit are merged T3/r7/2021-12-24.txt.gz:{chan ch=tech}Graciella Tech: did an update on windows, not to 11, just update, and now mush is completely screwed up, nothing will load, get dozens of errors just trying to open it T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: send me the first error messages T3/r7/2021-12-24.txt.gz:{chan ch=tech}Graciella Tech: xxx is not an xml, not found, just.....nothing loads, not even mapper, but didn't do anything but reboot/update windows T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yuck :( T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: where is your mushclient folder? T3/r7/2021-12-24.txt.gz:{chan ch=tech}Graciella Tech: on my desktop T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: type checkversion T3/r7/2021-12-24.txt.gz:{chan ch=tech}Graciella Tech: tried loading straight from the folder, nada, same as using shortcut T3/r7/2021-12-24.txt.gz:{chan ch=tech}Graciella Tech: r2149 T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it's entirely unrelated to the problem, but would you consider running an update? replacing the files with fresh versions might unstick it T3/r7/2021-12-24.txt.gz:{chan ch=tech}Graciella Tech: sure T3/r7/2021-12-24.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: first, do you have exact copy/paste of the full error messages? T3/r7/2021-12-25.txt.gz:{chan ch=tech}Graciella Tech: they were the popups that you have to click to close, before mush even fully opens T3/r7/2021-12-25.txt.gz:{chan ch=tech}Graciella Tech: then when it opened, Run-time error C]: in function 'error' C:\Users\frogg\Desktop\GracieMush\lua\wait.lua:51: in function T3/r7/2021-12-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yuck T3/r7/2021-12-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: quit mushclient and try to update from the website in my finger info T3/r7/2021-12-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hopefully this is just a transient windows glitch T3/r7/2021-12-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: like maybe the system didn't unlock the files like it's supposed to before rebooting to do the updates or something T3/r7/2021-12-25.txt.gz:{chan ch=tech}Graciella Tech: updated, still nothing loads T3/r7/2021-12-25.txt.gz:{chan ch=tech}Graciella Tech: same errors T3/r7/2021-12-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: grab me a screenshot of the very first error please and send it to my email T3/r7/2021-12-25.txt.gz:{chan ch=tech}Graciella Tech: sent email T3/r7/2021-12-25.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: with this as an example: "317,absorb,2,466,100,-1,1", i've come to know it as the following: skillnumber,skillname,2,TIME,skillpercentage,-1,1 any idea what the "2" and "-1" and "1" represent? T3/r7/2021-12-25.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: help slist T3/r7/2021-12-25.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: thanks for that T3/r7/2021-12-25.txt.gz:{chan ch=tech}Throbbing Redwood Tech: anyone have a script to check what winds cards you have/need? T3/r7/2021-12-25.txt.gz:{chan ch=tech}Graciella Tech: had to do a clean install of mush, and now, if I scroll up to read something, it bounces me down as soon as a new line comes in, anyone know how to stop that? T3/r7/2021-12-25.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: alt tab, go to output, and click unpause on send T3/r7/2021-12-25.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: or one of those similar options T3/r7/2021-12-25.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: auto pause, i think T3/r7/2021-12-25.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: yeah, probably auto pause and not the first one i said T3/r7/2021-12-25.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: but i reckon you might want the first one i said also T3/r7/2021-12-25.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: ehh, maybe not. it depends. T3/r7/2021-12-25.txt.gz:{chan ch=tech}Graciella Tech: both were checked, so I unchecked them, still doing it T3/r7/2021-12-25.txt.gz:{chan ch=tech}Graciella Tech: found it, had to have a combo of start auto and un checked :) T3/r7/2021-12-25.txt.gz:{chan ch=tech}Etcha Sletch Tech: anything more i need to backup than aardwolf.db, if i want to try a fresh install of the mushclient? getting some weird scrolling and intermittent duplicated hunger/thirst messages i'm hoping that will clear it up T3/r7/2021-12-25.txt.gz:{chan ch=tech}Aeschyla Tech: Does anyone know how to turn my Mushclient boxy map back on? T3/r7/2021-12-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: mapper help. should find way for it T3/r7/2021-12-25.txt.gz:{chan ch=tech}WREKT Anaristos Tech: is it a mapper command, though? T3/r7/2021-12-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: if you have mapper, yes it is T3/r7/2021-12-25.txt.gz:{chan ch=tech}WREKT Anaristos Tech: they are referring to a missing window T3/r7/2021-12-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: mapper help config should tell you how to put it back on T3/r7/2021-12-25.txt.gz:{chan ch=tech}Aeschyla Tech: Okay, it was Mapper Show. Tyvm! T3/r7/2021-12-25.txt.gz:{chan ch=tech}WREKT Anaristos Tech: thanks, Nuanse :) T3/r7/2021-12-25.txt.gz:{chan ch=tech}Aeschyla Tech: Wow, there is a LOT you can do with it. I'd better stick to basics. T3/r7/2021-12-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: yes there is. you should learn all aspects T3/r7/2021-12-25.txt.gz:{chan ch=tech}Aeschyla Tech: I have forks in my garbage disposal...trust me. T3/r7/2021-12-25.txt.gz:{chan ch=tech}Aeschyla Tech: My favorite one was the boss's wife...she drove to Canada and dropped her car keys into an auto-flush toilet... T3/r7/2021-12-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: I believe that is more of a WTF? T3/r7/2021-12-25.txt.gz:{chan ch=tech}Odorless Nuanse Tech: not tech channel.. but WTF? channel T3/r7/2021-12-25.txt.gz:{chan ch=tech}Aeschyla Tech: Indeed. I see...I see...:) T3/r7/2021-12-25.txt.gz:{chan ch=tech}Urshilikai Tech: if a where.mob name is wrong in snd where should I update that locally? T3/r7/2021-12-25.txt.gz:{chan ch=tech}Aoric Tech: xset kw T3/r7/2021-12-26.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: anyone wanna get paid gold, tp, or qp to spend some time coding some stuff on a plugin for the aardwolf community? pst NOW! T3/r7/2021-12-26.txt.gz:{chan ch=tech}Doge Water Yajan Tech: whoa.. are you Muzmuz's alt? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I only code in basic and LISP, is that ok? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Doge Water Yajan Tech: sorry "BASIC" T3/r7/2021-12-26.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: probably not. lua only. T3/r7/2021-12-26.txt.gz:{chan ch=tech}Doge Water Yajan Tech: wth is lua T3/r7/2021-12-26.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: a scripting language that the mushclient uses T3/r7/2021-12-26.txt.gz:{chan ch=tech}Doge Water Yajan Tech: if I can't CAR the CDR, what's the point? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Negader Tech: aloha is hello in lua tongue T3/r7/2021-12-26.txt.gz:{chan ch=tech}Doge Water Yajan Tech: sorry LISP joke.. nvm.. I'll go crawl back into my hole T3/r7/2021-12-26.txt.gz:{chan ch=tech}Balalayka Tech: how to turn off notifications in the DINV for each item added to the inventory? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Balalayka Tech: DINV Identified "(Seekers) Potion of Lotus Stem" (2598930765) from frequent cache T3/r7/2021-12-26.txt.gz:{chan ch=tech}Karathos Tech: dinv help notify T3/r7/2021-12-26.txt.gz:{chan ch=tech}Karathos Tech: might have what you want T3/r7/2021-12-26.txt.gz:{chan ch=tech}Balalayka Tech: tnx ) T3/r7/2021-12-26.txt.gz:{chan ch=tech}Zabbu Tech: how do i make an alias to hold the academy portal, enter it, and then dual wield the last item used? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Varrion Tech: try typing help alias? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Zabbu Tech: i tried the alias command but that doesnt seem to like the T3/r7/2021-12-26.txt.gz:{chan ch=tech}Zabbu Tech: the semicolon between commands T3/r7/2021-12-26.txt.gz:{chan ch=tech}Varrion Tech: using two T3/r7/2021-12-26.txt.gz:{chan ch=tech}Varrion Tech: ;x2? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Zabbu Tech: oo thanks, let me try that T3/r7/2021-12-26.txt.gz:{chan ch=tech}Varrion Tech: two semicolons T3/r7/2021-12-26.txt.gz:{chan ch=tech}Kerthump Tech: oh interesting I found you needed to escape the semicolon ala ";" T3/r7/2021-12-26.txt.gz:{chan ch=tech}Kerthump Tech: err backslash T3/r7/2021-12-26.txt.gz:{chan ch=tech}Zabbu Tech: yay that worked! :D now to figure out how to hotkey them T3/r7/2021-12-26.txt.gz:{chan ch=tech}Varrion Tech: theres a plugin im trying to locate that will help with that T3/r7/2021-12-26.txt.gz:{chan ch=tech}Varrion Tech: im not sure where to locate a link for it, and not tech savy but ask around for an accelerator plugin or search on gammon forums/google T3/r7/2021-12-26.txt.gz:{chan ch=tech}Varrion Tech: allows you to hotkey T3/r7/2021-12-26.txt.gz:{chan ch=tech}Kerthump Tech: is there a way to execute a command x number of times lik 5xspellup or something? T3/r7/2021-12-26.txt.gz:{chan ch=tech}A Calm Stormwind Tech: Is a plugin the reason I see the global echo, then it again prefaced with Global Echo:? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley has an alias to execute a command x number of times. T3/r7/2021-12-26.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Though 5xspellup would be ridiculous. T3/r7/2021-12-26.txt.gz:{chan ch=tech}WREKT Anaristos Tech: native in cmud :) T3/r7/2021-12-26.txt.gz:{chan ch=tech}Tech: WREKT Anaristos winks at (Aleister) Crowley. T3/r7/2021-12-26.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Technically native in MUSH, too, to be honest. T3/r7/2021-12-26.txt.gz:{chan ch=tech}WREKT Anaristos Tech: how do you do it in mush? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley's shifty eyes dart back and forth. T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: l33t plugin manager has some tools to allow for arbitrary command repeating T3/r7/2021-12-26.txt.gz:{chan ch=tech}Odorless Nuanse Tech: #4 SHIT in your pants... everyone should get that enhancement T3/r7/2021-12-26.txt.gz:{chan ch=tech}WREKT Anaristos Tech: oh, pseudo-native :) T3/r7/2021-12-26.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: You'd have to do it the long way with: \\\for i = 1,15 do Send("command") end T3/r7/2021-12-26.txt.gz:{chan ch=tech}WREKT Anaristos Tech: thanks for the info, Crowley. I'll keep it in mind.... T3/r7/2021-12-26.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: But yeah, I created the alias to do just what Nuanse said: #4 whatever command you want. T3/r7/2021-12-26.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I've used that often enough for tpspend. T3/r7/2021-12-26.txt.gz:{chan ch=tech}WREKT Anaristos Tech: quaff is my main usage T3/r7/2021-12-26.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: https://pastebin.com/PW8SeJAS -- For those who want it in MUSH. T3/r7/2021-12-26.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Simple usage: #5 quaff pot T3/r7/2021-12-26.txt.gz:{chan ch=tech}WREKT Anaristos Tech: where do I get the plugin or the script? T3/r7/2021-12-26.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Check the link I posted. :P https://pastebin.com/PW8SeJAS T3/r7/2021-12-26.txt.gz:{chan ch=tech}WREKT Anaristos Tech: thanks T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'm on a plane. AMA but only about MUSHclient. T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: what's the meaning of life, muchclient? T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Snow! T3/r7/2021-12-26.txt.gz:{chan ch=tech}Non-Binary Starky Tech: 42 T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: my snow plugin is now the meaning of life T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: fiendish, do you test your iteration of mushclient under WINE ever? T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I use a mac as my main machine, so yes. T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I haven't developed the aardwolf mushclient package in windows in basically forever. T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: do you ever test your build vs common plugins? T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it's almost always been either linux or a mac T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: no. I am the baseline. T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: reason i ask is for whatever reason pwar's sound plugin doesn't work under wine for me at least T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: though I did once accidentally break compatibility with something that Bast was using and fixed it in the next release as soon as I learned about it T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: but as expected T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: why has much never been ported to linux directly? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: mush* T3/r7/2021-12-26.txt.gz:{chan ch=tech}404 Eroe Tech: because it's written in old MFC. T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it's not possible T3/r7/2021-12-26.txt.gz:{chan ch=tech}404 Eroe Tech: and would rewquire rewriting at least a ton of the UI. T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: as Eroe says, it uses microsoft libraries that are very specific to Win32 T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: why did you develop what you develop for mush instead of another mud client? T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mudlet didn't exist and zmud and cmud were not capable of doing what I wanted to do T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: do any of the imms provide support for your development? T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Lasher very occasionally implements changes that I ask for nicely, and the imms are all my friends T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: (big fan btw) T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mostly I want to support them, not the other way around T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: do you have a better way of changing the stock background of your build than adjusting the jpg? T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: define "better" T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: also which background? the texture behind all the miniwindows or the wolf logo in the main output? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: gui way, any other way than turning the jpg to a single black pixel T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: aardwolf picture background T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I think there's an entry on my wiki FAQ about how to make the logo go away? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: fair enough T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'm having trouble getting to it right now because I'm on a plane and I didn't pay for real internet access T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: do you have any association with UW madison? T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: no T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but I went to Beloit which isn't far away T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: i'm aware, grew up in milwaukee area T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: umm T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: what's the biggest thing you'd like to see accomplished with mushclient that you haven't completed yet? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Torkin Tech: to be able to kill 12k mobs a day for a year T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: does nick gammon play aard? T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: no T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Nick does veeery rarely log in here though to test something out T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: always under a new random name T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: do you want more help on aard mushclient development? T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: always, but I'm very picky about what gets done T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: what do you want done? T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: the biggest thing I'd like to see accomplished that I haven't completed? I had an in-progress experiment to rewrite the mapper to draw more efficiently so that I could do more with the display without bogging down during speedwalks. I was like 90% done but had to take a long break from it and then when I went back to it I forgot what I was doing and scrapped it. T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: i actually laughed at that fact T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: yeah, mapper is the big thing i've been aching to work on T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: just need to find the time T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: I'm an MSME who works in IT. Feel like I can barely program, but really would like to help where I can. T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I learned Lua while doing this, but I did already know how to program and had been making scripts for zMUD for a long time T3/r7/2021-12-26.txt.gz:{chan ch=tech}High Risk Losteix Tech: if you could force Lasher to implement just one change that would make your job easier, what would it be? T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: lol T3/r7/2021-12-26.txt.gz:{chan ch=tech}Scars Tech: lasher already implemented lol's T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: wow, ok T3/r7/2021-12-26.txt.gz:{chan ch=tech}Yajirobe Roninleader Tech: so, how mush would it cost to pay you to convert SnD for mudlet? :P T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: lol, where is mushclient flying to this evening? T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: the biggest thing server-side would be a _generic_ way asking for command responses to be wrapped in GMCP subnegotiation open/close bytes so that we never have to gag informational responses that don't have tags or other formatting T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: and so that we always know which output is the response to a request T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'm going back to Philadelphia from Honolulu T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: when people ask me how much it would cost for me to do development work, my answer is always more than they are willing to spend T3/r7/2021-12-26.txt.gz:{chan ch=tech}Tech: Faithful Ruhamah is agreeing with that IAC DO Fiendish person again... T3/r7/2021-12-26.txt.gz:{chan ch=tech}Iron Duck Chuft Tech: I have a shiny gold coin for you T3/r7/2021-12-26.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: dos T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: hear that T3/r7/2021-12-26.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: free software is the best software T3/r7/2021-12-26.txt.gz:{chan ch=tech}Scars Tech: very seriously - thanks for spending the time on the client, taking requests, being so patient with all of us, closing the gap of the techincally inclined and those less so T3/r7/2021-12-26.txt.gz:{chan ch=tech}Faithful Ruhamah Tech: because it's otherwise too expensive T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: yes, thank you T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: while i can program, i'm the equivalent of the special kid when compared to those who it professionally T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: people think that because I enjoy writing code for free means that I also want to write /their/ code for free, and that's a weird and wrong thing to think T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: do you want it for cash? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: or just not at all T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I would do it for cash, but at professional software rates T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: professional consulting rates or professional fte rates? T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: are you making me an offer? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Iron Duck Chuft Tech: tree fiddy, then T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: umm, i'm good on devs, just trying to take advantage of the ama T3/r7/2021-12-26.txt.gz:{chan ch=tech}Doge Water Yajan Tech: can I submit my application? I can code in Fortran and BASIC T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: lol, if you can program and fortran and basic, you've mostly forgotten how to program T3/r7/2021-12-26.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I can set variables and retrieve the values.. what else do I need? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: combat skills T3/r7/2021-12-26.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I can dual wield T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: major numerics libraries used for heavy computation are still written in fortran T3/r7/2021-12-26.txt.gz:{chan ch=tech}Doge Water Yajan Tech: mouse and keyboard T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: can you triple wield? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Tech: Black Knight Doge Water Yajan cries out, "'Tis but a scratch!" T3/r7/2021-12-26.txt.gz:{chan ch=tech}Tech: Doge Water Yajan looks at Methyl and goes "Hmmmm." T3/r7/2021-12-26.txt.gz:{chan ch=tech}Doge Water Yajan Tech: you seem like a tough employer to please T3/r7/2021-12-26.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it's like someone figured out how to write a singular value decomposition the right way without casualties once and didn't want to go through it again for other languages, so they just put thin wrappers around it for other languages T3/r7/2021-12-26.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I prefer ones that let me work < 10 hours a week but pay me for 40 T3/r7/2021-12-26.txt.gz:{chan ch=tech}Doge Water Yajan Tech: guessing a ton of financial legacy systems are still running Fortran T3/r7/2021-12-26.txt.gz:{chan ch=tech}Doge Water Yajan Tech: low level banking/finance code T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: if you know jcl or the likes, you are old T3/r7/2021-12-26.txt.gz:{chan ch=tech}Tech: and APL is still really good for complex matrix work...sometimes you just go with a niche tool for the job T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: hah, you must think florida is actually a state T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: basically what yajan said T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: goddamn it, sorry T3/r7/2021-12-26.txt.gz:{chan ch=tech}Doge Water Yajan Tech: it's ok, we pretend like they're different channels, but everyone is listening on all the channels T3/r7/2021-12-26.txt.gz:{chan ch=tech}Methyl Tech: i don't think i have a single channel turned off honestly T3/r7/2021-12-26.txt.gz:{chan ch=tech}Haagen Tech: is there a way to get stuff from a specific container using dinv? T3/r7/2021-12-26.txt.gz:{chan ch=tech}Odorless Nuanse Tech: using dinv? no. dinv doesnt have get command T3/r7/2021-12-26.txt.gz:{chan ch=tech}A Calm Stormwind Tech: dinv help get T3/r7/2021-12-26.txt.gz:{chan ch=tech}Haagen Tech: thanks stormwind!:) T3/r7/2021-12-26.txt.gz:{chan ch=tech}A Calm Stormwind Tech: np :) T3/r7/2021-12-26.txt.gz:{chan ch=tech}Tech: with dinv you shouldn't need to know/care which container something is in T3/r7/2021-12-27.txt.gz:{chan ch=tech}404 Eroe Tech: anyone familiar with entity framework/asp.net core? T3/r7/2021-12-27.txt.gz:{chan ch=tech}Algaru Tech: anyone familiar with tallimos's epic calendar? Having some issues after restarting mush: [string "Plugin: Tallimos_EpicCalendar"]:1263: attempt to perform arithmetic on field 'year' (a nil value) - Not sure how to initialize that year field T3/r7/2021-12-27.txt.gz:{chan ch=tech}Tech: [Outlaw] Mendaloth points excitedly at Tallimos! T3/r7/2021-12-27.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Heh, sounds like a variable declaration is missing from his plugin. I hate it when that happens... I'm starting to get into the habit of assigning default values at all times just in case something messes up. T3/r7/2021-12-27.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Try reinstalling the calendar, though. T3/r7/2021-12-27.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley slaps Odorless Nuanse. T3/r7/2021-12-27.txt.gz:{chan ch=tech}Algaru Tech: tried reinstalling - no go. i'm digging through, and it's having trouble because it doesn't know how to handle epics that may start in 2022, i think. will have to look later though T3/r7/2021-12-27.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That's quite possible. Heh. T3/r7/2021-12-27.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I'm behind on technology, it seems. I bought a couple SanDisk flash drives (128 and 256 GB), and they are no longer the clunky big USB drives from the past, and instead was nearly mistaken for a bluetooth receiver for my mouse/keyboard. T3/r7/2021-12-27.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Quite nice to not have something that can snap off easily if you move something the wrong way. Downside is it is much easier to lose. T3/r7/2021-12-27.txt.gz:{chan ch=tech}Sleazy Areia Tech: PSA: I *very* temporarily fixed epic calendar--had a note up on the board that should've been taken down anyway. Maybe it'll break again later :P, but for now just re-install and it should be good. T3/r7/2021-12-27.txt.gz:{chan ch=tech}404 Eroe Tech: #CancelAreia2022 T3/r7/2021-12-27.txt.gz:{chan ch=tech}Tech: Sleazy Areia thanks 404 Eroe heartily. T3/r7/2021-12-27.txt.gz:{chan ch=tech}Sleazy Areia Tech: My name's finally oging to get trendy T3/r7/2021-12-27.txt.gz:{chan ch=tech}404 Eroe Tech: I don't know about trendy. I might just be one rager screaming into the void. You know you're cool when I rauction all my gear for hours. T3/r7/2021-12-27.txt.gz:{chan ch=tech}Tech: Sleazy Areia snickers softly. T3/r7/2021-12-27.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley sees a deal on a program he could use, pays $25 for 12 months (plus 2 extra months) (part of a software bundle, I have the main program). Open up main program, see deal in there for... $9.99 for 12 months for the program... *sigh* T3/r7/2021-12-27.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Time to request a refund! T3/r7/2021-12-27.txt.gz:{chan ch=tech}Vanellus Tech: What was the software? T3/r7/2021-12-27.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Driver Booster 9. T3/r7/2021-12-27.txt.gz:{chan ch=tech}Algaru Tech: i put a hacky fix in place for the calendar T3/r7/2021-12-27.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Apparently so did Areia. T3/r7/2021-12-27.txt.gz:{chan ch=tech}Algaru Tech: added this at line 1640 so it'd be initialized: EpicTable[TableIndex]["Time Table"]["year"] = SystemTimeTable["year"] T3/r7/2021-12-27.txt.gz:{chan ch=tech}Vanellus Tech: I did not know updating drivers before they are trouble was still a thing. T3/r7/2021-12-27.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well, normally isn't, but with Windows 11, a couple of drivers are throwing fits. T3/r7/2021-12-27.txt.gz:{chan ch=tech}Vanellus Tech: Ah. Was about to say I think the last time I needed to update a driver was back in the days of "defrag your registry". T3/r7/2021-12-27.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Eh, still good practice to update them. Bug fixes and all that. *smirk* T3/r7/2021-12-27.txt.gz:{chan ch=tech}Gaballon Tech: is there a way to turn off the message that says player rankings have been updated? T3/r7/2021-12-27.txt.gz:{chan ch=tech}Trachx Tech: that is one of info channel settings T3/r7/2021-12-27.txt.gz:{chan ch=tech}Trachx Tech: though probably turning off means you will turn off a bit more info global (?) messages T3/r7/2021-12-27.txt.gz:{chan ch=tech}Squeeky Kroz Tech: how do you disable S&D sounds ? T3/r7/2021-12-27.txt.gz:{chan ch=tech}Kaylie Tech: spmute T3/r7/2021-12-27.txt.gz:{chan ch=tech}Squeeky Kroz Tech: must be something else cause I had it on disabled T3/r7/2021-12-27.txt.gz:{chan ch=tech}Non-Binary Starky Tech: there is a soundpack plugin with pwars' stuff T3/r7/2021-12-27.txt.gz:{chan ch=tech}Non-Binary Starky Tech: check that? T3/r7/2021-12-27.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Kroz: xset sound T3/r7/2021-12-27.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: anyone here experience difficulty moving their mushclient folder around between different locations/computers/whatever and want to help me test new code that converts file locations to ones relative to the mushclient directory? T3/r7/2021-12-27.txt.gz:{chan ch=tech}Methyl Tech: yeah, i have that issue, i'm willing to help test T3/r7/2021-12-27.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: did you already replace your aard_requirements.xml file? T3/r7/2021-12-27.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: anyway, with a relatively recent snapshot, replace your aard_requirements.xml file with https://raw.githubusercontent.com/fiendish/aardwolfclientpackage/development/MUSHclient/worlds/plugins/aard_requirements.xml T3/r7/2021-12-27.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: and...uhh...idk...move the folder around or something? T3/r7/2021-12-27.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: not while open T3/r7/2021-12-27.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: probably T3/r7/2021-12-27.txt.gz:{chan ch=tech}Modra Tech: I have a MUSHclient question about Triggers. If anyone would be so kind to help T3/r7/2021-12-27.txt.gz:{chan ch=tech}A Calm Stormwind Tech: usually a good idea to just post the question and check tech -h often, people often read back and offer answeres when they come online T3/r7/2021-12-27.txt.gz:{chan ch=tech}Modra Tech: When creating a trigger, can I use the text that comes up to send a command to run when that text is shown? e.g. "You no longer detect invisibility." auto-sends my alias for my detect invis? Is this possible? And if so, how would I go about creating that trigger? T3/r7/2021-12-27.txt.gz:{chan ch=tech}Selitos Tech: sure is T3/r7/2021-12-27.txt.gz:{chan ch=tech}Tsorovan Reyn Tech: just make sure " T3/r7/2021-12-27.txt.gz:{chan ch=tech}Selitos Tech: if you use much though you may want to look at a spellup plugin instead of creating triggers for those T3/r7/2021-12-27.txt.gz:{chan ch=tech}Tsorovan Reyn Tech: just make sure "Send To" is set to "Execute" and then enter your alias in the "Send" field T3/r7/2021-12-27.txt.gz:{chan ch=tech}Modra Tech: That's what I was missing. Thank you, Reyn! And Selitos, I only have one trigger so far. No, I lied, two triggers. Just basically dipping my toe in the water for it. :) T3/r7/2021-12-27.txt.gz:{chan ch=tech}Tech: Selitos nods. T3/r7/2021-12-27.txt.gz:{chan ch=tech}Selitos Tech: but i suggest a spellup plugin very handly T3/r7/2021-12-27.txt.gz:{chan ch=tech}Tsorovan Reyn Tech: (commands send via "Execute" will be evaluated just as if you typed that into the command bar, so it'll check it against any aliases/variables/etc that you have set up) T3/r7/2021-12-27.txt.gz:{chan ch=tech}Negader Tech: https://github.com/fiendish/aardwolfclientpackage/wiki on this site, on the right side of it. there's some guides on how to write aliases and triggers T3/r7/2021-12-27.txt.gz:{chan ch=tech}Modra Tech: Oh snap! Thank you so much, Negader! T3/r7/2021-12-27.txt.gz:{chan ch=tech}Modra Tech: Hey, that worked! Thanks for the "execute" advice!! T3/r7/2021-12-28.txt.gz:{chan ch=tech}Khannon Tech: Was there command to update mushclient? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: checkversion give the url T3/r7/2021-12-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: but it being windows you can't update on the fly T3/r7/2021-12-28.txt.gz:{chan ch=tech}Khannon Tech: I see, haven't updated mush for long time... this time I'm gonna make backup.. last time it broke everything and everyone :P T3/r7/2021-12-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: yeah. zip the whole directory and store it somewhere very safe T3/r7/2021-12-28.txt.gz:{chan ch=tech}Khannon Tech: Holy moly it didn't actually break everything T3/r7/2021-12-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: well done :D T3/r7/2021-12-28.txt.gz:{chan ch=tech}Khannon Tech: Or maybe it did? I can't seem to resize group monitor T3/r7/2021-12-28.txt.gz:{chan ch=tech}Sheriff Shindo Tech: sounds like it now has an SEP field around it. so i'll leave you and Fiendish to solve that problem T3/r7/2021-12-28.txt.gz:{chan ch=tech}Khannon Tech: hmm yeah, I literally can't do anything with group monitor window T3/r7/2021-12-28.txt.gz:{chan ch=tech}Khannon Tech: is there list for known issues for Mushclient newest version? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Cheesus Tech: history T3/r7/2021-12-28.txt.gz:{chan ch=tech}Cheesus Tech: oops T3/r7/2021-12-28.txt.gz:{chan ch=tech}Cheesus Tech: is there mccp for arm64 T3/r7/2021-12-28.txt.gz:{chan ch=tech}Agailia Tech: Hi all. Trying to set up SND here. I just got it but it looks like there are several files in the zip folder. Do I just put them all in the plugins folder? T3/r7/2021-12-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Which version did you get? Or whose, rather? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Agailia Tech: The one by Crowley T3/r7/2021-12-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: So, the one by me. :P T3/r7/2021-12-28.txt.gz:{chan ch=tech}Agailia Tech: lol yeah T3/r7/2021-12-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: The only one you need to be concerned about is the Search_and_Destroy.xml. You can unzip all to the same folder (what I like to do is create folders for authors in the 'plugins' folder, and drop things there). Then you can just add the SnD plugin T3/r7/2021-12-28.txt.gz:{chan ch=tech}Agailia Tech: What about the wav files? Just curious since I see two of those there. T3/r7/2021-12-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: You can add those, but they will also be automatically downloaded if they are missing. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Agailia Tech: Ah okay. Just added the xml file. I won't worry about the rest then. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2021-12-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: You can get started by looking over 'xhelp', too. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Tallimos Tech: For anybody having trouble with the epic calendar the last few days, I have made an update. If you cannot use ecal update then please re-download the file from my github T3/r7/2021-12-28.txt.gz:{chan ch=tech}Zabbu Tech: i found search and destroy which has been amazing for campaigns. Is there anything else people would recommend for a new player? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Scars Tech: spellup plugin T3/r7/2021-12-28.txt.gz:{chan ch=tech}Porcius Tech: dinv T3/r7/2021-12-28.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: dinv T3/r7/2021-12-28.txt.gz:{chan ch=tech}Scars Tech: i use winklewinkle's T3/r7/2021-12-28.txt.gz:{chan ch=tech}FrshPrncOf Kelaire Tech: finger durel for that one T3/r7/2021-12-28.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley beams a smile at Zabbu. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Aoric Tech: check out the soundpack if you haven't gotten around it yet T3/r7/2021-12-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: The soundpack already comes with MUSH... T3/r7/2021-12-28.txt.gz:{chan ch=tech}Aoric Tech: yes, but not really something obvious for newer players T3/r7/2021-12-28.txt.gz:{chan ch=tech}Zabbu Tech: getting the inventory one. how do i find the spellup one? T3/r7/2021-12-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Well, if we instructed all newbies to check out 'aard help', they'd learn all the features. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Tech: Aoric is agreeing with that (Aleister) Crowley person again... T3/r7/2021-12-28.txt.gz:{chan ch=tech}Porcius Tech: holy, I didn't know about aard help T3/r7/2021-12-28.txt.gz:{chan ch=tech}Aoric Tech: see? it works! T3/r7/2021-12-28.txt.gz:{chan ch=tech}Gaballon Tech: is there a tick timer built-in? i thought i remember seeing it somewhere T3/r7/2021-12-28.txt.gz:{chan ch=tech}Aoric Tech: crowley's has a clock plugin T3/r7/2021-12-28.txt.gz:{chan ch=tech}Aoric Tech: might wanna check it out as well T3/r7/2021-12-28.txt.gz:{chan ch=tech}Porcius Tech: We do, but it sometimes isn't loaded. It should be in the plugins folder T3/r7/2021-12-28.txt.gz:{chan ch=tech}Heracles Tech: tick timer used to come with mush just not installed i though T3/r7/2021-12-28.txt.gz:{chan ch=tech}Tech: Porcius is agreeing with that Heracles person again... T3/r7/2021-12-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Tick timer STILL comes with MUSH. It's its own mini-window, though, and is not pre-installed anymore. T3/r7/2021-12-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: But if you want something that provides a bit more information and looks pretty (at least, to me it does!) then my Aard Clock is the route to go. T3/r7/2021-12-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: https://i.vgy.me/UzWXSp.png -- That's what it looks like when it's day outside. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Gaballon Tech: ill check it out, thanks T3/r7/2021-12-28.txt.gz:{chan ch=tech}Heracles Tech: tick timer can be pushed into the status bar rather than being a miniwin T3/r7/2021-12-28.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods at Heracles. T3/r7/2021-12-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: But yeah, if you want a simple tick timer, just open up the plugins directory and look for "Tick" in the file name. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Zabbu Tech: trying to alias the dinv use portal, and it seems to not work. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Zabbu Tech: oh wait operator error T3/r7/2021-12-28.txt.gz:{chan ch=tech}Heracles Tech: pebkac T3/r7/2021-12-28.txt.gz:{chan ch=tech}Graciella Tech: mapper portal dinv portal use # T3/r7/2021-12-28.txt.gz:{chan ch=tech}Zabbu Tech: nope, still not working, tried dinv portal use 2595646754, and mapper portal dinv use 2595646754. i know dinv portal use 2595646754 works if i just enter the whole string but the alias doesnt like it T3/r7/2021-12-28.txt.gz:{chan ch=tech}Graciella Tech: mapper portal dinv portal use # T3/r7/2021-12-28.txt.gz:{chan ch=tech}Graciella Tech: you're missing parts of it :) T3/r7/2021-12-28.txt.gz:{chan ch=tech}Graciella Tech: mapper portal dinv portal use 2595646754 T3/r7/2021-12-28.txt.gz:{chan ch=tech}Heracles Tech: You're combining two commands, mapper portal and dinv portal into one so make sure you have portal there twice T3/r7/2021-12-28.txt.gz:{chan ch=tech}Graciella Tech: for that portal number T3/r7/2021-12-28.txt.gz:{chan ch=tech}Odorless Nuanse Tech: use simple alias for mapper. like: "portal *" -> dinv portal use %1. You can then use easier portal usage with mapper. and if you change scripts you can change that single line and everything works still T3/r7/2021-12-28.txt.gz:{chan ch=tech}Zabbu Tech: so it needs to be written as portal portal? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Heracles Tech: Graciella wrote it out exactly like you need to T3/r7/2021-12-28.txt.gz:{chan ch=tech}Heracles Tech: mapper portal dinv portal use 2595646754 T3/r7/2021-12-28.txt.gz:{chan ch=tech}Heracles Tech: And then make sure you've done a dinv refresh to ensure dinv knows where all your portals are T3/r7/2021-12-28.txt.gz:{chan ch=tech}Zabbu Tech: i did: alias tacad mapper portal dinv portal use 2595646754 T3/r7/2021-12-28.txt.gz:{chan ch=tech}Porcius Tech: try dinv help portal T3/r7/2021-12-28.txt.gz:{chan ch=tech}Zabbu Tech: output is that it doesnt under stand the command, could it be a mapper setting? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Heracles Tech: Ah, I don't believe you can use plugin commands aliases directly to the muds alias list T3/r7/2021-12-28.txt.gz:{chan ch=tech}Graciella Tech: copy what I put and enter it T3/r7/2021-12-28.txt.gz:{chan ch=tech}Graciella Tech: not as an alias, just copy and enter T3/r7/2021-12-28.txt.gz:{chan ch=tech}Fatal FrostBite Tech: that looks like a mud-side alias. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Limunious Tech: anyone running mush from dropbox on more than 1 pc? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Odorless Nuanse Tech: no, you are creating new mapper portal continuously with that command. just make simple alias for usage and then mapper is like "mapper portal tacad #" T3/r7/2021-12-28.txt.gz:{chan ch=tech}Graciella Tech: mapper portal dinv portal use 2595646754 T3/r7/2021-12-28.txt.gz:{chan ch=tech}Zabbu Tech: oo i got the pop up now and set it to the default. so its mapper i need to be lookingat T3/r7/2021-12-28.txt.gz:{chan ch=tech}Heracles Tech: I have before Limunious T3/r7/2021-12-28.txt.gz:{chan ch=tech}Limunious Tech: i keep getting this popup at launch: unabl T3/r7/2021-12-28.txt.gz:{chan ch=tech}Limunious Tech: i keep getting this popup at launch: unable to create the plugin save state file. then a long pathwau T3/r7/2021-12-28.txt.gz:{chan ch=tech}Odorless Nuanse Tech: I used to. but older versions were freakishly slow. so I just keep dozen different mushclients in my comps T3/r7/2021-12-28.txt.gz:{chan ch=tech}Limunious Tech: and it dopesnt seem like they are syncing eithr:( T3/r7/2021-12-28.txt.gz:{chan ch=tech}Odorless Nuanse Tech: well, nowadays I just vpn to my main computer and play from there T3/r7/2021-12-28.txt.gz:{chan ch=tech}Agailia Tech: I've gotten that message before with other muds. Where is your version of mushclient installed? If it's somewhere like OneDrive that's the problem. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Heracles Tech: That was my biggest issue with dropbox, corrupted state files T3/r7/2021-12-28.txt.gz:{chan ch=tech}Heracles Tech: Usually I had to either restore to a previous version or track down the state file and delete it T3/r7/2021-12-28.txt.gz:{chan ch=tech}Heracles Tech: Latter can be a headache depending on the plugin it's related to T3/r7/2021-12-28.txt.gz:{chan ch=tech}Odorless Nuanse Tech: just pick up cheap ssd and connect that where ever you are. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Agailia Tech: Plugins can't save in OneDrive or sometimes other folders that are being synced. It's best not to have your client set up there. That's why I thought that might be the problem. I had that message pop up before and moving the client out of OneDrive fixed it. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Gaballon Tech: is it possible to store the mapper database on a NAS? so i can use/update it from both my computers? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Vanellus Tech: I have one on Dropbox but it does sometimes get all tanged up if I quit and leave a client open T3/r7/2021-12-28.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: You most definitely can run from cloud storage. The problem arises only if you have it open on one and try to access it on another, or if it's still trying to sync the file. T3/r7/2021-12-28.txt.gz:{chan ch=tech}PenguinGod Galoth Tech: needs more web version of the client T3/r7/2021-12-28.txt.gz:{chan ch=tech}Odorless Nuanse Tech: not sure I would want to use net version. what happens if there is no connection? *snicker T3/r7/2021-12-28.txt.gz:{chan ch=tech}Limunious Tech: thats a good idea ill just buy a cheap ssd. I used to use a flash drive but always lost that shit! T3/r7/2021-12-28.txt.gz:{chan ch=tech}Limunious Tech: thanks! T3/r7/2021-12-28.txt.gz:{chan ch=tech}404 Eroe Tech: anyone have much experience with entity framwwork/mssql? T3/r7/2021-12-28.txt.gz:{chan ch=tech}404 Eroe Tech: I'm working on a large codebase and datetime isn't fitting in a datetime2 column, but I don't see a datetime2 column on the table. Trying to figure out if there's a way to make that inner exception tell you which column/table is problematic. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: did you try screaming, "Jesus, take the wheel" and facerolling your keyboard? T3/r7/2021-12-28.txt.gz:{chan ch=tech}404 Eroe Tech: I did. Visual studio swapped to perl and that solves no problems. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: damn Perl T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: inner exception is one coming from DB? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: and DB is running on what? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Urshilikai Tech: is there any command in dinv that lets me see the 'least used' or 'fastest replaced' items in a set? I want to quickly see what to prune, or what the lowest score item per level is T3/r7/2021-12-28.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: late answer but, you can use "dinv usage" to check what is used and at which levels for any given priority T3/r7/2021-12-28.txt.gz:{chan ch=tech}Urshilikai Tech: ah thats a good view, thanks T3/r7/2021-12-28.txt.gz:{chan ch=tech}Khannon Tech: Anyone else got issues with group monitor resizing on r2178? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Varrion Tech: is there a command or option to reset window positions on mush, i have one stuck half off screen. T3/r7/2021-12-28.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: try aard help T3/r7/2021-12-28.txt.gz:{chan ch=tech}CheeZy Bot HiSaZuL Tech: or aard layout help more specifically T3/r7/2021-12-28.txt.gz:{chan ch=tech}Varrion Tech: ahhhh thank yoooou T3/r7/2021-12-28.txt.gz:{chan ch=tech}Modra Tech: Is there a shortcut or something that I hit to make maps show up in the main window? I have a map window open already, so I don't need the one on the main screen. How do I turn that back off? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Scars Tech: right click that window T3/r7/2021-12-28.txt.gz:{chan ch=tech}Tech: right-click the map window, there's a toggle for whether it's echoed in the main T3/r7/2021-12-28.txt.gz:{chan ch=tech}Modra Tech: That option isn't checked. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Modra Tech: Oh, I checked it, and then unchecked. That seemed to work. Thank you! T3/r7/2021-12-28.txt.gz:{chan ch=tech}Tech: the other thing that sometimes happens, is that you accidentally turn tags off or turn just map tags off...when that happens, it'll show in the main window but NOT update the map window T3/r7/2021-12-28.txt.gz:{chan ch=tech}Modra Tech: I see. I am unsure what happened to pop it up, but I do appreciate your help getting it gone! So far, map window is updating as I move around, so I think it's all good. :) T3/r7/2021-12-28.txt.gz:{chan ch=tech}Antifa Raded Tech: is it possible to set up RemoteApp with Windows 10 Pro? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Antifa Raded Tech: google says no but T3/r7/2021-12-28.txt.gz:{chan ch=tech}Antifa Raded Tech: I dont like that answer T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: never take "no" for an answer! T3/r7/2021-12-28.txt.gz:{chan ch=tech}Antifa Raded Tech: no yajan sometimes it's great to take no for an answer T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: like when! T3/r7/2021-12-28.txt.gz:{chan ch=tech}Luc Tech: if the question is "would you like to go to jail?" T3/r7/2021-12-28.txt.gz:{chan ch=tech}Methyl Tech: don't think i've ever tried to get that to work on a client OS -- probably software locked like RDP in general T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: only bad thing about mustard on my burger was having to smell it on my rapist stache after the fact T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: should cut this thing T3/r7/2021-12-28.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: WTF Yajan? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: hahahahaha T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: sorry ftalk/tech same color T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: Jesus still loves me.. at least that's what my mom always says T3/r7/2021-12-28.txt.gz:{chan ch=tech}Gaballon Tech: why does my alias not work? ce * = maapper cexit %1. it works until you add multisteps like: ce open west;west. it records only the part before the T3/r7/2021-12-28.txt.gz:{chan ch=tech}A Calm Stormwind Tech: you need to escape the T3/r7/2021-12-28.txt.gz:{chan ch=tech}A Calm Stormwind Tech: you need to escape the ; with another ; T3/r7/2021-12-28.txt.gz:{chan ch=tech}Gaballon Tech: i do put 2 semicolons T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: if it's in a "Send" you put different commands on different lines T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: if you're sending to script, then you can mash commands together inside of a Send("buncha crap here") T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: or Execute or something like that T3/r7/2021-12-28.txt.gz:{chan ch=tech}Gaballon Tech: im sending to execute T3/r7/2021-12-28.txt.gz:{chan ch=tech}Gaballon Tech: "mapper cexit open west;west" works, but not "ce open west;west" T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: umm execute might not work because the mapper isn't part of your local config T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: sorry it's been a minute let me check how I do similar stuff T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: oh sorry, you should be fine there... T3/r7/2021-12-28.txt.gz:{chan ch=tech}Gaballon Tech: those are double semicolons in my quotes T3/r7/2021-12-28.txt.gz:{chan ch=tech}404 Eroe Tech: if you're sending to execute literally just separate the commands on their own line. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: can you send to script and then SendNoEcho("%1") to see what matched? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: err sorry SendNoEcho("echo %1") T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: make sure you're getting it all T3/r7/2021-12-28.txt.gz:{chan ch=tech}Etcha Sletch Tech: i think for the sake of the mapper, you don't want the command lines separated? it should be one line. not to muddy the waters T3/r7/2021-12-28.txt.gz:{chan ch=tech}404 Eroe Tech: here. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I agree now that I know what he's trying to accomplish T3/r7/2021-12-28.txt.gz:{chan ch=tech}Gaballon Tech: yea, i just want to ahorten mapper cexit to ce * T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I would double check what it's capturing to make sure that's not the issue T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: then we can all help you send the final command T3/r7/2021-12-28.txt.gz:{chan ch=tech}Gaballon Tech: its splitting it into multiple lines for some reason through the alias T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: yeah, that's the semicolon doing I think T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: doing it's thing* T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: its* bah T3/r7/2021-12-28.txt.gz:{chan ch=tech}A Calm Stormwind Tech: have you tried ce south;;north? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: you need it to send mapper cexit op south; T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: whoa T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: you need it to send mapper cexit op south;south right? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Gaballon Tech: yea, so when i do that, whats happens is it sends mapper cexit south, then north on the next line T3/r7/2021-12-28.txt.gz:{chan ch=tech}Etcha Sletch Tech: mapper cexit op s;;s T3/r7/2021-12-28.txt.gz:{chan ch=tech}Throbbing Redwood Tech: gotta ;;;; T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: ^ T3/r7/2021-12-28.txt.gz:{chan ch=tech}Etcha Sletch Tech: right T3/r7/2021-12-28.txt.gz:{chan ch=tech}Tsorovan Reyn Tech: yeah, you need to send two ESCAPED ; characters, so 4 ; T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: or you could send it inside an Execute sending to script T3/r7/2021-12-28.txt.gz:{chan ch=tech}Smudge Tech: I just have 'cx *' aliased to 'mapper cexit %1', send to execute, don't expand variables. Always worked for me. T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: and just not escape T3/r7/2021-12-28.txt.gz:{chan ch=tech}Tsorovan Reyn Tech: shortening the alias but requiring more ; characters. kinda a one step forward, one step back deal T3/r7/2021-12-28.txt.gz:{chan ch=tech}Gaballon Tech: well that sucks. ill try your send to script T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: yeah, that works for me T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: thanks made myself a cool little alias T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: oh wait.. that doesn't work haha T3/r7/2021-12-28.txt.gz:{chan ch=tech}Tinypotato Tech: i think if you want to be able to send to execute (instead of script) you need to use 4 semi-colons instead of 2 T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: should be a way to do it without having to do anything extra you wouldn't normally do.. but it's not as easy as I had hoped T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: sadly I think you might have to add a bit of code to escape each ; T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: not sure how smudge's is working T3/r7/2021-12-28.txt.gz:{chan ch=tech}Gaballon Tech: yeah its harder than it should be it seems T3/r7/2021-12-28.txt.gz:{chan ch=tech}Smudge Tech: I just 'cx op n;n', seems to work T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: problem is when you send to Execute it will parse your ;; first bring it down to one and then that gets eaten by mapper T3/r7/2021-12-28.txt.gz:{chan ch=tech}Smudge Tech: oops, that was typed as two semi-colons T3/r7/2021-12-28.txt.gz:{chan ch=tech}Tinypotato Tech: you could probably make it send to script and in the script textbox just do Execute("mapper cexit %1") T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: got it T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: there's probably less clunky ways to do it but I have a version that seems to work T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: can probably get it down to one line for you T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: sorry isn't the most readable but works: Execute("mapper cexit "..string.gsub("%1",";",";;")) T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: send to script T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: it's actually doing exactly what Redwood described.. just programmatically so you don't have to do it every time you want to create a cexit T3/r7/2021-12-28.txt.gz:{chan ch=tech}Gaballon Tech: are you using text substition to sdouble semicolons? T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: yeah essentially, gsub is global substitution for every ; replace it with ;; T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: because the first one gets eaten sending to execute.. so you have to re-add to get the same effect as you sent into your alias T3/r7/2021-12-28.txt.gz:{chan ch=tech}Gaballon Tech: right, weirdvstuff T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: it's like 0 in math T3/r7/2021-12-28.txt.gz:{chan ch=tech}Doge Water Yajan Tech: it's so powerful that you have to have all of these special rules around it T3/r7/2021-12-29.txt.gz:{chan ch=tech}Aoric Tech: silly question, but why do you need to alias mapper cexit? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: Doge Water Yajan giggles. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Aoric Tech: why not mapper cexit it directly from the room? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: well now that I have it too, I think it's super! T3/r7/2021-12-29.txt.gz:{chan ch=tech}Gaballon Tech: to save keystrokes T3/r7/2021-12-29.txt.gz:{chan ch=tech}Etcha Sletch Tech: saves typing, i can understand that if you're doing a ton T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I'll probably forget and just revert back to that but.. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Gaballon Tech: yajan can u post it to pastebin if u have it working? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I sent it above T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: as a one-liner T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: tech -h Yajan T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: @23:51:30 T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: also don't read too far back.. I said some pretty weird stuff earlier T3/r7/2021-12-29.txt.gz:{chan ch=tech}Gaballon Tech: got it, tu T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: cheers! hope it helps T3/r7/2021-12-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here for a minute or two T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: what does "Mush" stand for? T3/r7/2021-12-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: MUSH is like MUD but with...uhh... T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: exactly T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I think that's the correct answer T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: extra ssshhhh ? T3/r7/2021-12-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it seems the SH stands for Shared Hallucination T3/r7/2021-12-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: which is...kinda silly I guess. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: awkward T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: let's never speak of this again T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: can I buy two more then please? T3/r7/2021-12-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: you talking to us or the person on the phone? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Throbbing Redwood Tech: did you turn it off and on again? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: this halucination was not shared, money back pls T3/r7/2021-12-29.txt.gz:{chan ch=tech}Throbbing Redwood Tech: thought i was the only one on mushrooms atm T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: where's those psychedelic colors when you need them T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: oh here.. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: Doge Water Yajan sings Badger Badger Badger Badger A Snake A Snake A Snake Badger Badger Badger Badger Mushroom Mushroom T3/r7/2021-12-29.txt.gz:{chan ch=tech}Throbbing Redwood Tech: thank you T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I got you dude T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: Braun makes hundreds of magical colors with a wave of his hands. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: Doge Water Yajan goes ooOOooOOoo at Braun. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: Braun goes ooOOooOOoo at Doge Water Yajan. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: IAC DO Fiendish makes hundreds of magical colors with a wave of his hands. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: Doge Water Yajan goes ooOOooOOoo at IAC DO Fiendish. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Braun Tech: yooo Fiendish T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: Braun goes ooOOooOOoo at IAC DO Fiendish. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: there's a yellow one?!?! T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: this changes everything T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: IAC DO Fiendish goes ooOOooOOoo at Doge Water Yajan. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: learning so much about SharedHallucination Client today T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: IAC DO Fiendish goes ooOOooOOoo at Doge Water Yajan. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Macbeth Tech: enough. too mind blowing for yajan. enough internet for the day T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: hmm I guess it's my destiny to make dooo T3/r7/2021-12-29.txt.gz:{chan ch=tech}Braun Tech: I was thinking pooo T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: can someone make me plugin that tells me I'm getting double exp, so I'll actually level even when there's no double? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I need like a deepfake level one T3/r7/2021-12-29.txt.gz:{chan ch=tech}Braun Tech: You could do a timer and have it echo the double stuff. Maybe use random player names... T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I need it after every kill and in my prompt too, but yeah I could set the player name that way.. I would also need to toggle it off when there's real double so I don't realize I'm in the Matrix T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: or rather in this Shared Hallucination that we call home T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: Braun makes hundreds of magical colors with a wave of his hands. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: ok, this could work T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: because who actually counts the exp they get every mob? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I just watch my TNL meter T3/r7/2021-12-29.txt.gz:{chan ch=tech}Porcius Tech: do we have an exp/hr tracker somewhere? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: did you try exptracker on? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: Doge Water Yajan laughs at himself. Let's all join in!!! T3/r7/2021-12-29.txt.gz:{chan ch=tech}Braun Tech: I think Hadar does with his plugin manager... T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: lots of players have them, someone could probably throw theirs at you T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I have one I use for pups but doesn't track exp, just pups/sec T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: or seconds per pup rather T3/r7/2021-12-29.txt.gz:{chan ch=tech}Qyx Tech: hey, have a dell 24" monitor. Suddenly a solid vertical cyan bar has appeared on the right hand side about 3 inches wides (it's a newish monitor) and the entire height of the screen. It's there whether my PC is plugged in or not and a screen shot doesn't show it i.e. looks like a monitor problem. I did a factory reset on monitor and unplugged it to no avail. Is the monitor f*cked? any ideas pls? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Amarufox Tech: tried a different cable to connect monitor to pc? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Qyx Tech: nope will have a look but monitor has bar when I switch it on even without PC plugged in :) T3/r7/2021-12-29.txt.gz:{chan ch=tech}Negader Tech: if still returnable, would return. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Amarufox Tech: ah yeah, if bar there even when no cables connected to monitor, probably monitor thing :( T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: Amarufox is agreeing with that Negader person again... T3/r7/2021-12-29.txt.gz:{chan ch=tech}Qyx Tech: thanks :) never seen this kind of fault before and couldn't find it in a google search. guessing some circuit board has fried T3/r7/2021-12-29.txt.gz:{chan ch=tech}Amarufox Tech: nods, there's always a way to debug it in code :P T3/r7/2021-12-29.txt.gz:{chan ch=tech}Amarufox Tech: mis, but yeah T3/r7/2021-12-29.txt.gz:{chan ch=tech}Vanellus Tech: Several xrt waks now take me into Chaos clan hall, even after I xset mark-ed the start rooms afresh. Do I remember this being something to do with the new added areas? T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It's nothing to do with xrt, but with mapper. Your mapper has incorrect exits somewhere. T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Not necessarily due to added areas, but due to changed cexits. T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Best case is to mapper where , then walk the path a step at a time until you find out where it goes wrong. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Vanellus Tech: I'll go over the route next time it happens, thanks, T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Er, best solution. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Vanellus Tech: My mapper thinks there is a down exit at Phoenix square. If there is it's not one I can use! T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley snickers softly. T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Delete that exit, and it should return to working order again. Hopefully. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Xephrin Tech: same thing happened to me, clan entrance changed. used mapper purgeroom there and it was fixed T3/r7/2021-12-29.txt.gz:{chan ch=tech}Vanellus Tech: Purged! Maybe it was a defunct clan's portal room? T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Hmm, don't think so, because Phoenix Square hasn't changed in years, if ever. T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Was just something wonky that went on, I'd imagine. T3/r7/2021-12-29.txt.gz:{chan ch=tech}RabbitSlayer Tech: Is there a way to reorder the status bar window? Or make another status bar window? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Luc Tech: sounds like a question for when Fiendish is on T3/r7/2021-12-29.txt.gz:{chan ch=tech}RabbitSlayer Tech: Roger that! Will try to remmember to ask him when he comes online. Thanks Luc. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Luc Tech: no problem, I just figured since he handles the client updates and such, he'd be the best to ask:) T3/r7/2021-12-29.txt.gz:{chan ch=tech}RabbitSlayer Tech: Is there a way to send a notification for when someone comes online that's not your friend? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Luc Tech: not that I'm aware of, but you could board personal and write him a short note T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: it *looks* pretty easy to do in the aar_health_bars_gmcp.xml plugin file T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: sorry answering first Q T3/r7/2021-12-29.txt.gz:{chan ch=tech}RabbitSlayer Tech: I'm assuming creating another window is similar to creating another Comms window. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Luc Tech: I know enough about html/xml to know not to go messing with it:) T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I've changed my status bar to my liking, to be honest. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: I'd create a backup of the xml, and try to rearrange the lines: DoNextSimpleBar("Health", gmcp_char.vitals.hp, gmcp_char.maxstats.maxhp) DoNextSimpleBar("Mana", gmcp_char.vitals.mana, gmcp_char.maxstats.maxmana) DoNextSimpleBar("Moves", gmcp_char.vitals.moves, gmcp_char.maxstats.maxmoves) T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: but that's just a guess T3/r7/2021-12-29.txt.gz:{chan ch=tech}RabbitSlayer Tech: Cool! Looks about right. T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Oh, we're talking bars, not windows. :P T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: defo backup T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: https://i.vgy.me/nP3Q06.png - That's what my status window looks like, anyway. :P T3/r7/2021-12-29.txt.gz:{chan ch=tech}<> Slips Tech: xanax bars loritabs T3/r7/2021-12-29.txt.gz:{chan ch=tech}<> Slips Tech: every5hing has their perks lol T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Slips should slip back into a deep coma. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley THWAPS <> Slips for being a moron. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Luc Tech: it's why I had to change meds, my xanax would 'suspiciously' disappear T3/r7/2021-12-29.txt.gz:{chan ch=tech}RabbitSlayer Tech: Yeah, i want to put the enemy bar under my health bar. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: i think it's just the ordering of them, but i've only had a cursory look T3/r7/2021-12-29.txt.gz:{chan ch=tech}RabbitSlayer Tech: Thanks Evl! I'll take a look later on myself. From what you shown, should be easy enough. T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I just modified it myself, and I can send it to you. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: yeah i just did the same - it works T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: might keep it this way T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: Evl :D T3/r7/2021-12-29.txt.gz:{chan ch=tech}RabbitSlayer Tech: Cool. Yes, please send it to me. T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: https://pastebin.com/0NqbWVss -- just copy/paste that into a new file, save it as "aard_health_bars_gmcp_modified.xml", and uninstall the current one and install the new one. T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: The reason you want to use a different file instead of just overwriting the current one is when you update, you'll lose those changes. T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: That puts the Enemy bar after the Health bar, then Mana and Moves and the rest. T3/r7/2021-12-29.txt.gz:{chan ch=tech}RabbitSlayer Tech: Awesome! Thanks! T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: ah i did it different https://pastebin.com/YaEiz69a T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Er, you didn't do it differently... T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: It's the same thing I have, excepting that I kept the original code in there, but commented it out. T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: And copied the stuf to below the enemy bar. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: ah, i just have no idea how comments work then :D T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley snickers softly. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: -- is one line comment or multiple? lol T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: And yay! My change went into MUSHclient! New upgrade features 'mapper change portal'! :D T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: -- is one line. --[[ multiple lines ]]-- is multiple. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: aha nice - yeah this is my first attempt at lua tbh T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley rapidly nods twice, in complete agreement. T3/r7/2021-12-29.txt.gz:{chan ch=tech}RabbitSlayer Tech: Awesome! Looks much better! T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Time to update MUSH! Back in a bit! T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: nice upgrade! i have an alias that literally redoes all my portals from scratch when i change dual weapon :D T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Why in the world would you do that?? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Trachx Tech: just buy portal wish T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: You're better off having a single alias. Do you use DINV? T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Don't even need portal wish. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: yeah i use dinv, but not very well T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Create one alias that does: get %1 from bag;wear %1;enter;wear eapon;put %1 bag T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Then do yourself a favor... T3/r7/2021-12-29.txt.gz:{chan ch=tech}Trachx Tech: or you can just use invmon to monitor what you've removed T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Create a new alias: port * --> and Send: if tonumber("%1") then Execute("dinv portal use %1") else Execute("dinv portal use key " .. string.gsub("%1", " ", " key ")) end -- Set to 'Script' and you're good. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: atm all i write for a new dual weap is : #set dual ;ecp : T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: and my portals are done T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Then, all your portals can just be: port academy portal or port kali pendant or port yadda T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: And DINV will take care of the rest. T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Then you'll never have to change your portals again. :p T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: that sounds handy T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I try to make my life simple, not difficult. :p T3/r7/2021-12-29.txt.gz:{chan ch=tech}Durel Tech: If you use dinv, you can do things like "dinv portal use " to get the portal, wear it, enter it, re-wear what you had on before, and put the portal back into the bag it started in. You can have the mapper use that command directly, or you can use an alias like Crowley suggested to make a wrapper around the dinv command. Making an alias like that is handy T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: I broke Fiendish's help capture. :p T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: thanks :) T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: i got dinv long after i started using my alias T3/r7/2021-12-29.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Most people do. :p T3/r7/2021-12-29.txt.gz:{chan ch=tech}Modra Tech: Huh, I wonder why that keeps happening. My maps keep popping up in the main window. It's like the 3rd time it has happened. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Modra Tech: When anyone has a moment, do they mind getting with me to solve a coding/map issue I'm having? Many Thanks! T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: just to be clear, Im formatting tonight. I can just save a zip of my MUSH folder and unzip afterwards and be fine? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: just to be clear.. I feel like I missed the first half of this conversation T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: nope, just 1 question T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: oh T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: hmm, I'm inclined to say yes, but I'm not an expert T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: zip, save, format, unzip, huzzah ? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: as far as I know everything is contained under that directory T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: so theoretically, yes T3/r7/2021-12-29.txt.gz:{chan ch=tech}Luc Tech: yup, if you're transferring to a flash drive, or you can just put it on the cloud and redownload it if that's an option T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: That was my understanding too, just thought I would get a 2nd opinion T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: right, Ill just drop it on dropbox T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: mine's like the rhetorical "2 cents" you here about T3/r7/2021-12-29.txt.gz:{chan ch=tech}Evl Tech: can always try it out on another pc before formatting? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: maybe Luc's is slightly better T3/r7/2021-12-29.txt.gz:{chan ch=tech}Hellion Tech: the only small issue is snd has paths to current file structure, so make sure you maintain those names T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: got it, put it back in same place I took it from, thanks, good tip T3/r7/2021-12-29.txt.gz:{chan ch=tech}Luc Tech: I wouldn't even zip tbh, the whole folder containing everything is like 95 mb T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: true T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: will do T3/r7/2021-12-29.txt.gz:{chan ch=tech}Modra Tech: Wouldn't fit ona floppy, though. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Luc Tech: that's just me, I'll slap it onto a flash drive and just put it back when I'm done T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: ok signing off T3/r7/2021-12-29.txt.gz:{chan ch=tech}Hellion Tech: good luck and god speed T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: If I never return imagine me standing over my open pc case with my hands in the air whispering to the gods to bring it back to life T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: If I never return imagine me standing over my open pc case with my hands in the air whispering to the gods to bring it back to lifehome T3/r7/2021-12-29.txt.gz:{chan ch=tech}Modra Tech: I recently reimaged my own pc, and I gotta tell ya, lots of issues I didn't even know I had were solved. T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: woops T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I liked it repeated T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: it was like hook of a song T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: teh hookz* T3/r7/2021-12-29.txt.gz:{chan ch=tech}Braun Tech: Any RegEx guru out there that can help parse this line "[176 Triton T+2] T:0 SomeName the Bandit for the Level", the Remort, the Tier, and the name? So far I think I have "^\[(.*?) " for the level... But I am not exactly how to proceed from here. Also sometimes the remort shows something like Thi insted of T+2 which means remort 1. I'm just trying to wrap my head around it. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: one sec I think I have it already written somewhere T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: hmm nevermind.. lemme try writing something for you real quick T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: what all do you want to capture (i.e. care about?) T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: because you can make it really complex or really simple depending T3/r7/2021-12-29.txt.gz:{chan ch=tech}Braun Tech: Level, remort (if possible), tier, and then the name. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: kk T3/r7/2021-12-29.txt.gz:{chan ch=tech}Braun Tech: I might have to write a bit of code to interpret what the remort is... so I guess just those 3 characters where remort generally shows. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: where are you getting this from? tier isn't shown T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: from like Wang? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Braun Tech: who 186 200 +nosh +tier T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: oh interesting.. what is +nosh? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: not familiar with adding data to it.. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Braun Tech: it's not important in that level range but I think it hides SH titles. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: oh cool didn't see that in helpfile T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: shows player race + class instead of superhero title apparently T3/r7/2021-12-29.txt.gz:{chan ch=tech}Non-Binary Starky Tech: if you're including 200 that's still relevant hero titles show at 200 as well T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: kk lemme cook somethin up T3/r7/2021-12-29.txt.gz:{chan ch=tech}Tech: Braun nods at Doge Water Yajan. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: I assume you don't have pretitles on? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Braun Tech: I'm just realizing that we would need to exclude (WANTED) (OPK) (Linkdead) [Advisor] and [Helper] from the name too... Wow... things get complex fast. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Braun Tech: I actually am not sure. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: pretitles would make things very difficult T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: the rest isn't so bad T3/r7/2021-12-29.txt.gz:{chan ch=tech}Scars Tech: and (HARDCORE) T3/r7/2021-12-29.txt.gz:{chan ch=tech}Scars Tech: and Raider/Defender flags T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: because ( [ ] ) are all illegal in player name you can probably skip all that crap T3/r7/2021-12-29.txt.gz:{chan ch=tech}Braun Tech: And I have pretitles off. nopretitle command T3/r7/2021-12-29.txt.gz:{chan ch=tech}Luc Tech: isn't there also a traitor flag? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Scars Tech: i had [] in my pretitle for years T3/r7/2021-12-29.txt.gz:{chan ch=tech}Elfo Tech: also a chocolate-filled flag no? :) T3/r7/2021-12-29.txt.gz:{chan ch=tech}Non-Binary Starky Tech: and raider T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: AFK format is slightly different but otherwise shouldn't be an issue skip all the flags T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: if you have pretitles on (which you don't) it's nearly impossible to know T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: well, that was painless. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Modra Tech: You made it back! T3/r7/2021-12-29.txt.gz:{chan ch=tech}Luc Tech: wb T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: yep, new m.2 installed T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: sorry Styx, I actually forgot about you already T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: but now I remember you T3/r7/2021-12-29.txt.gz:{chan ch=tech}Modra Tech: Nice! m.2 ftw. T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: Had like 4 hdds of variable sizes and got tired of having multiples so ripped them all out and put in 1 m.2 2tb T3/r7/2021-12-29.txt.gz:{chan ch=tech}The River Styx Tech: then 1 external 5tb for data storage. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: what does the one-shot checkbox do in Mush? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: lol seems to delete the trigger after it fires once?? T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: you got to be kidding me.. T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: well Braun I almost had it finished.. and then it went poof T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: got it T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: here: ^\[([1-9]+).*([CHMRTW])\+([1-6])\] T\:([0-9]).*( [A-Za-z]+ ).*$ T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: that worked with my (very fake and impossible) test string of: [191 H-Grif T+5] T:9 *AFK* (OPK) [Advisor] (HARDCORE) Sparhawk <-)Quiet Mode(-> <-)lights(->[C][Q] T3/r7/2021-12-29.txt.gz:{chan ch=tech}Doge Water Yajan Tech: might be some holes in it, but should be 95% of the way T3/r7/2021-12-29.txt.gz:{chan ch=tech}Braun Tech: hahaha! Perfect! Now I shall rule the world! T3/r7/2021-12-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2021-12-30.txt.gz:{chan ch=tech}Braun Tech: Anyone use the prs plugin by Endymion? Anyone know of a way to remove spells/skills from the "additional" variable list or know how to edit the contents of a variable stored within a plugin? T3/r7/2021-12-30.txt.gz:{chan ch=tech}Gigel Tech: i think with prs add # , if you add it again, it will be removed T3/r7/2021-12-30.txt.gz:{chan ch=tech}Braun Tech: Oh my goodness. I'm an idiot. Thank you so much! T3/r7/2021-12-30.txt.gz:{chan ch=tech}Gigel Tech: it is not intuitive, but I've looked at the code T3/r7/2021-12-30.txt.gz:{chan ch=tech}Methyl Tech: does anyone use any hardware authenticators like the mooltipass? looking to drop lastpass and looking for thoughts T3/r7/2021-12-30.txt.gz:{chan ch=tech}Throbbing Redwood Tech: try Leeloo Dallas Mooltipass T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: anyone got timing turned on with their map? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Deswrath Tech: anyone using blowtorch able to use the gquest plugin? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Hellion Tech: i just installed basts plugins but now "look" does nothing in this window .. everything is diff :( help im old and change is hard T3/r7/2021-12-31.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: change is hard unless it's a paper bill. Then it's soft and cannot hurt you! T3/r7/2021-12-31.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: But Bast's plugins should not interfere with 'look'. T3/r7/2021-12-31.txt.gz:{chan ch=tech}Hellion Tech: something is making my main (big window in mush default) only show scan results, not con or look T3/r7/2021-12-31.txt.gz:{chan ch=tech}Hellion Tech: ok i disabled some stuff and now i can see what i was missing again T3/r7/2021-12-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2021-12-31.txt.gz:{chan ch=tech}Turie Tech: Fiendish is awesome at it!!! T3/r7/2021-12-31.txt.gz:{chan ch=tech}Zimith Tech: as a new player your muschclient package is amazing, thank you Fiendish T3/r7/2021-12-31.txt.gz:{chan ch=tech}Tech: Amarufox is agreeing with that Zimith person again... T3/r7/2021-12-31.txt.gz:{chan ch=tech}Turie Tech: Agreed!!! T3/r7/2021-12-31.txt.gz:{chan ch=tech}Luc Tech: All hail Fiendish!!! T3/r7/2021-12-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: these are not questions T3/r7/2021-12-31.txt.gz:{chan ch=tech}Zimith Tech: how did you become some awesome? T3/r7/2021-12-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: genetics and upbringing T3/r7/2021-12-31.txt.gz:{chan ch=tech}Luc Tech: someone was looking for you the other day, wish I could remember who, morgot, mordra? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Luc Tech: for tech related issues T3/r7/2021-12-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oh well T3/r7/2021-12-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if I made an alias that resets the list of loaded plugins to only the default ones, what should I make that alias? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Fatal FrostBite Tech: defaultMUSH T3/r7/2021-12-31.txt.gz:{chan ch=tech}Tech: Fatal FrostBite enthusiastically high-fives IAC DO Fiendish! T3/r7/2021-12-31.txt.gz:{chan ch=tech}Methyl Tech: remush T3/r7/2021-12-31.txt.gz:{chan ch=tech}Brobeo Tech: FiendishKnowsBestAndIShouldntHaveMessedWithTheClient T3/r7/2021-12-31.txt.gz:{chan ch=tech}Tech: Fatal FrostBite flashes a mischievous grin at Brobeo. Hmm. is it time to run and hide? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Braun Tech: pluginsdefault T3/r7/2021-12-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ok and what about a command that adds the default plugins but doesn't remove any? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Brobeo Tech: reenabledefaults T3/r7/2021-12-31.txt.gz:{chan ch=tech}Braun Tech: pluginsdefault noremove T3/r7/2021-12-31.txt.gz:{chan ch=tech}Braun Tech: pluginsdefault nopurge T3/r7/2021-12-31.txt.gz:{chan ch=tech}Gaballon Tech: anyone use the dinv plugin on multiple computers? i dont know where it stores all your item data T3/r7/2021-12-31.txt.gz:{chan ch=tech}Doge Water Yajan Tech: state files T3/r7/2021-12-31.txt.gz:{chan ch=tech}Doge Water Yajan Tech: worlds/plugins/state T3/r7/2021-12-31.txt.gz:{chan ch=tech}Doge Water Yajan Tech: there's a dinv folder T3/r7/2021-12-31.txt.gz:{chan ch=tech}Doge Water Yajan Tech: the stuff outside the folder (in mine at least).. I'm not sure what it's for T3/r7/2021-12-31.txt.gz:{chan ch=tech}Gaballon Tech: ok, i saw that folder with a ton of weird files in it T3/r7/2021-12-31.txt.gz:{chan ch=tech}Gaballon Tech: ok, i saw that folder with a ton of weird files in itgc T3/r7/2021-12-31.txt.gz:{chan ch=tech}Gaballon Tech: mis T3/r7/2021-12-31.txt.gz:{chan ch=tech}Aberrant Tech: anyone a neovim expert? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Braun Tech: I know what it is and I've played with it for a couple months... By no means an expert. Very much a novice. T3/r7/2021-12-31.txt.gz:{chan ch=tech}Aberrant Tech: I need an expert. :( T3/r7/2021-12-31.txt.gz:{chan ch=tech}Luc Tech: anyone know the command to get all items of a specific item slot from a bag using dinv? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Scrooge Mc Ruckus Tech: anyone have any idea why snd would work fine for quests but not be recognizing or mismatching info from cps and gqs all of a sudden? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Dogwater Welding Tech: is it for specific areas or just in general? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Scrooge Mc Ruckus Tech: in general T3/r7/2021-12-31.txt.gz:{chan ch=tech}Brobeo Tech: try xset index areas T3/r7/2021-12-31.txt.gz:{chan ch=tech}Scrooge Mc Ruckus Tech: tried index areas already :( T3/r7/2021-12-31.txt.gz:{chan ch=tech}Katsumoto Tech: Try to manually complete the CP or quit out of the global quest. That usually gets corrects it for me. T3/r7/2021-12-31.txt.gz:{chan ch=tech}Katsumoto Tech: Every so often, I'll have my entire list be red for no reason. Manually completing the CP will correct it. T3/r7/2021-12-31.txt.gz:{chan ch=tech}Scrooge Mc Ruckus Tech: it's usually a one-off for you, Kats T3/r7/2021-12-31.txt.gz:{chan ch=tech}Scrooge Mc Ruckus Tech: er ? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Katsumoto Tech: Correct, once every 80-100 campaigns maybe? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Scrooge Mc Ruckus Tech: ah alright..I will give that a shot :) T3/r7/2021-12-31.txt.gz:{chan ch=tech}Scrooge Mc Ruckus Tech: thanks! T3/r7/2021-12-31.txt.gz:{chan ch=tech}Brobeo Tech: snd reload is always worth a shot if something isn't working T3/r7/2021-12-31.txt.gz:{chan ch=tech}Katsumoto Tech: Usually happens when I'm mid-cp, then join a global quest....and when I quit the global quest mid-way, I return to a red-colored CP list. T3/r7/2021-12-31.txt.gz:{chan ch=tech}Scrooge Mc Ruckus Tech: nod i did try a reload too going to finish this cp and see if it resolves T3/r7/2021-12-31.txt.gz:{chan ch=tech}Scrooge Mc Ruckus Tech: well, finishing the cp seems to have resolved my issue...thanks to Katsumoto :) T3/r7/2021-12-31.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: What areas were mismatched? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Scrooge Mc Ruckus Tech: the first item in a cp list were often mismatched...the rest of the cps rooms/mobs were just unkown T3/r7/2021-12-31.txt.gz:{chan ch=tech}Scrooge Mc Ruckus Tech: finishing the cp manually and starting another seems to have resolved things T3/r7/2021-12-31.txt.gz:{chan ch=tech}(Aleister) Crowley Tech: Weird. hmm. T3/r7/2021-12-31.txt.gz:{chan ch=tech}Scrooge Mc Ruckus Tech: I had this happen to be once before on a gq too T3/r7/2021-12-31.txt.gz:{chan ch=tech}Scrooge Mc Ruckus Tech: questing was fine though for some reason T3/r7/2021-12-31.txt.gz:{chan ch=tech}Tech: (Aleister) Crowley nods. T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: can anyone turn on their mapper timing and let me know how long their average time to draw is after like 500-1000 rooms? T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: payin 50mil to anyone who wants to turn their timing on in their mapper and let me know their average draw times T3/r7/2021-12-31.txt.gz:{chan ch=tech}Brobeo Tech: I'm willing to help, but I don't know how. T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: do you know how to edit the xml files? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Brobeo Tech: yes T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: just open up the aard_gmcp_mapper.xml, and near the very top theres something that says T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: just change it to true and save and reload the mapper T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: you'll see debug messages. just run around and play as usual and when you get to like 500 rooms or something let me know the average draw time if you can T3/r7/2021-12-31.txt.gz:{chan ch=tech}Brobeo Tech: will do T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: did you get it sorted brobeo? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Brobeo Tech: Total times map drawn = 513, average time to draw = 0.004 seconds T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: where were you walking around at? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Brobeo Tech: a bunch of 180 areas, I was doing campaigns T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: oh, were you doing like runto and such? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Brobeo Tech: I'm on a ryzen 5 5600H T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: im on a ryzen 5900HX T3/r7/2021-12-31.txt.gz:{chan ch=tech}Brobeo Tech: yes T3/r7/2021-12-31.txt.gz:{chan ch=tech}Rakiso Tech: im on a toaster T3/r7/2021-12-31.txt.gz:{chan ch=tech}Heracles Tech: I'm on a russet potato T3/r7/2021-12-31.txt.gz:{chan ch=tech}Brobeo Tech: It started around 0.006 and trended down. It might be caching stuff. T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: oh yeah and how big is your mapper window T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: that effects draw times massively i guess. is it the standard-ish size? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Brobeo Tech: I think normal T3/r7/2021-12-31.txt.gz:{chan ch=tech}Brobeo Tech: let me reset and check a few draws T3/r7/2021-12-31.txt.gz:{chan ch=tech}A Calm Stormwind Tech: ive noticed myself losing connection recently, what issue are you addressing khadaji? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Brobeo Tech: It was already default size T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: im comparing the time of the graphical mapper i made vs the non graphical mapper: they seem to be identical T3/r7/2021-12-31.txt.gz:{chan ch=tech}A Calm Stormwind Tech: ahhh T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: anyone wanna try out a few of my themes and let me know how they go? they're amazingly nice T3/r7/2021-12-31.txt.gz:{chan ch=tech}Doge Water Yajan Tech: only if it steals my data and signs me up for MLM companies T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: it doesn't, sadly T3/r7/2021-12-31.txt.gz:{chan ch=tech}Tech: Doge Water Yajan frowns. T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: its just identical to the stock themes with altered color codes and such T3/r7/2021-12-31.txt.gz:{chan ch=tech}Doge Water Yajan Tech: maybe something to consider for v 2.0 T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: but they look very clean and nice T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: is there a reason why i'd need to type enter twice for commands to work? T3/r7/2021-12-31.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: no T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: how do i get that ascii map to stop appearing on every room? T3/r7/2021-12-31.txt.gz:{chan ch=tech}Sheriff Shindo Tech: turn the tags back on so that Fiendish's stuffs gobble it up T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: they ARe on though T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: oh i know why, because the bigmap plugin exploded T3/r7/2021-12-31.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: wait, nah, its still gone. hmmm