T3/r7/2019-06-01.txt.gz:{chan ch=tech}XXX Video Tape Tech: in dinv there is a line you can add to a priority to ignore a worn slot, can someone remind me what it is? T3/r7/2019-06-01.txt.gz:{chan ch=tech}Rastlin Tech: dinv ignore [on | off | list] T3/r7/2019-06-01.txt.gz:{chan ch=tech}Rastlin Tech: or dinv forget T3/r7/2019-06-01.txt.gz:{chan ch=tech}XXX Video Tape Tech: no no, it goes in the priority to ignore a worn slot when updating eq T3/r7/2019-06-01.txt.gz:{chan ch=tech}XXX Video Tape Tech: sorry, should have been more specific T3/r7/2019-06-01.txt.gz:{chan ch=tech}Durel Tech: Use "~[location] 1" in the priority. For example, "~shield 1" T3/r7/2019-06-01.txt.gz:{chan ch=tech}XXX Video Tape Tech: thats it, thanks T3/r7/2019-06-01.txt.gz:{chan ch=tech}Rastlin Tech: how can i make soundpack make a sound on the word target, I have the scan mark the person i want with "(TARGET) A Villager" and want it to also make a sound, is that possible? T3/r7/2019-06-01.txt.gz:{chan ch=tech}Sheriff Shindo Tech: why not do both at the samw time? T3/r7/2019-06-01.txt.gz:{chan ch=tech}Rastlin Tech: i would if i knew how to make the sound :D T3/r7/2019-06-01.txt.gz:{chan ch=tech}Sheriff Shindo Tech: bottom right is a bunch of buttons, iirc, been a while, you just add a sound to play T3/r7/2019-06-01.txt.gz:{chan ch=tech}Rastlin Tech: in script... plugin already created, so how to do it with code T3/r7/2019-06-01.txt.gz:{chan ch=tech}Sheriff Shindo Tech: well then peek at the sound pack plugin code, it comes with every release iirc T3/r7/2019-06-01.txt.gz:{chan ch=tech}Sheriff Shindo Tech: or... check the mushclient forums and or mushclient help page T3/r7/2019-06-01.txt.gz:{chan ch=tech}Tech: easy way to see the "code" way of what checkboxes and stuff do in a trigger is to make a trigger like you want, then select it in the trigger list and select copy T3/r7/2019-06-01.txt.gz:{chan ch=tech}Tech: that'll copy to your clipboard the xml which would be the same as you'd want in the plugin's file T3/r7/2019-06-01.txt.gz:{chan ch=tech}Sheriff Shindo Tech: that is also a good way to learn, but back up first because if you export incorrectly everything goes in to your plugin T3/r7/2019-06-01.txt.gz:{chan ch=tech}Tech: not talking about exporting or selecting plugin wizard, I just mean to see how to make his existing plugin trigger make a sound T3/r7/2019-06-01.txt.gz:{chan ch=tech}Sheriff Shindo Tech: oh, wait a different approach, interesting T3/r7/2019-06-01.txt.gz:{chan ch=tech}Sheriff Shindo Tech: yes, do the export and see how it does it T3/r7/2019-06-01.txt.gz:{chan ch=tech}Rastlin Tech: thanks will do so after this GQ T3/r7/2019-06-01.txt.gz:{chan ch=tech}Tech: if you want to update soundpack itself to handle that case, then you'd copy one of the existing triggers from the trigger section, have it send something like TriggerEvent("target_sighted")...and add a section to the "local soundevents" table ["target_sighted"] { defaultwav = "target_sighted.wav", volume = "100", panning = "0", description = "Target sighted on scan" }...and create a sounnd file with that name in the mushclient\sounds folder T3/r7/2019-06-01.txt.gz:{chan ch=tech}Rastlin Tech: ok done, int rigger tyou only need to specify the sound and it plays, sound="C:\MUSHMain\sounds\global_quest.wav" T3/r7/2019-06-01.txt.gz:{chan ch=tech}Rastlin Tech: in lua is Sound(GetInfo(66) .. "\\sounds\\global_quest.wav") T3/r7/2019-06-01.txt.gz:{chan ch=tech}Rastlin Tech: just in case anyone needs in the future T3/r7/2019-06-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2019-06-01.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oof. anyone who edits one of my plugins will be sad if that plugin updates T3/r7/2019-06-02.txt.gz:{chan ch=tech}Orokyn Tech: How can I force dinv to wear specific items over it wears out of the priority? T3/r7/2019-06-02.txt.gz:{chan ch=tech}Orokyn Tech: I tried to edit the priority, but it kinda didn't work anymore after a while. T3/r7/2019-06-02.txt.gz:{chan ch=tech}SoVeryVery VeryLongName Tech: are all input/output of the mud equal? i mean, resource wise T3/r7/2019-06-02.txt.gz:{chan ch=tech}Sheriff Shindo Tech: equal how? T3/r7/2019-06-02.txt.gz:{chan ch=tech}SoVeryVery VeryLongName Tech: like, priorities.. could some commands have less of that so, theres a tiny lag allowed to not mess up with all the more important stuff? T3/r7/2019-06-02.txt.gz:{chan ch=tech}SoVeryVery VeryLongName Tech: eh. i explain badly T3/r7/2019-06-02.txt.gz:{chan ch=tech}Trachx Tech: there are command queues T3/r7/2019-06-02.txt.gz:{chan ch=tech}Trachx Tech: for example fight - backstab is instant execution , while kick goes to fight queue T3/r7/2019-06-02.txt.gz:{chan ch=tech}Sheriff Shindo Tech: and some actions have more "lag" than others T3/r7/2019-06-02.txt.gz:{chan ch=tech}SoVeryVery VeryLongName Tech: i mean more what the cpu has to do T3/r7/2019-06-02.txt.gz:{chan ch=tech}Sheriff Shindo Tech: all very similar on the mudside. the input gets broken down by first word, sent to the relevant function and acted on T3/r7/2019-06-02.txt.gz:{chan ch=tech}SoVeryVery VeryLongName Tech: and thinking maybe loosen up the channels/friends/ignore calls. to allow more of that without problems T3/r7/2019-06-02.txt.gz:{chan ch=tech}SoVeryVery VeryLongName Tech: but im bad with technical talk.. just curious T3/r7/2019-06-02.txt.gz:{chan ch=tech}Sheriff Shindo Tech: in theory the mud could be rewritten for multiple processors but that isn't as easynas it sounds T3/r7/2019-06-02.txt.gz:{chan ch=tech}SoVeryVery VeryLongName Tech: i know. never is. T3/r7/2019-06-02.txt.gz:{chan ch=tech}Luc Tech: what was the command to look up help files in the spellup plugin? T3/r7/2019-06-02.txt.gz:{chan ch=tech}Sheriff Shindo Tech: bsp help T3/r7/2019-06-02.txt.gz:{chan ch=tech}Luc Tech: thank you T3/r7/2019-06-02.txt.gz:{chan ch=tech}Luc Tech: what's the command to reset your gui? T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2019-06-02.txt.gz:{chan ch=tech}Luc Tech: using mushclient, clicked on snd bar and it jumped outside my ability to grab it T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: my mushclient loves to crash while doing the initial load. is this something thats being looked at or has been fixed? T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: khadaji what version T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Luc: `aard layout help` or just `aard help` T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: im using 2027 T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oh you said snd T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: haha can't help with snd. blame the person who made it so terrible. T3/r7/2019-06-02.txt.gz:{chan ch=tech}Luc Tech: yeah, it was just a simple command to reset the gui T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Khadaji: 2036 fixed one common source of startup crash T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: ooo!!! thats epic. T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: no promises T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: is it safe to upgrade now? T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: what do you mean T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: i think you said for a while it wasnt a good idea T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I don't think I've ever said that T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: right after i did my last upgrade T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: like right after 2027 you said there were some new issues T3/r7/2019-06-02.txt.gz:{chan ch=tech}Tech: IAC DO Fiendish shrugs helplessly. T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: well if you wait a few minutes there will be a newer one, but other than that... T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: ill wait :D T3/r7/2019-06-02.txt.gz:{chan ch=tech}Real ninja Starling Tech: fiendish what version is the new one and what buffs does it have? T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I don't know what you're asking T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: roflmao T3/r7/2019-06-02.txt.gz:{chan ch=tech}Real ninja Starling Tech: does the egr cooler on the new version work? T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I still don't know what you're asking T3/r7/2019-06-02.txt.gz:{chan ch=tech}Real ninja Starling Tech: did you put a new turbo on it? T3/r7/2019-06-02.txt.gz:{chan ch=tech}Real ninja Starling Tech: do you have update notes yet? T3/r7/2019-06-02.txt.gz:{chan ch=tech}Luc Tech: how do I update my mushclient to the latest version? and will that screw everything up? T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: it wont screw anything T3/r7/2019-06-02.txt.gz:{chan ch=tech}Luc Tech: fiendish? T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: wait a minute luc. T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'm building a new version. no sense in downloading something that I'm about to replace T3/r7/2019-06-02.txt.gz:{chan ch=tech}Tinypotato Tech: other than plugins/lua code etc, how does the Aard MUSHclient distribution differ from the official Mushclient release? T3/r7/2019-06-02.txt.gz:{chan ch=tech}Luc Tech: okay, the world and everything in it hasn't detonated, positive sign T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Tinypotato: different executable, different Lua, different settings T3/r7/2019-06-02.txt.gz:{chan ch=tech}Tinypotato Tech: interesting, is the reason for that customizations that you need to make to the executable to support aard-specific stuff? do those changes eventually get upstreamed back to the main branch? T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yes T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: r2040 is now up T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: does it have egr cooling now? what are the buffs T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you want me to put you on ignore? T3/r7/2019-06-02.txt.gz:{chan ch=tech}Tech: IAC DO Fiendish ruffles [DESPAIR] Khadaji's hair playfully. T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: lol sorry im just havin a laugh T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Luc: finger fiendish, download installer, run installer, point at existing mushclient folder T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: (if you have one) T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: maybe make a backup of your mushclient folder first for safekeeping T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Tinypotato, for instance: https://github.com/nickgammon/mushclient/pull/48 T3/r7/2019-06-02.txt.gz:{chan ch=tech}Tinypotato Tech: thanks! that makes sense. not being able to release on your own time is probably a huge pain T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yeah. Gammon let's lots of changes pile up before he makes a release. this is the list of the changes he's made that he has not released yet as an official installer. http://www.gammon.com.au/scripts/showrelnote.php?version=5.07&productid=0 T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I monitor what he does and use the latest development build so that we don't get stuck T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it means we can use a feature or bug fix as soon as it's made T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: r2040 has those plus the PR I also showed that hasn't been merged yet, because I'm impatient T3/r7/2019-06-02.txt.gz:{chan ch=tech}Tinypotato Tech: the client ecosystem has definitely come a long way since the days of zmud T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: maybe T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if zmud hadn't been abandoned, I might still develop for it T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but I like Nick a lot more than Zugg. Zugg was trying to be a business. Nick does things because he thinks they're neat. T3/r7/2019-06-02.txt.gz:{chan ch=tech}Tech: [DESPAIR] Khadaji crosses her arms and nods slowly and sagely to a pit fiend. T3/r7/2019-06-02.txt.gz:{chan ch=tech}Tech: [DESPAIR] Khadaji crosses her arms and nods slowly and sagely to IAC DO Fiendish. T3/r7/2019-06-02.txt.gz:{chan ch=tech}KnightLord Throxx Tech: version r2040 applied successfully T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: khadaji are you going to test to see if it crashes? T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: ill definitely download and try to crash over time T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: i removed a bunch of plugins that slowed down the startup because that seemed like a huge reason to crash T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: having lots of plugins doesn't cause a crash. it just means you have more code running that might cause a crash. T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: typically if you press any key at startup and its not an instant startup, it will crash immediately T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I don't know what you mean by "instant". Mine never starts up instantly because wine on mac is kinda slow. but I can press keys all through startup and it doesn't crash for me T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: instant is less than 3-5 seconds T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: ive found when it starts getting into the 10+ seconds to load and you press any key, it crashes T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mine always takes that long because of wine T3/r7/2019-06-02.txt.gz:{chan ch=tech}[DESPAIR] Khadaji Tech: rip.... T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: but it never crashes at startup T3/r7/2019-06-02.txt.gz:{chan ch=tech}Real ninja Starling Tech: mush 5.07 is out now? T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: no T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: and also not relevant T3/r7/2019-06-02.txt.gz:{chan ch=tech}KnightLord Throxx Tech: how doe you change the prompt default stat in dinv? T3/r7/2019-06-02.txt.gz:{chan ch=tech}KnightLord Throxx Tech: state T3/r7/2019-06-02.txt.gz:{chan ch=tech}Durel Tech: just set your prompt like normal and hopefully dinv won't screw it up now :P T3/r7/2019-06-02.txt.gz:{chan ch=tech}KnightLord Throxx Tech: issue is it turns my prompt off when i first log in T3/r7/2019-06-02.txt.gz:{chan ch=tech}KnightLord Throxx Tech: DINV Prompt state does not match expected state: toggling prompt T3/r7/2019-06-02.txt.gz:{chan ch=tech}Durel Tech: try setting your prompt and then "dinv reload". Maybe that will force it to remember? T3/r7/2019-06-02.txt.gz:{chan ch=tech}Durel Tech: Yeah, it looks at your prompt state when it loads and then tries to go back to that if it doesn't know if the prompt should be on or off. A dinv reload should resolve that T3/r7/2019-06-02.txt.gz:{chan ch=tech}KnightLord Throxx Tech: ok, we shall see T3/r7/2019-06-02.txt.gz:{chan ch=tech}Negader Tech: i understand GetPluginVariable, but i'm looking for that which does the inverse, is there a command to get variable from your aliases/triggers into a plug in? T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you mean like a SetPluginVariable function? T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: is the plugin yours? T3/r7/2019-06-02.txt.gz:{chan ch=tech}Negader Tech: trying to have my plugin look up the variable that my trigger sets. T3/r7/2019-06-02.txt.gz:{chan ch=tech}Negader Tech: yes T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I don't quite understand what you're trying to do. can you explain it more? T3/r7/2019-06-02.txt.gz:{chan ch=tech}Endymion Tech: so GetVariable ? T3/r7/2019-06-02.txt.gz:{chan ch=tech}Negader Tech: so i set up a simple trigger. that picks a value and set it. then i have a plug in, that looks up the value that my trigger set up. T3/r7/2019-06-02.txt.gz:{chan ch=tech}Negader Tech: i tried GetVariable, but seems it doesn't pick it up from the plugin. or it supposed to? T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: no T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: plugins don't share with each other or with the world T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: that's by design T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: let me see if I understand... T3/r7/2019-06-02.txt.gz:{chan ch=tech}Endymion Tech: so he needs to do SetVariable in the trigger instead of variable = xx T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: not from the sound of it, no T3/r7/2019-06-02.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you have a trigger and a plugin. and your trigger does something that the plugin needs to see. why is the trigger not in the plugin? T3/r7/2019-06-02.txt.gz:{chan ch=tech}Negader Tech: yes i use SetVariable in the trigger to set the value T3/r7/2019-06-02.txt.gz:{chan ch=tech}Endymion Tech: If GetVariable is called from within a plugin, the variables for the current plugin are used, not the "global" MUSHclient variables. T3/r7/2019-06-02.txt.gz:{chan ch=tech}Negader Tech: it's in the project stage at this time. so making it pieces. so i guess i have to move the trigger into the plug in to make it work. i was wondering if there was a command of sort that does it. T3/r7/2019-06-02.txt.gz:{chan ch=tech}Endymion Tech: you should be able to use GetPluginVariable() with an empty string for pluginID T3/r7/2019-06-02.txt.gz:{chan ch=tech}Endymion Tech: If you are writing a plugin and want to find a "global" MUSHclient variable value, use an empty plugin ID, eg. T3/r7/2019-06-02.txt.gz:{chan ch=tech}Endymion Tech: world.Note world.GetPluginVariable ("", "target") T3/r7/2019-06-02.txt.gz:{chan ch=tech}Negader Tech: ok. will try that T3/r7/2019-06-02.txt.gz:{chan ch=tech}Negader Tech: thanks T3/r7/2019-06-02.txt.gz:{chan ch=tech}Negader Tech: that worked. thank you. T3/r7/2019-06-03.txt.gz:{chan ch=tech}Orokyn Tech: Is there any way I can setup DINV to prefer a shield instead of dual wield? T3/r7/2019-06-03.txt.gz:{chan ch=tech}Rockwell Tech: like this http://mudbin.tk/onivugiseg T3/r7/2019-06-03.txt.gz:{chan ch=tech}Rockwell Tech: no points in offhand dam, points in shield T3/r7/2019-06-03.txt.gz:{chan ch=tech}Orokyn Tech: Oh, let me check that out T3/r7/2019-06-03.txt.gz:{chan ch=tech}Society of Utopia Tech: I seem to have forgotten what S&D I am using - I am trying to find the hotkey to find a certain room in any area, and not just the one I am in. I can use xm but not xma :( T3/r7/2019-06-03.txt.gz:{chan ch=tech}Sheriff Shindo Tech: try extender help or ww help T3/r7/2019-06-03.txt.gz:{chan ch=tech}Sheriff Shindo Tech: or resort to mapper find T3/r7/2019-06-03.txt.gz:{chan ch=tech}Society of Utopia Tech: It was mapper find (mf) I was thinking off, thanks. T3/r7/2019-06-04.txt.gz:{chan ch=tech}SlyZoR the RetroGamer Tech: Normally when you insert wired headphones into a phone or tablet, it acts as an antenna, and you are able to listen to radio. Can Bluetooth headphones also act as an antenna? T3/r7/2019-06-04.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: I do not know, but I would go with no T3/r7/2019-06-04.txt.gz:{chan ch=tech}SlyZoR the RetroGamer Tech: OK T3/r7/2019-06-04.txt.gz:{chan ch=tech}Wraiven Tech: help.. i deleted a portal from the mapper list but my runtos are still using that portal, does anyone know why? T3/r7/2019-06-04.txt.gz:{chan ch=tech}Trachx Tech: alias T3/r7/2019-06-04.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: runto or xrt? T3/r7/2019-06-04.txt.gz:{chan ch=tech}Wraiven Tech: xrt T3/r7/2019-06-04.txt.gz:{chan ch=tech}Trachx Tech: xrt is just "mapper goto " T3/r7/2019-06-04.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: It's not T3/r7/2019-06-04.txt.gz:{chan ch=tech}Trachx Tech: it is T3/r7/2019-06-04.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: You do not supply id when using xrt T3/r7/2019-06-04.txt.gz:{chan ch=tech}Trachx Tech: xrt gets room id and then uses mapper to navigate T3/r7/2019-06-04.txt.gz:{chan ch=tech}Wraiven Tech: but if i deleted the portal from mapper it shouldn't be using it right T3/r7/2019-06-04.txt.gz:{chan ch=tech}Trachx Tech: move to recall and check: "mapper where " T3/r7/2019-06-04.txt.gz:{chan ch=tech}Sheriff Shindo Tech: are you sure it got deleted? T3/r7/2019-06-04.txt.gz:{chan ch=tech}Wraiven Tech: yes, it's not in my mapper portals list T3/r7/2019-06-04.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Which area is it T3/r7/2019-06-04.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Did you, by any chance, add a cexit on the path going there T3/r7/2019-06-04.txt.gz:{chan ch=tech}Wraiven Tech: well, i was trying to runto gnoll's quarry but somehow mapper made me get stuck in fens with the fens portal, so i deleted the fens portal T3/r7/2019-06-04.txt.gz:{chan ch=tech}Wraiven Tech: xrt is still using the portal T3/r7/2019-06-04.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: How did you delete the portal for fens T3/r7/2019-06-04.txt.gz:{chan ch=tech}Wraiven Tech: mapper delete # T3/r7/2019-06-04.txt.gz:{chan ch=tech}Wraiven Tech: and funnily enough, xrt fens doesn't use the portal but xrt quarry does T3/r7/2019-06-04.txt.gz:{chan ch=tech}Wraiven Tech: ohh okay i got it. my mistake. it was a keyword mixup. T3/r7/2019-06-05.txt.gz:{chan ch=tech}Failurette Noegel Tech: OK how do you turn off casting to random friggin tvs T3/r7/2019-06-05.txt.gz:{chan ch=tech}Failurette Noegel Tech: k thanks T3/r7/2019-06-05.txt.gz:{chan ch=tech}Rockwell Tech: Why would I be getting a message like luapath.lua: No such file or directory T3/r7/2019-06-05.txt.gz:{chan ch=tech}Rockwell Tech: I am trying to install a bast broadcast plugin as a dependency for another plugin T3/r7/2019-06-05.txt.gz:{chan ch=tech}Chupacabra Cheezburger Tech: The broadcast plugin probably has the luapath as a dependency and needs it installed as well T3/r7/2019-06-05.txt.gz:{chan ch=tech}Sheriff Shindo Tech: drop the whole bast directory in to your plugins directory, as subdir, then load what you need from that subdir T3/r7/2019-06-05.txt.gz:{chan ch=tech}Chupacabra Cheezburger Tech: What Shindo said T3/r7/2019-06-05.txt.gz:{chan ch=tech}Sheriff Shindo Tech: example c:/mc/worlds/plugins/bast T3/r7/2019-06-05.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Minecraft? T3/r7/2019-06-05.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Oh right mushclient T3/r7/2019-06-05.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: That's a thing, yes T3/r7/2019-06-05.txt.gz:{chan ch=tech}Sheriff Shindo Tech: I'm blowtorch I'm not spelling it all out T3/r7/2019-06-05.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: I'm on phone! :D T3/r7/2019-06-05.txt.gz:{chan ch=tech}Chupacabra Cheezburger Tech: My mud client is a redstone engine built in vanilla minecraft diplayed as a webpage onto maps T3/r7/2019-06-05.txt.gz:{chan ch=tech}Sheriff Shindo Tech: that would be an enormous, slow computer T3/r7/2019-06-05.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: But amazing, none the less T3/r7/2019-06-05.txt.gz:{chan ch=tech}Sheriff Shindo Tech: redstone lag is aweful T3/r7/2019-06-05.txt.gz:{chan ch=tech}Chupacabra Cheezburger Tech: What, you mean a 12 hertz clock rate isn't enough to handle MUD speeds? Ballocks T3/r7/2019-06-05.txt.gz:{chan ch=tech}Useful Hadar Tech: cheez thats why you use the opencomputers modpack, and use that to connect T3/r7/2019-06-05.txt.gz:{chan ch=tech}Useful Hadar Tech: on a side note ... i now must see if i can get that to work T3/r7/2019-06-05.txt.gz:{chan ch=tech}Rockwell Tech: thank you guys so much for the help - sorry i got distracted and missed it all T3/r7/2019-06-05.txt.gz:{chan ch=tech}Utarinsyis Tech: I need some help installing Nick's inventory manager. I was able to add the plug-in (and it's two dependancies) but I don't see the miniwindow. T3/r7/2019-06-05.txt.gz:{chan ch=tech}Endymion Tech: do you have INV tags on? T3/r7/2019-06-05.txt.gz:{chan ch=tech}Endymion Tech: I don't use it, just throwing a guess out there T3/r7/2019-06-05.txt.gz:{chan ch=tech}Sheriff Shindo Tech: did you look behind everything? T3/r7/2019-06-05.txt.gz:{chan ch=tech}Utarinsyis Tech: Yeah I've got INV tags on. Shindo, yep I checked to see if it was hiding. T3/r7/2019-06-05.txt.gz:{chan ch=tech}Utarinsyis Tech: I have tried toggling them on/off though with no change. T3/r7/2019-06-05.txt.gz:{chan ch=tech}Endymion Tech: what is the download link? T3/r7/2019-06-05.txt.gz:{chan ch=tech}Utarinsyis Tech: https://github.com/nickgammon/plugins/blob/master/aardwolf/Aardwolf_Inventory_v3.xml T3/r7/2019-06-05.txt.gz:{chan ch=tech}Endymion Tech: ok the problem is that it also requires the "Stats_Detector" plugin T3/r7/2019-06-05.txt.gz:{chan ch=tech}Endymion Tech: but it does not say that :p T3/r7/2019-06-05.txt.gz:{chan ch=tech}Endymion Tech: if stats are not detected then it does not draw the window T3/r7/2019-06-05.txt.gz:{chan ch=tech}Gaelehad Tech: in which case you may as well just use the bast version, which does all sorts of extra stuff T3/r7/2019-06-05.txt.gz:{chan ch=tech}Utarinsyis Tech: I tried the Bast version, but couldn't even get that one added due to an error T3/r7/2019-06-05.txt.gz:{chan ch=tech}Gaelehad Tech: or... a much better option is durels inventory plugin which doesn't do a miniwindow but does a WHOLE lot more T3/r7/2019-06-05.txt.gz:{chan ch=tech}Endymion Tech: it's hardly the same thing T3/r7/2019-06-05.txt.gz:{chan ch=tech}Utarinsyis Tech: Endymion I've got the miniwindow now! So that fixed my issue. Thanks. Still can't get bast to work right though lol T3/r7/2019-06-05.txt.gz:{chan ch=tech}Utarinsyis Tech: oh wait, I could get Bast installed, but I got a stream of error messages while it was running. T3/r7/2019-06-05.txt.gz:{chan ch=tech}Utarinsyis Tech: Oh! Looks like turning on Stats_detector fixed Bast. Yay! T3/r7/2019-06-05.txt.gz:{chan ch=tech}Gaelehad Tech: that is great to hear T3/r7/2019-06-05.txt.gz:{chan ch=tech}Endymion Tech: these old plugins and their dependencies T3/r7/2019-06-05.txt.gz:{chan ch=tech}Utarinsyis Tech: Thanks for the help all T3/r7/2019-06-05.txt.gz:{chan ch=tech}Tech: Endymion spits in utter disgust! T3/r7/2019-06-05.txt.gz:{chan ch=tech}Ruhamah Tech: my mushclient large area map suddenly zoomed out a lot and the rooms are really samll, how do I fix that? T3/r7/2019-06-05.txt.gz:{chan ch=tech}Iker Tech: mousewheel T3/r7/2019-06-05.txt.gz:{chan ch=tech}Endymion Tech: use mouse scroll or other version of that T3/r7/2019-06-05.txt.gz:{chan ch=tech}Negader Tech: put your mouse over it, do the wheel T3/r7/2019-06-05.txt.gz:{chan ch=tech}Ruhamah Tech: thanks, worked! T3/r7/2019-06-05.txt.gz:{chan ch=tech}Vilgan Tech: any good plugins for tracking leveling/pup speed? also, qp tracker nifty too T3/r7/2019-06-06.txt.gz:{chan ch=tech}Ruhamah Tech: not sure if this is the right channel, but there is a bad link on the emerald maps link on this page http://www.aardwolf.com/wiki/index.php/Area/TheGraveyard T3/r7/2019-06-06.txt.gz:{chan ch=tech}Ruhamah Tech: it goes to a spam domain T3/r7/2019-06-06.txt.gz:{chan ch=tech}Gilduran Tech: Is there a way to insert a line break into note text prior to posting it? T3/r7/2019-06-06.txt.gz:{chan ch=tech}Tech: Note ("this is some text\\r\\nthis is some text for the next line") T3/r7/2019-06-06.txt.gz:{chan ch=tech}Ruhamah Tech: does MUSHclient mapper have any functionality to search by room name? T3/r7/2019-06-06.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Yes T3/r7/2019-06-06.txt.gz:{chan ch=tech}StarsOscar Tech: yes T3/r7/2019-06-06.txt.gz:{chan ch=tech}Ruhamah Tech: got it, it's mapper area T3/r7/2019-06-06.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: I'm not on mush, but I think it's "mapper find corridor" T3/r7/2019-06-06.txt.gz:{chan ch=tech}Durel Tech: Use "mapper area [whatever]" to search for rooms in your current area and "mapper find [whatever]" to search for rooms in the entire mud T3/r7/2019-06-06.txt.gz:{chan ch=tech}Ruhamah Tech: man, I wish I learned mapper so long ao T3/r7/2019-06-06.txt.gz:{chan ch=tech}Ruhamah Tech: what is the backup file for MUSHclient mapper T3/r7/2019-06-06.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: It's what it sounds like T3/r7/2019-06-06.txt.gz:{chan ch=tech}Tearlach Tech: anyone use a mac? T3/r7/2019-06-06.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Used to T3/r7/2019-06-06.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: What's up #neverforget T3/r7/2019-06-06.txt.gz:{chan ch=tech}Tearlach Tech: i plugged a camera into my work mac vis USB but i cant find it anywhere. any ideas? T3/r7/2019-06-06.txt.gz:{chan ch=tech}Ruhamah Tech: I use Mac lol T3/r7/2019-06-06.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Did you check the back of the couch T3/r7/2019-06-06.txt.gz:{chan ch=tech}Tearlach Tech: i hate macs T3/r7/2019-06-06.txt.gz:{chan ch=tech}Tearlach Tech: glad i have to use one at work T3/r7/2019-06-06.txt.gz:{chan ch=tech}Tearlach Tech: it used to pop up under 'locations' in the finder bar but that was before the current os update T3/r7/2019-06-06.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Try photobooth T3/r7/2019-06-06.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: See if that app works with your camera T3/r7/2019-06-06.txt.gz:{chan ch=tech}Tearlach Tech: im using lightroom and i can see the photos and stuff but i cant actually delete them from the camera T3/r7/2019-06-06.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Might be a format issue with that sd card T3/r7/2019-06-06.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Macs doesn't support NTFS by default, iirc T3/r7/2019-06-06.txt.gz:{chan ch=tech}Tearlach Tech: this is the first time its not shown up in my finder locations. been using the same camera for a couple eyars T3/r7/2019-06-06.txt.gz:{chan ch=tech}Tearlach Tech: idk. ill just leave them there. i dont care to learn anymore about macs T3/r7/2019-06-06.txt.gz:{chan ch=tech}Gilduran Tech: Is there a way to include a line return with note text when pasting from a text document? T3/r7/2019-06-06.txt.gz:{chan ch=tech}Mr. Crowley Tech: You can copy the following blank line. T3/r7/2019-06-06.txt.gz:{chan ch=tech}Mr. Crowley Tech: What are you trying to do? T3/r7/2019-06-06.txt.gz:{chan ch=tech}Mr. Crowley Tech: i.e. what is your ultimate goal at this point? T3/r7/2019-06-06.txt.gz:{chan ch=tech}Mr. Crowley Tech: If it's regarding writing notes, I do have a Note Write Helper which automatically formats your notes for you. T3/r7/2019-06-06.txt.gz:{chan ch=tech}Mr. Crowley Tech: You type 'nnw new', and then you fill in the information, then you type your note without having to worry about where the line breaks happen. The only thing is, you have to either use @w on a blank line, or a space on a blank line, if you want to separate paragraphs. T3/r7/2019-06-06.txt.gz:{chan ch=tech}Gilduran Tech: I'm trying to put together a note using a text editor, so I maintain proper line lengths, and have multiple paragraphs I would like ot maintain T3/r7/2019-06-06.txt.gz:{chan ch=tech}Mr. Crowley Tech: Go to the link in my finger, and look for Note Write Helper. Then, you can either choose to write it all in the editor there, or you can write out the note in Notepad, making sure you use a space or @w as a blank line, and then copy/paste into the editor. T3/r7/2019-06-06.txt.gz:{chan ch=tech}Mr. Crowley Tech: It's a pretty nifty plugin, if I say so myself. Alternatively, you can use Aardwolf's note formatter located at: http://www.aardwolf.com/note.php if I remember correctly. T3/r7/2019-06-06.txt.gz:{chan ch=tech}Gilduran Tech: I'll check that out. Thank you. T3/r7/2019-06-06.txt.gz:{chan ch=tech}Mr. Crowley Tech: Sure thing. T3/r7/2019-06-06.txt.gz:{chan ch=tech}Shaelynne Tech: so i have 3 displays set up and when I open a new window in my middle display, sometimes the window extends into the 3rd screen. any ideas on how to make it so the new window doesn't automatically populate so big it extends into that 3rd display? every single time I have to resize it and this is omething I did all day long for my job (plus 3rd screen aard window...so even worse....) T3/r7/2019-06-06.txt.gz:{chan ch=tech}Shaelynne Tech: windows, using chrome T3/r7/2019-06-06.txt.gz:{chan ch=tech}Flagrant Tech: Do you have three seperate video outs? T3/r7/2019-06-06.txt.gz:{chan ch=tech}Flagrant Tech: what version of windows? T3/r7/2019-06-06.txt.gz:{chan ch=tech}Chupacabra Cheezburger Tech: Also, looked into it a LOT. If you find a solutioon, let me know, please T3/r7/2019-06-06.txt.gz:{chan ch=tech}Shaelynne Tech: uhm....no idea. i just know I had to get 2 different plugs to make it work =) T3/r7/2019-06-06.txt.gz:{chan ch=tech}Shaelynne Tech: windows 10 T3/r7/2019-06-06.txt.gz:{chan ch=tech}Chupacabra Cheezburger Tech: Windows barely handles 2 windows properly, 3 is madness T3/r7/2019-06-06.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: right-click on the right of your tab and choose "size", then click on your window, and it should keep it as the default size T3/r7/2019-06-06.txt.gz:{chan ch=tech}Chupacabra Cheezburger Tech: i want, no, NEED, a proper 3 window solutin for windows. T3/r7/2019-06-06.txt.gz:{chan ch=tech}Chupacabra Cheezburger Tech: Except, it doesn't T3/r7/2019-06-06.txt.gz:{chan ch=tech}Flagrant Tech: Has it ever worked for three seperate displays? or just 1+1 stretched over two? T3/r7/2019-06-06.txt.gz:{chan ch=tech}Chupacabra Cheezburger Tech: Especially if that monitor EVER goes to anything else T3/r7/2019-06-06.txt.gz:{chan ch=tech}Kazuma Tech: best solution.... move to linux T3/r7/2019-06-06.txt.gz:{chan ch=tech}Shaelynne Tech: so my compuer has a usb and then a hdmi out....so i bought two plugs for those and it works. you know not great, but it works T3/r7/2019-06-06.txt.gz:{chan ch=tech}Shaelynne Tech: trying that bam one second... T3/r7/2019-06-06.txt.gz:{chan ch=tech}Chupacabra Cheezburger Tech: I'm *nix(not 100% linux, some BSD, some OSX) for the most part. I use windows for gaming, but then as a result Twitch/OBS/Etc to stream, and I NEED all 3 monitors, windows then proceeds to shit the bed. T3/r7/2019-06-06.txt.gz:{chan ch=tech}Shaelynne Tech: no go bam T3/r7/2019-06-07.txt.gz:{chan ch=tech}Kazuma Tech: what script is this: https://i.imgur.com/qJK9Gmq.png T3/r7/2019-06-07.txt.gz:{chan ch=tech}SlyZoR the RetroGamer Tech: Is Lenovo a good PC brand? T3/r7/2019-06-07.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: Lenovo is .... I don't want to say substandard because any computer if it's upgraded properly can be a good one. T3/r7/2019-06-07.txt.gz:{chan ch=tech}Kazuma Tech: for me lenovo fits in the same box as hp, dell, compaq, etc... they are mass produced with the intent of making money regardless of quality... But like Zuloft said even a budget brand pc can be a decent pc if it has the right specs/upgrades T3/r7/2019-06-07.txt.gz:{chan ch=tech}Kazuma Tech: if you have a more specific question, like is this machines with such and such specs a good deal at x amoutn of $$ then that might be a better question T3/r7/2019-06-07.txt.gz:{chan ch=tech}Failurette Noegel Tech: anyone on blowtorch? T3/r7/2019-06-07.txt.gz:{chan ch=tech}Torkin Tech: id expansion T3/r7/2019-06-07.txt.gz:{chan ch=tech}SlyZoR the RetroGamer Tech: Can Ipad run blowtorch? T3/r7/2019-06-07.txt.gz:{chan ch=tech}KnightLord Throxx Tech: how does 1 point of DR compare to 1 point of aveage weapon damage? T3/r7/2019-06-08.txt.gz:{chan ch=tech}JonSnow Tech: how do I change the doportal alias now I have the portal location wish? T3/r7/2019-06-08.txt.gz:{chan ch=tech}Sheriff Shindo Tech: get portal bag, wear portal, enter, rem portal, put portal bag, wear all T3/r7/2019-06-08.txt.gz:{chan ch=tech}Sheriff Shindo Tech: that worka regardless of portal wish or not T3/r7/2019-06-08.txt.gz:{chan ch=tech}JonSnow Tech: thanks.. T3/r7/2019-06-08.txt.gz:{chan ch=tech}Sheriff Shindo Tech: if you weren't using an alias to do all that with the mapper portal command, you need to redo all your portals T3/r7/2019-06-08.txt.gz:{chan ch=tech}Orokyn Tech: What line do I add to dinv priority to force the wear of a shield/hold? T3/r7/2019-06-08.txt.gz:{chan ch=tech}Gaelehad Tech: how do i find info about mudbin, i think it is called? T3/r7/2019-06-08.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Have you tried google T3/r7/2019-06-08.txt.gz:{chan ch=tech}Gaelehad Tech: yes, i'm sure it was a mushclient plugin thingy, similar to all the other textbin stuffs T3/r7/2019-06-08.txt.gz:{chan ch=tech}Furen Tech: can anyone assist me with this issue? I am playing on a lenovo think pad and my f1 - f12 keys all have like sound, brightness, and such. Is there a way to override this so I can just press like f3 and cast something with out sound going up? I am using Mush T3/r7/2019-06-08.txt.gz:{chan ch=tech}# Burning Myth Tech: there must be some setting in lenovo section of windows control panel T3/r7/2019-06-08.txt.gz:{chan ch=tech}Gaelehad Tech: don't you have to use a blue function key to do sound etc, if so you can try the Accelerator mushclient function T3/r7/2019-06-08.txt.gz:{chan ch=tech}# Burning Myth Tech: usually f-keys do sound, etc when the "Fun" key is pressed T3/r7/2019-06-08.txt.gz:{chan ch=tech}Tech: Kazuma nods at # Burning Myth. T3/r7/2019-06-08.txt.gz:{chan ch=tech}Gaelehad Tech: with Accelerator you can also do Ctrl+F1 etc T3/r7/2019-06-08.txt.gz:{chan ch=tech}Krahven Tech: it sounds like you have your function key lock on T3/r7/2019-06-08.txt.gz:{chan ch=tech}Furen Tech: ok. Ill check settings T3/r7/2019-06-08.txt.gz:{chan ch=tech}Flagrant Tech: you have hotkeys enabled, you want function keys enabled T3/r7/2019-06-08.txt.gz:{chan ch=tech}Endymion Tech: try Fn + Esc to toggle fn lock T3/r7/2019-06-08.txt.gz:{chan ch=tech}Flagrant Tech: so right now as you have it, push FUNCTION plus f# to get the function you want T3/r7/2019-06-08.txt.gz:{chan ch=tech}Flagrant Tech: the setting to switch it is in your BIOS settings T3/r7/2019-06-08.txt.gz:{chan ch=tech}Flagrant Tech: or atleast it is on every lenovo i touch T3/r7/2019-06-08.txt.gz:{chan ch=tech}Gaelehad Tech: once you solve that problem, look at http://www.mushclient.com/scripts/doc.php?function=Accelerator as a much more versatile version of setting "macros" T3/r7/2019-06-08.txt.gz:{chan ch=tech}Flagrant Tech: BIOS>Configuration>Hotkey mode T3/r7/2019-06-08.txt.gz:{chan ch=tech}Flagrant Tech: https://support.lenovo.com/us/en/solutions/ht103044 T3/r7/2019-06-08.txt.gz:{chan ch=tech}Flagrant Tech: lenovo helpfile on it T3/r7/2019-06-08.txt.gz:{chan ch=tech}Furen Tech: Thank you everyone! T3/r7/2019-06-08.txt.gz:{chan ch=tech}Nevela Tech: how to disable the new split screen scrollback feature? T3/r7/2019-06-08.txt.gz:{chan ch=tech}Rockwell Tech: just remove the plugin T3/r7/2019-06-08.txt.gz:{chan ch=tech}Tech: Nevela nods. T3/r7/2019-06-08.txt.gz:{chan ch=tech}Nevela Tech: ty T3/r7/2019-06-08.txt.gz:{chan ch=tech}Kazuma Tech: In mush how would I capture this value into a variable (?:his|her|its) I have seen some example where it is done like this: (?\w+) which in that case \w+ is captured into the player variable. im just not sure the correct syntax to do the same thing with the regex switch case. T3/r7/2019-06-08.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: wow T3/r7/2019-06-08.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: way too many letters T3/r7/2019-06-08.txt.gz:{chan ch=tech}Tech: Kazuma starts to hear the faint sounds of a cricket chirping. T3/r7/2019-06-08.txt.gz:{chan ch=tech}Kazuma Tech: currently im doing my editing through the raw xml file for the plugin, I think its handled differently in the gui T3/r7/2019-06-08.txt.gz:{chan ch=tech}Kazuma Tech: mistell T3/r7/2019-06-08.txt.gz:{chan ch=tech}Kazuma Tech: also i solved my problem :) T3/r7/2019-06-08.txt.gz:{chan ch=tech}Call me Boyboy Tech: Hi .. Trying to write an alias in mushclient to get items out of a bag. When I specify an item with a 2-word name eg. 'assassin cape', I get error You don't see an assass cape'' T3/r7/2019-06-08.txt.gz:{chan ch=tech}Endymion Tech: us 'assassin cape' T3/r7/2019-06-08.txt.gz:{chan ch=tech}Call me Boyboy Tech: yes .. you will see the double '' at the end. Anyone knows what is wrong? T3/r7/2019-06-08.txt.gz:{chan ch=tech}Endymion Tech: get 'assassin cape' 2.bag T3/r7/2019-06-08.txt.gz:{chan ch=tech}Call me Boyboy Tech: that is what I did. In my mushclient, action is get %1 ardbag T3/r7/2019-06-08.txt.gz:{chan ch=tech}Call me Boyboy Tech: it works well with 1-word named items. It does not work with 2 or more worded items. T3/r7/2019-06-08.txt.gz:{chan ch=tech}Endymion Tech: what does the alias look like T3/r7/2019-06-08.txt.gz:{chan ch=tech}Call me Boyboy Tech: alias is bagid * T3/r7/2019-06-08.txt.gz:{chan ch=tech}Call me Boyboy Tech: I want to automatically get an item from the bag, identify it, and put it back in the bag. T3/r7/2019-06-08.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: You have an end goal? T3/r7/2019-06-08.txt.gz:{chan ch=tech}Endymion Tech: I think his end goal is to confuse and frustrate us T3/r7/2019-06-08.txt.gz:{chan ch=tech}Call me Boyboy Tech: the action after matching bagid * is to get %1 'aardwolf bag' T3/r7/2019-06-08.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: cause I have a plugin which gets info on your items and puts in spreadsheet. T3/r7/2019-06-08.txt.gz:{chan ch=tech}Call me Boyboy Tech: yeah .. thanks, but I don't need that. I just want to troubleshoot this error because I have other aliases which cough out the same error. T3/r7/2019-06-08.txt.gz:{chan ch=tech}Mr. Crowley Tech: By the way, thank you, Fiendish, for making those changes to the split screen bar. T3/r7/2019-06-08.txt.gz:{chan ch=tech}Mr. Crowley Tech: And thanks to Nick for adding the feature you requested so that you can seamlessly highlight from scrollback to current. T3/r7/2019-06-08.txt.gz:{chan ch=tech}Tech: IAC DO Fiendish smiles happily. T3/r7/2019-06-09.txt.gz:{chan ch=tech}Busta Rhymes Tech: hey, i have a miniwindow in my mushclient that is outside the range of interaction T3/r7/2019-06-09.txt.gz:{chan ch=tech}Busta Rhymes Tech: meaning the title bar is up and out of the usable window space, so i cant minimize it or move it T3/r7/2019-06-09.txt.gz:{chan ch=tech}Busta Rhymes Tech: is there a way i can access a state file or something to change its position? T3/r7/2019-06-09.txt.gz:{chan ch=tech}Busta Rhymes Tech: i tried restarting the client and all, as well as restore layouts but to no avail T3/r7/2019-06-09.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Try xset reset gui T3/r7/2019-06-09.txt.gz:{chan ch=tech}Busta Rhymes Tech: yes perfect! T3/r7/2019-06-09.txt.gz:{chan ch=tech}Tech: Busta Rhymes thanks A Nimwit Bamboo heartily. T3/r7/2019-06-09.txt.gz:{chan ch=tech}Tech: A Nimwit Bamboo tells Busta Rhymes he's very welcome. T3/r7/2019-06-09.txt.gz:{chan ch=tech}Failurette Noegel Tech: why do they sell TVs at 16:9 or 16:10 but movies are recording in such wide aspect ratios it makes a 65" TV look like a 40" T3/r7/2019-06-09.txt.gz:{chan ch=tech}Failurette Noegel Tech: I can but a hand at the top and bottom of my TV to cover the black bars it's silly T3/r7/2019-06-09.txt.gz:{chan ch=tech}Nevela Tech: does anyone know where is the auto-scroll setting in mushclient, I have removed the split screen scroll and since then no follow on the scroll buffer T3/r7/2019-06-09.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: and since then what? T3/r7/2019-06-09.txt.gz:{chan ch=tech}SlyZoR the RetroGamer Tech: Those small base bomb tube Bluetooth Speakers, can you keep them plugged into the wall socket permanently while using it? Unplugging it is such a hassle. T3/r7/2019-06-09.txt.gz:{chan ch=tech}(UNWANTED) Cheezburger Tech: Generally, yes, they allow for pass-through while charrging. It's going to be dependant on the model and such, but likely...yes T3/r7/2019-06-09.txt.gz:{chan ch=tech}(UNWANTED) Cheezburger Tech: Keep in mind though, that will severely impact that actual battery life of the device. T3/r7/2019-06-09.txt.gz:{chan ch=tech}SlyZoR the RetroGamer Tech: Gotcha, thank you. T3/r7/2019-06-09.txt.gz:{chan ch=tech}Lanreth Tech: hello, i pushed something and now it shows a map of every room i go to? can someone please tell me how to turn it off T3/r7/2019-06-09.txt.gz:{chan ch=tech}Endymion Tech: do you use the mini-map plugin? T3/r7/2019-06-09.txt.gz:{chan ch=tech}Lanreth Tech: ohh i figured it out finally T3/r7/2019-06-09.txt.gz:{chan ch=tech}Endymion Tech: well isn't that just peachy T3/r7/2019-06-09.txt.gz:{chan ch=tech}Lanreth Tech: thank you though T3/r7/2019-06-09.txt.gz:{chan ch=tech}Endymion Tech: you could help the community by stating what fixed your problem T3/r7/2019-06-09.txt.gz:{chan ch=tech}Lanreth Tech: ohh my bad, i am using the mush client and if you right click on the map it has an option to show the map in main output T3/r7/2019-06-09.txt.gz:{chan ch=tech}Endymion Tech: excellent, thank you T3/r7/2019-06-10.txt.gz:{chan ch=tech}Tinypotato Tech: I have mapper configured to use "dinv use portal" for some portals and noticed that when a portal is used to get to a room, the mapper output is suppressed. when I start at recall and mapper doesn't use the portal, then the output shows up. is there a way to stop dinv from suppressing this output? T3/r7/2019-06-10.txt.gz:{chan ch=tech}SlyZoR the RetroGamer Tech: Can you have both Bluetooth keyboard and Bluetooth Speakers connected to tablet at same time? T3/r7/2019-06-10.txt.gz:{chan ch=tech}Huko Tech: yuh T3/r7/2019-06-10.txt.gz:{chan ch=tech}Torkin Tech: yes T3/r7/2019-06-10.txt.gz:{chan ch=tech}SlyZoR the RetroGamer Tech: Nice. T3/r7/2019-06-10.txt.gz:{chan ch=tech}KnightLord Throxx Tech: is there a way to invosrt (Aarchaeology) Collection Satchel by Pamphlet # ? T3/r7/2019-06-10.txt.gz:{chan ch=tech}(UNWANTED) Cheezburger Tech: It's not impossible, but as far as I know, no; it doesn't currently exist. T3/r7/2019-06-10.txt.gz:{chan ch=tech}KnightLord Throxx Tech: cool, ty T3/r7/2019-06-10.txt.gz:{chan ch=tech}(UNWANTED) Cheezburger Tech: Pseudocode wise though, get all inventry item names, match on on the string with the number captured along with itemID. Then sort the map of (ItemNum => ItemId) by the keys, and get-put to achieve the "sort" T3/r7/2019-06-10.txt.gz:{chan ch=tech}NSFW Jexebelle Tech: CHEEZ! T3/r7/2019-06-10.txt.gz:{chan ch=tech}(UNWANTED) Cheezburger Tech: Yes'm? T3/r7/2019-06-10.txt.gz:{chan ch=tech}Tech: KnightLord Throxx hastily calls out "Three!" just before blowing (UNWANTED) Cheezburger to smithereens with the Holy Hand Grenade of Antioch. T3/r7/2019-06-10.txt.gz:{chan ch=tech}KnightLord Throxx Tech: anything special i should know, for using dinv backup restore, as it appears to have lost everything i am not wearing... T3/r7/2019-06-10.txt.gz:{chan ch=tech}Vilgan Tech: why not just refresh? T3/r7/2019-06-10.txt.gz:{chan ch=tech}KnightLord Throxx Tech: uhm, realy the ? should be, why are 689 pieces suddenly missing T3/r7/2019-06-10.txt.gz:{chan ch=tech}Durel Tech: You can see what backups you have for dinv with "dinv backup list" and restore one of them with "dinv backup restore [name]" T3/r7/2019-06-10.txt.gz:{chan ch=tech}Durel Tech: Perhaps you dropped all of your bags and need to refresh after picking them up T3/r7/2019-06-10.txt.gz:{chan ch=tech}Durel Tech: Once an item leaves your inventory, you need a dinv refresh for dinv to use the item again T3/r7/2019-06-10.txt.gz:{chan ch=tech}KnightLord Throxx Tech: ... oh, i did have 1 very rare thing happen to me.... T3/r7/2019-06-10.txt.gz:{chan ch=tech}KnightLord Throxx Tech: i died..... T3/r7/2019-06-10.txt.gz:{chan ch=tech}The Stoner Sinder Tech: then just dinv refresh all T3/r7/2019-06-10.txt.gz:{chan ch=tech}Durel Tech: If your items were removed from your inventory and placed on your corpse, then you'd need a "dinv refresh all" after you grab them again. It should be fast and pull info from a cache T3/r7/2019-06-10.txt.gz:{chan ch=tech}Vilgan Tech: durel: whenever I do a dinv set wear , it always puts my aard amulet in a bag. any way to make it leave it in inventory? T3/r7/2019-06-10.txt.gz:{chan ch=tech}(UNWANTED) Cheezburger Tech: Just a side note, death is a totally capturable instance and can be programmed foor. T3/r7/2019-06-10.txt.gz:{chan ch=tech}Durel Tech: By default, dinv remembers the last known container for each item and will put an item away if wearing a new set removes that item. You could "dinv forget [name]", then "dinv refresh", and not put the amulet into any container. Then dinv won't try to put it away since it wouldn't have a last-known container T3/r7/2019-06-10.txt.gz:{chan ch=tech}KnightLord Throxx Tech: Vilgan, i have an extra bag that stays in my vault, and i pull that out and put my invis ring, aard amulet in there where i do a refresh, it will remember and jsut leave in inventory. (i gagged the there is no "bagname" response) T3/r7/2019-06-10.txt.gz:{chan ch=tech}Mr. Crowley Tech: Technology is so stupid. Have fingerprint, face recogniztion, and PIN on my phone. When I restart the phone, it demands I put in my PIN number, which is the least secure option, in order to use biometrics. And can't turn PIN off, so if anyone gets access to my PIN (which for sure is NOT 8234), then it doesn't matter with biometrics. T3/r7/2019-06-10.txt.gz:{chan ch=tech}Endymion Tech: I assume the biometric is not foolproof enough to use for security, more of just convenience T3/r7/2019-06-10.txt.gz:{chan ch=tech}Endymion Tech: that 4 digit pin however, will keep a thief out for seconds T3/r7/2019-06-10.txt.gz:{chan ch=tech}Tech: Mr. Crowley snickers softly. T3/r7/2019-06-10.txt.gz:{chan ch=tech}Mr. Crowley Tech: I can increase the number of digits, admittedly. T3/r7/2019-06-10.txt.gz:{chan ch=tech}Mr. Crowley Tech: Anyway, time to go cook or something like that. Enjoy, all. T3/r7/2019-06-10.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Hi Crawley T3/r7/2019-06-10.txt.gz:{chan ch=tech}Ruhamah Tech: what do i do if my mushclient map is messed up? T3/r7/2019-06-10.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Messed up how T3/r7/2019-06-10.txt.gz:{chan ch=tech}Ruhamah Tech: it is either blank or frozen T3/r7/2019-06-10.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Tried restarting mush? T3/r7/2019-06-10.txt.gz:{chan ch=tech}Morose Milkweed Tech: you tried quitting mush and logging back in? T3/r7/2019-06-10.txt.gz:{chan ch=tech}Ruhamah Tech: already tried.. i think my map file/db might be corrupted? T3/r7/2019-06-10.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Are you awake T3/r7/2019-06-10.txt.gz:{chan ch=tech}Ruhamah Tech: yes i am T3/r7/2019-06-10.txt.gz:{chan ch=tech}Ruhamah Tech: my mushclient runs in a folder backedup by icloud drive... i think maybe the icloud syncing broke it T3/r7/2019-06-10.txt.gz:{chan ch=tech}Ruhamah Tech: any ideas how to get my bigmap working again? T3/r7/2019-06-10.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: There should be a plugin for bigmap. Press ctrl + shift + P, find that plugin, then restart it T3/r7/2019-06-10.txt.gz:{chan ch=tech}Luc Tech: where to find the dinv plugin? T3/r7/2019-06-10.txt.gz:{chan ch=tech}The Stoner Sinder Tech: finger durel T3/r7/2019-06-10.txt.gz:{chan ch=tech}Luc Tech: thanks T3/r7/2019-06-10.txt.gz:{chan ch=tech}Ruhamah Tech: okay, i deleted my corrupted map DB and restored from backup... works again T3/r7/2019-06-10.txt.gz:{chan ch=tech}Ruhamah Tech: okay, i deleted my corrupted map DB and restored from backup... works again T3/r7/2019-06-11.txt.gz:{chan ch=tech}Crimzon Tech: face distortions outline fhe face and adjust to the natural positioning making them look normal? T3/r7/2019-06-11.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: you'll never look normal T3/r7/2019-06-11.txt.gz:{chan ch=tech}Crimzon Tech: yea im messed up. but if a pretty gurl that is a grandma looking like jenjifer anistons super imposed face on a body. i would be upset T3/r7/2019-06-11.txt.gz:{chan ch=tech}Crimzon Tech: happened tonight. things were tolerable in the past. now they are? uncontrolable? T3/r7/2019-06-11.txt.gz:{chan ch=tech}Crimzon Tech: heres one. this is crazy T3/r7/2019-06-11.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: It could happen, Crimzon T3/r7/2019-06-11.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: There are streamers out there who uses apps to make them look more attractive to viewers T3/r7/2019-06-11.txt.gz:{chan ch=tech}Useful Hadar Tech: im already an attractive streamer, i dont need no apps T3/r7/2019-06-11.txt.gz:{chan ch=tech}Handy Fenix Tech: how do i get that to work irl T3/r7/2019-06-11.txt.gz:{chan ch=tech}Crimzon Tech: hard reset on phone to discover run graphics test an option. run graphics test shows a update with nocommand. then erasing data insues. T3/r7/2019-06-11.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Lose bodyfat, get more lean, clear yourself T3/r7/2019-06-11.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Clean even T3/r7/2019-06-11.txt.gz:{chan ch=tech}Crimzon Tech: did you say coffee T3/r7/2019-06-11.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: But clear works too, I guess T3/r7/2019-06-11.txt.gz:{chan ch=tech}Emperio Tech: so I use mudlet aardwofl GUI 1.1.0 on a Mac (3.20.1) and my stats and map don't show. Anyone able to help me? There is a clear area at the bottom of my screen but it is blank. The chat window (top right) and the status (bottom right, if I type campaign check, for example) work fine. Just not the minimap or my character display T3/r7/2019-06-11.txt.gz:{chan ch=tech}Tinypotato Tech: do you have statmon enabled? T3/r7/2019-06-11.txt.gz:{chan ch=tech}Emperio Tech: how do I do that? T3/r7/2019-06-11.txt.gz:{chan ch=tech}Tinypotato Tech: type statmon T3/r7/2019-06-11.txt.gz:{chan ch=tech}Emperio Tech: ahh T3/r7/2019-06-11.txt.gz:{chan ch=tech}Emperio Tech: ok everything now but the minimap T3/r7/2019-06-11.txt.gz:{chan ch=tech}Tinypotato Tech: also check that your map tags are enabled: type tags to see and tags map on to enable T3/r7/2019-06-11.txt.gz:{chan ch=tech}Emperio Tech: and as simple as that my client looks SOOOO much better T3/r7/2019-06-11.txt.gz:{chan ch=tech}Emperio Tech: thank you! T3/r7/2019-06-11.txt.gz:{chan ch=tech}Tinypotato Tech: 0h T3/r7/2019-06-11.txt.gz:{chan ch=tech}ShadowDragon Tech: LAAAAAAG T3/r7/2019-06-12.txt.gz:{chan ch=tech}Year 1337 RetroGamer Tech: Do IPS screen display colour better then TFT lcd screen? T3/r7/2019-06-12.txt.gz:{chan ch=tech}Dillon Tech: is it possible to do 2 if statements in 1 line? T3/r7/2019-06-12.txt.gz:{chan ch=tech}NSFW Jexebelle Tech: As in, in the MUD? T3/r7/2019-06-12.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: like a compound sentence? T3/r7/2019-06-12.txt.gz:{chan ch=tech}NSFW Jexebelle Tech: Yes, commands seperated with a semicolon will execute as two different commands, if that's what you're asking T3/r7/2019-06-12.txt.gz:{chan ch=tech}NSFW Jexebelle Tech: Or three, or howevermany T3/r7/2019-06-12.txt.gz:{chan ch=tech}Dillon Tech: in mush e.g. if(wildcards[1] ~= nil) then T3/r7/2019-06-12.txt.gz:{chan ch=tech}Dillon Tech: so you saying i can do this if(wildcards[1] ~= nil) T3/r7/2019-06-12.txt.gz:{chan ch=tech}Dillon Tech: so you saying i can do this if(wildcards[1] ~= nil);eatfood then T3/r7/2019-06-12.txt.gz:{chan ch=tech}NSFW Jexebelle Tech: do thing: do thing2: dothing3 T3/r7/2019-06-12.txt.gz:{chan ch=tech}Dillon Tech: if(wildcards[1] ~= nil):eatfood then T3/r7/2019-06-12.txt.gz:{chan ch=tech}Dillon Tech: like that i assume? T3/r7/2019-06-12.txt.gz:{chan ch=tech}NSFW Jexebelle Tech: I have no idea what you're trying to do T3/r7/2019-06-12.txt.gz:{chan ch=tech}Dillon Tech: i want to have 2 if statements in one function within a mushclient script T3/r7/2019-06-12.txt.gz:{chan ch=tech}Tinypotato Tech: do you want to 1) do one thing if both a and b are true, or 2) do 1 thing if a is true, and do another if b is true ? T3/r7/2019-06-12.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: is mushclient causing me to get two-liner DBs, days in a row? T3/r7/2019-06-12.txt.gz:{chan ch=tech}Endymion Tech: Fiendish has been known to skim blessing rewards T3/r7/2019-06-12.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: The answer is yes T3/r7/2019-06-12.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: that's what I thought T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: how long should a reboot and chkdsk take before I get worried T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: chkdsk can take a long time, depends on the size of your hd or sd. T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: depends on disk size T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: 80GB T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: HDD T3/r7/2019-06-13.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: I'd get worried now just to be on the safe side T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: bout tree fiddy T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: this is an old computer with a suspected bad hard drive T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: seconds, give or take T3/r7/2019-06-13.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: I'd pay the ransomware to Abelinc T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: could it get hung up at a point and need user input? T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: chkdsk should be giving you some status, iirc T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: I'm sure it would if I was in the same area as the computer I was running it on T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: I wasn't expecting it to need any input regardless of what happened and now I'm suspecting it's sitting there, not network connected, asking a non-existant user for input :p T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: could be :) T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: endy-chan what do I do T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: with a problem found, yeah it probably does need input T3/r7/2019-06-13.txt.gz:{chan ch=tech}Tech: That's So Raded goes, "Hmmmm." T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: get an Uber and head over there stat T3/r7/2019-06-13.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: STAT T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: I don't have keys for that building T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: do you have a crow bar? T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: which is a smaller problem than me caring T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: a rock will do T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: and an acetylene blow torch T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: in case any metal doors T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: ah, those. a pain. T3/r7/2019-06-13.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Do you have translocate practiced T3/r7/2019-06-13.txt.gz:{chan ch=tech}Tech: Nibiru Anaristos goes, "Heh." T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: last time I rebooted my server I thought it was taking a while to run a check on the 3TB disk, but turns out it was some conflict after an update T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: headless servers are a pain in the ass T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: should've gotten one of those things Homer got when he worked from home T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: homer woking from home? How whimsical :) T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: a beer helmet? T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: the little water bird thing that hit the keyboard T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: I use an app called 'move mouse' for when working from home T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: not one called 'use keyboard'? T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: naa, just gotta keep the Skype active T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: omg it came back T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: after like an hour and a half T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: time out ftw T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: I scheduled it for after reboot then rebooted T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: https://serverfault.com/questions/186430/is-it-possible-to-run-an-unattended-chkdsk T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: I don't want to read, what's the answer? T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: thanks endy send that to me 2 hours ago T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: chkdsk C: /F /R T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: yeah, that's what I use. T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: it is 3 hours ago, your time T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: I have 1TB ssd, so it's a little bit faster. T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: oh wait, actually I sent it to you in the future. My bad T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: and it hasn't gotten there yet. T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: this is an old ass computer that we've been waiting to upgrade so we don't have to downgrade a new machine to windows 7 to work with some legacy software that some company has been dragging its feet on updating T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: trying to keep this beast on life support for another month or so T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: personallly, I wouldn't consider using Win 7 as a downgrade, I would welcome it :) T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: so you almost had a really sweaty morning T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: you can always download the latest SDKs and you are good to go, you don't need Win 10 T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: security updates stop in like january T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: and do you know how hard it is to get windows 7 laptops any more T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: we have to spend more money to get worse laptops because they work with win7 T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: Microsoft is issuing a slate of security updates for everything all the way to XP due to a serious breach found by NSA. T3/r7/2019-06-13.txt.gz:{chan ch=tech}That's So Raded Tech: at a certain point it becomes cheaper and less painful for us to just migrate everything to windows 10 T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: I still have my copy of Win 7, though I only run it on VM. T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: win10 should have a 7 virtual like 7 had xp T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: windows 10 is not bad, I think that windows 7 was MS best work. T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: minus the forced updates mentioned, as well as forced reboots, I have no other problems with win10 T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: I tend to agree. I just don't like the flavor. T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: the look and feel T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: and on my work laptop, when I use Cortana I do not want to search the web. I'm looking for a file you ******. T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: If I want to search the web I'll open a browser. And it wont be Edge T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: I have cortana off, it's a big security hole and I don't mean from hackers, I mean from microsoft. T3/r7/2019-06-13.txt.gz:{chan ch=tech}Endymion Tech: I need to look into whether or not I can disable it. I have it off at home, but we are highly managed by HP at work T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: you can, look it up. T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: well, if you don't have access to your settings then you can't. T3/r7/2019-06-13.txt.gz:{chan ch=tech}Busta Rhymes Tech: when i use the mapper sometimes the directions aren't correct, how can i fix this? T3/r7/2019-06-13.txt.gz:{chan ch=tech}Busta Rhymes Tech: omg i fixed it T3/r7/2019-06-13.txt.gz:{chan ch=tech}Huko Tech: wtb a script/plugin thatll save my location on a command, and then will goto that location on another command T3/r7/2019-06-13.txt.gz:{chan ch=tech}Huko Tech: ill pay 2 tp T3/r7/2019-06-13.txt.gz:{chan ch=tech}Huko Tech: whats command to see room id T3/r7/2019-06-13.txt.gz:{chan ch=tech}Jedhi Tech: you need gmcp for that T3/r7/2019-06-13.txt.gz:{chan ch=tech}Jedhi Tech: afaik T3/r7/2019-06-13.txt.gz:{chan ch=tech}Huko Tech: doesnt mapper or something show it on command T3/r7/2019-06-13.txt.gz:{chan ch=tech}Jedhi Tech: but i know there is a script, that does exactly what you need. i belive zyanya has it. ask her when she's online T3/r7/2019-06-13.txt.gz:{chan ch=tech}Huko Tech: ugh there sa ocmmand that shows room info, but i cant remmeber it :( T3/r7/2019-06-13.txt.gz:{chan ch=tech}Huko Tech: its "mapper thisroom" :x T3/r7/2019-06-13.txt.gz:{chan ch=tech}Jedhi Tech: can you trigger it? T3/r7/2019-06-13.txt.gz:{chan ch=tech}Huko Tech: nope hehe :( T3/r7/2019-06-13.txt.gz:{chan ch=tech}(object) Daak Tech: \\\require "gmcphelper" roomnumber = gmcp("room.info.num") Note(roomnumber) T3/r7/2019-06-13.txt.gz:{chan ch=tech}Huko Tech: can i change Note(roomnumber) to make it a variable? T3/r7/2019-06-13.txt.gz:{chan ch=tech}(object) Daak Tech: \\\require "gmcphelper" roomnumber = gmcp("room.info.num") SetVariable("foo", roomnumber) T3/r7/2019-06-13.txt.gz:{chan ch=tech}Tech: think you can skip the "roomnumber =" part, and just do require "gmcphelper" SetVariable("RememberedRoom",gmcp("room.info.num")) T3/r7/2019-06-13.txt.gz:{chan ch=tech}Huko Tech: works either way, as long as i can get that dang number into a variable T3/r7/2019-06-13.txt.gz:{chan ch=tech}Tech: the "\\\" is for typing/pasting it into the command line...leave the \\\ off to make an alias, and set the alias to script T3/r7/2019-06-13.txt.gz:{chan ch=tech}Huko Tech: yeah i got the alias, now to make an alias to just simply mapper goto roomnumber :) T3/r7/2019-06-13.txt.gz:{chan ch=tech}Huko Tech: im not too smart, what do i use to call the variable "roomid" T3/r7/2019-06-13.txt.gz:{chan ch=tech}Huko Tech: hehe i had to enable expanding variables T3/r7/2019-06-13.txt.gz:{chan ch=tech}Year 1337 RetroGamer Tech: If a tablet says it can take upto 32Gig micro Sd, what will happen if you insert a 64Gig card? T3/r7/2019-06-13.txt.gz:{chan ch=tech}Nocilis Tech: probably will only be able to use 32gb of it. or the universe will fold in on itself. T3/r7/2019-06-13.txt.gz:{chan ch=tech}Year 1337 RetroGamer Tech: Heh, ok. T3/r7/2019-06-13.txt.gz:{chan ch=tech}Stormwind Tech: Anyone familiar with Pwar's plugin, getting errors installing module 'zip' not found T3/r7/2019-06-13.txt.gz:{chan ch=tech}Khrysis Tech: anyone can give me some advice on a hunt type plugin? T3/r7/2019-06-13.txt.gz:{chan ch=tech}Khrysis Tech: i dont think what i have is working correctly T3/r7/2019-06-14.txt.gz:{chan ch=tech}Year 1337 RetroGamer Tech: At what Percentage is the optimal time to recharge a new tablet? T3/r7/2019-06-14.txt.gz:{chan ch=tech}Year 1337 RetroGamer Tech: Like at 40, 30 or even 50 persant? T3/r7/2019-06-14.txt.gz:{chan ch=tech}Trachx Tech: what can cause partition table wipe in Win 7? on two different disks T3/r7/2019-06-14.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: I wanna do this: https://www.faludi.com/classes/xbee1workshop/Light_Switch_XBee_Example_Project-Series_1.pdf T3/r7/2019-06-14.txt.gz:{chan ch=tech}XXX Video Tape Tech: can anyone tell me why, no matter WHAT i do, i can't keep levitate ON in BSP? T3/r7/2019-06-14.txt.gz:{chan ch=tech}Gaelehad Tech: do you not have the fly affect from an item or the fly spell? T3/r7/2019-06-14.txt.gz:{chan ch=tech}XXX Video Tape Tech: no, but i think my low level set does have wings T3/r7/2019-06-14.txt.gz:{chan ch=tech}XXX Video Tape Tech: so i guess its possible that when i mort, it casts it, finds i have wings, and disables it T3/r7/2019-06-14.txt.gz:{chan ch=tech}Gaelehad Tech: well once you take the wings off then you dan do bsp sena levitate T3/r7/2019-06-14.txt.gz:{chan ch=tech}XXX Video Tape Tech: is there any way to tell it to keep casting it regardless of the pre-existing status? T3/r7/2019-06-14.txt.gz:{chan ch=tech}Gaelehad Tech: no, that is the point of being disabled T3/r7/2019-06-14.txt.gz:{chan ch=tech}XXX Video Tape Tech: i understand the point :P T3/r7/2019-06-14.txt.gz:{chan ch=tech}XXX Video Tape Tech: i just don't like it T3/r7/2019-06-14.txt.gz:{chan ch=tech}Real ninja Starling Tech: could see if Bast could add an override feature in next update T3/r7/2019-06-14.txt.gz:{chan ch=tech}XXX Video Tape Tech: i'll probably just deal with it :P T3/r7/2019-06-14.txt.gz:{chan ch=tech}Gaelehad Tech: there is no way to tell how an affect is being granted, so it wouldn't be trivial to add T3/r7/2019-06-14.txt.gz:{chan ch=tech}KnightLord Throxx Tech: is there a way to gag prompt for one instance, say when i gag some action in mush, but it still puts up the prompt again? T3/r7/2019-06-14.txt.gz:{chan ch=tech}Endymion Tech: sure you can make a oneshot trigger T3/r7/2019-06-14.txt.gz:{chan ch=tech}Gaelehad Tech: with a clever bit of coding you can turn the trigger off when it triggers T3/r7/2019-06-14.txt.gz:{chan ch=tech}KnightLord Throxx Tech: right, i have done those before. more an issue of the prompt firing every time something thats gagged is done T3/r7/2019-06-14.txt.gz:{chan ch=tech}Gaelehad Tech: give it a label, for example 1ShotGag, then use EnableTrigger("1ShotGag",false) in the body T3/r7/2019-06-14.txt.gz:{chan ch=tech}Gaelehad Tech: then in the gag for the other stuff turn on the trigger gag T3/r7/2019-06-14.txt.gz:{chan ch=tech}Gaelehad Tech: i mean prompt gag trigger T3/r7/2019-06-14.txt.gz:{chan ch=tech}KnightLord Throxx Tech: lol, do you know how i know its working??? because every time i turn my prompt on, i dont see it!!!!!!!!!! T3/r7/2019-06-14.txt.gz:{chan ch=tech}KnightLord Throxx Tech: so, word of caution, dont type "dinv usage all" cause, its... alot... of... data... T3/r7/2019-06-14.txt.gz:{chan ch=tech}Endymion Tech: I use triggers to gag duplicate prompts, so unless it changes I don't see it again T3/r7/2019-06-14.txt.gz:{chan ch=tech}KnightLord Throxx Tech: lol, works gaging the status prompt,but not the line above it, with the room name and exits... T3/r7/2019-06-14.txt.gz:{chan ch=tech}Endymion Tech: I don't have that - is it a prompt option? T3/r7/2019-06-14.txt.gz:{chan ch=tech}KnightLord Throxx Tech: yeah T3/r7/2019-06-14.txt.gz:{chan ch=tech}KnightLord Throxx Tech: yeah, mine is %r [Open Exits:%e]%c<%php %Pmn %Nmv> %Xxp|%qqt|%d%K%c T3/r7/2019-06-14.txt.gz:{chan ch=tech}KnightLord Throxx Tech: its mostly so i can see everything to the left , when on Blowtorch, as i populat all my buttons from the right side T3/r7/2019-06-14.txt.gz:{chan ch=tech}Nocilis Tech: blowtorch doesn't do multiline triggers T3/r7/2019-06-14.txt.gz:{chan ch=tech}Nocilis Tech: at least not well T3/r7/2019-06-14.txt.gz:{chan ch=tech}KnightLord Throxx Tech: right, im on mush on computer right nwo T3/r7/2019-06-14.txt.gz:{chan ch=tech}Endymion Tech: I don't see the benefit of having that in prompt, but to each his own T3/r7/2019-06-14.txt.gz:{chan ch=tech}Endymion Tech: You can easily make 2 triggers - the 1st will be room/exits and enables 2nd trigger to gag prompt T3/r7/2019-06-14.txt.gz:{chan ch=tech}KnightLord Throxx Tech: yes. why would the room name and exits not be a benifit? T3/r7/2019-06-14.txt.gz:{chan ch=tech}Endymion Tech: well for 1, the mini map can show both T3/r7/2019-06-14.txt.gz:{chan ch=tech}Endymion Tech: but to each his own I'm not trying to convince you to turn it off - I gave you an idea of how to gag both T3/r7/2019-06-14.txt.gz:{chan ch=tech}KnightLord Throxx Tech: the name is at the top, but navigaiing on blowtorch, repeating the room nape with the exit at the bottom is helpfull, T3/r7/2019-06-14.txt.gz:{chan ch=tech}Endymion Tech: you just said you are on PC T3/r7/2019-06-14.txt.gz:{chan ch=tech}KnightLord Throxx Tech: yes, i play on both, i have to live do some things on pc to make phone more managable, T3/r7/2019-06-14.txt.gz:{chan ch=tech}Endymion Tech: OK well you could easily make an alias to change prompt to with/without. You seem kinda high maintenance T3/r7/2019-06-14.txt.gz:{chan ch=tech}KnightLord Throxx Tech: ... i dotn even think i notices that i was repeating the exits are the bottom of whatevery my "brief" settign was at... T3/r7/2019-06-14.txt.gz:{chan ch=tech}Rockwell Tech: how do I copy something from main window but with the color codes? T3/r7/2019-06-14.txt.gz:{chan ch=tech}Durel Tech: control-d T3/r7/2019-06-14.txt.gz:{chan ch=tech}Endymion Tech: ctrl-d T3/r7/2019-06-14.txt.gz:{chan ch=tech}Rockwell Tech: thanks! T3/r7/2019-06-14.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: ctrl+d T3/r7/2019-06-14.txt.gz:{chan ch=tech}KnightLord Throxx Tech: following T3/r7/2019-06-14.txt.gz:{chan ch=tech}KnightLord Throxx Tech: thats nice T3/r7/2019-06-14.txt.gz:{chan ch=tech}Wandermoor Tech: I use cmud. I was tooling around with the ard mushclient..and I couldnt get an c miasma to work?? What was I doing wrong. Just want some simple spell casting aliases? T3/r7/2019-06-14.txt.gz:{chan ch=tech}Wandermoor Tech: I like its mapping feature. T3/r7/2019-06-14.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: so do I :) T3/r7/2019-06-14.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: cmud's mapping feature, that is :) T3/r7/2019-06-14.txt.gz:{chan ch=tech}Wandermoor Tech: no mush mapping T3/r7/2019-06-15.txt.gz:{chan ch=tech}KoopaTroopa Tech: where can one find the chatwindow plugin for blowtorch? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Sheriff Shindo Tech: finger nocilis for the url, or search for github blockda T3/r7/2019-06-15.txt.gz:{chan ch=tech}KoopaTroopa Tech: thanks shindo T3/r7/2019-06-15.txt.gz:{chan ch=tech}Sheriff Shindo Tech: your welcome, Koopatroopa T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: anyone know why this search and destroy keeps breaking on me? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Lustrous Luc Tech: is it updated? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: it worked one day and now its doing the same thing not cont to hunt after one try T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: yes T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: its updated T3/r7/2019-06-15.txt.gz:{chan ch=tech}Lustrous Luc Tech: then I have no idea, maybe ask starling T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: something is breaking it or something T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: this one is pwar's version T3/r7/2019-06-15.txt.gz:{chan ch=tech}Sheriff Shindo Tech: which version of s&d, there are 3 sources i know of T3/r7/2019-06-15.txt.gz:{chan ch=tech}Sheriff Shindo Tech: when you do what, exactly, does it break how, exactly? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: like say i have a quest T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: and i go to area and to ah mob T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: it doesnt hunt it T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: sometimes does nothing sometimes it goes one room and stops T3/r7/2019-06-15.txt.gz:{chan ch=tech}Riddim Tech: ahve you tried reloading a fresh copy of hte plugin or other common things T3/r7/2019-06-15.txt.gz:{chan ch=tech}Sheriff Shindo Tech: does it complain about unknown room number? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: sometimes yes T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: but even if i go explore to the mob T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: and go back and try it T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: still doesnt auto hunt T3/r7/2019-06-15.txt.gz:{chan ch=tech}Sheriff Shindo Tech: I've noticed it does that in unknown areas but once they've been explored it doesn't repeat T3/r7/2019-06-15.txt.gz:{chan ch=tech}Sheriff Shindo Tech: try qw then, no need tonhunt the mob T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: ya i know that part works but this worked when i first got the plugin and now for some reason it doesnt do it T3/r7/2019-06-15.txt.gz:{chan ch=tech}Sheriff Shindo Tech: once it knows where a kob can be found it remembers T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: just thought maybe i did something that broke it maybe but i cant seem to figure out how to reset it all the way T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: even if i complete remove it and reinstall it it does the same T3/r7/2019-06-15.txt.gz:{chan ch=tech}Algaru Tech: maybe your map db has gotten into a funny state T3/r7/2019-06-15.txt.gz:{chan ch=tech}Algaru Tech: oh, misread names T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: oh? how would i fix or check that? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Algaru Tech: ignore that - i misread T3/r7/2019-06-15.txt.gz:{chan ch=tech}Algaru Tech: what % is your hunt skill? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Algaru Tech: i suspect you're missing a hunt trigger T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: maybe but it worked fine at first could something overwrite it somehow? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: the only problem i had at first was if it was an area i havent explored it would spam that error room not found thing til i aborted the ah T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: but it would keep hunting mobs til it found them if i had the rooms explored T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: now it just stops after one T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: one room it moves and stops T3/r7/2019-06-15.txt.gz:{chan ch=tech}Algaru Tech: i didn't think autohunt would care about the map exploration status at all actually T3/r7/2019-06-15.txt.gz:{chan ch=tech}Algaru Tech: so even that part is a bit weird to me T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: ya its got me all messed up as well T3/r7/2019-06-15.txt.gz:{chan ch=tech}Algaru Tech: where did you get S&D from? you can try a diff version maybe T3/r7/2019-06-15.txt.gz:{chan ch=tech}Lustrous Luc Tech: I recommend starling's:) T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: is it going to matter with what i already have? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: just remove what i have and try a dif one? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Algaru Tech: i haven't tried starlings, i am using an older one modified by fiendish, and i made a couple small changes on top of that T3/r7/2019-06-15.txt.gz:{chan ch=tech}Algaru Tech: if starlings isn't working for you for example, try fiendish's, or if you're using the one by winkle winkle try starlings, etc T3/r7/2019-06-15.txt.gz:{chan ch=tech}Mr. Crowley Tech: fiendish doesn't have one... T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: anything other than removing em from the plugin list i gotta do? T3/r7/2019-06-15.txt.gz:{chan ch=tech}That's So Raded Tech: well maybe he should make one crowley T3/r7/2019-06-15.txt.gz:{chan ch=tech}Algaru Tech: sorry, not fiendish. nokfah modified winklewinkle's T3/r7/2019-06-15.txt.gz:{chan ch=tech}Mr. Crowley Tech: Pwar and Starling are the only two public ones I know about. T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: ya i just dont wanna get so much explored etc and have to delete stuff and redo it ya know? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: better to get issue resolved sooner than later i thought T3/r7/2019-06-15.txt.gz:{chan ch=tech}Rockwell Tech: all the S&D's will use the same database and you can freely switch between them T3/r7/2019-06-15.txt.gz:{chan ch=tech}Sheriff Shindo Tech: s&d works on top of the mapper, so you don't have to unlearn anything mapper related T3/r7/2019-06-15.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Not the old versions T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: hmm so not sure what to try to do then T3/r7/2019-06-15.txt.gz:{chan ch=tech}Sheriff Shindo Tech: try a different version of s&d, you don't have to delete the mapper database T3/r7/2019-06-15.txt.gz:{chan ch=tech}Sheriff Shindo Tech: unless you really want a blank database. again T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: so i have pwar atm T3/r7/2019-06-15.txt.gz:{chan ch=tech}Algaru Tech: man... didn' trealize how many versions there are out there. there's winklewinkle, nokfah, lunk, starling, thridi T3/r7/2019-06-15.txt.gz:{chan ch=tech}Algaru Tech: and pwar T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: whats a good one to try other than pwar? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: starling? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Sheriff Shindo Tech: starling or thridi T3/r7/2019-06-15.txt.gz:{chan ch=tech}Lustrous Luc Tech: starling's is a much improved winkle, all in one, not three different T3/r7/2019-06-15.txt.gz:{chan ch=tech}Nevela Tech: i dont think anyone does mobdb other than pwar - it's a no brainer feature T3/r7/2019-06-15.txt.gz:{chan ch=tech}Mr. Crowley Tech: Technically, Nokfah and Thridi don't have their own versions. Nokfah just fixed the problem created when updating MUSH, and Thridi just made a fork of Starling's to ensure it remained pure. T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: so i just have to remove the pwar from the plugins or from the folder entirely? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Mr. Crowley Tech: I wouldn't necessarily trust Lunk's, either. T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: ok lets see if this one works T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: got starlings T3/r7/2019-06-15.txt.gz:{chan ch=tech}Sheriff Shindo Tech: i strongly suggest installing plugins in sub folders, that way it is easier to manage and clean up T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: what do u mean? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: within the plugins folder? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: make seperate folders for em? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Sheriff Shindo Tech: yes T3/r7/2019-06-15.txt.gz:{chan ch=tech}Sheriff Shindo Tech: leave the default stuff in the main plugin folder and make subfolders for each source of plugin, ie starling, durel, bast, pwar etc T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: well i dunno what the problem is then it still when i ah mob it moves one room and stops T3/r7/2019-06-15.txt.gz:{chan ch=tech}Khrysis Tech: its gotta be something else not just the s and d plug in T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: can i set my portals on mapper to use dinv? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Endymion Tech: please explain T3/r7/2019-06-15.txt.gz:{chan ch=tech}The Stoner Sinder Tech: mapper portal dinv portal use (portal ID) T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: thank you sinder T3/r7/2019-06-15.txt.gz:{chan ch=tech}The Stoner Sinder Tech: npz T3/r7/2019-06-15.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: where is my quest mob T3/r7/2019-06-15.txt.gz:{chan ch=tech}The Stoner Sinder Tech: NO. T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: What file will my mapper portal saves be in? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Tinypotato Tech: mapper portal + dinv portal seems to hide the output of the mapper speedwalk for me which is annoying T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: im lookign to open it up in notepad++ so I can change them all easily instead of using ingame delete/remake etc T3/r7/2019-06-15.txt.gz:{chan ch=tech}The Stoner Sinder Tech: right so if you break something with a bad id or something and dont verify it's hard to locate which portal it can't find etc T3/r7/2019-06-15.txt.gz:{chan ch=tech}Endymion Tech: the mapper? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: yeah the mapper saves you have, so like the portal commadns etc T3/r7/2019-06-15.txt.gz:{chan ch=tech}Tinypotato Tech: they get saved in the db so you need to modify the db directly T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: okie ty T3/r7/2019-06-15.txt.gz:{chan ch=tech}Tinypotato Tech: + dinv portal seems to be a bit slower because it queues commands up instead of executing them all at once T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: im just tired of having to change my alias everytime i change a portal as my main T3/r7/2019-06-15.txt.gz:{chan ch=tech}The Stoner Sinder Tech: with the rehold of hold item and portal it saves a lot of tiem too though T3/r7/2019-06-15.txt.gz:{chan ch=tech}The Stoner Sinder Tech: unless you had an alias setup that you hit while you were midportal T3/r7/2019-06-15.txt.gz:{chan ch=tech}Tinypotato Tech: yeah I made my very simple useportal alias that uses invmon to replicate that functionality T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: right now i have a alias that wears portal and then rewears my set portal ID T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: youre a wizard T3/r7/2019-06-15.txt.gz:{chan ch=tech}Tinypotato Tech: invmon lets you know what portal/held item you last removed so you can autmatically rewear that id T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: Cant seem to find where the portal information is in this DB :( T3/r7/2019-06-15.txt.gz:{chan ch=tech}Endymion Tech: it's in exits table, each portal is a cexit from * to the landing room # T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: Anyway to search items using Dinv to show IDs? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Endymion Tech: you mean dinv search id ? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Durel Tech: Sure, just do "dinv search objid [whatever your normal query is]" T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: woweee this guys so good T3/r7/2019-06-15.txt.gz:{chan ch=tech}The Stoner Sinder Tech: durel put the D in DINV T3/r7/2019-06-15.txt.gz:{chan ch=tech}The Stoner Sinder Tech: if you nomsayin T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: explain plz T3/r7/2019-06-15.txt.gz:{chan ch=tech}P3stilence Nasus Tech: I put the D in Durel T3/r7/2019-06-15.txt.gz:{chan ch=tech}Tech: Durel grins evilly. T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: you cant say that here T3/r7/2019-06-15.txt.gz:{chan ch=tech}The Stoner Sinder Tech: DINV = Durel's Inventory Manager T3/r7/2019-06-15.txt.gz:{chan ch=tech}Endymion Tech: but really it's a "d" T3/r7/2019-06-15.txt.gz:{chan ch=tech}Endymion Tech: (little d) T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: gottem T3/r7/2019-06-15.txt.gz:{chan ch=tech}The Stoner Sinder Tech: i had to finger him to get it T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: thanks for explaining that ahead of time before i asked T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: one more question T3/r7/2019-06-15.txt.gz:{chan ch=tech}Endymion Tech: true T3/r7/2019-06-15.txt.gz:{chan ch=tech}Huko Tech: On the dinv search objid type portal search, anyway to make the first column show more of the portal than it does? T3/r7/2019-06-15.txt.gz:{chan ch=tech}Endymion Tech: You need to make your way to the Source T3/r7/2019-06-15.txt.gz:{chan ch=tech}Endymion Tech: Only then will you know your true path and what is required T3/r7/2019-06-15.txt.gz:{chan ch=tech}Durel Tech: Unfortunately, no that isn't supported at this point. That's the downside of showing the objid -- it takes up some of the space you'd normally have for the name T3/r7/2019-06-15.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: does anyone else keep getting disconnected T3/r7/2019-06-15.txt.gz:{chan ch=tech}Nocilis Tech: connection is all good here T3/r7/2019-06-15.txt.gz:{chan ch=tech}GO CLUBIN Dashiell Tech: mostly the people who type "quit" do T3/r7/2019-06-15.txt.gz:{chan ch=tech}Endymion Tech: I was earlier, a few times. But I restarted mush and only 1 reconnect since then T3/r7/2019-06-15.txt.gz:{chan ch=tech}Endymion Tech: I think our internets are flaky T3/r7/2019-06-15.txt.gz:{chan ch=tech}Nocilis Tech: well you see, the internet is like a series of tubes... T3/r7/2019-06-16.txt.gz:{chan ch=tech}GabeLogan Tech: Quick key to turn sound on/off for Zmush? T3/r7/2019-06-16.txt.gz:{chan ch=tech}Dillon Tech: anyone have the 1903 version of windows 10? T3/r7/2019-06-16.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: abelinc does T3/r7/2019-06-16.txt.gz:{chan ch=tech}Dillon Tech: meh, thought you had it :( T3/r7/2019-06-16.txt.gz:{chan ch=tech}Ylar Tech: yes, basically. T3/r7/2019-06-16.txt.gz:{chan ch=tech}Dillon Tech: awesome, we can speak on ctalk :D T3/r7/2019-06-16.txt.gz:{chan ch=tech}Tech: Ylar snickers softly. T3/r7/2019-06-16.txt.gz:{chan ch=tech}KnightLord Throxx Tech: they will discontiue updates for windows 7 at the end of the year :( T3/r7/2019-06-16.txt.gz:{chan ch=tech}Dillon Tech: that's what they said last time :P T3/r7/2019-06-17.txt.gz:{chan ch=tech}Lanreth Tech: i re-installed my mushclient a few days ago but forgot about the mapped rooms, can i just copy that file from the backup to the new install? T3/r7/2019-06-17.txt.gz:{chan ch=tech}Riddim Tech: yes, do it while mushclient is off and backup before you do so, but yes T3/r7/2019-06-17.txt.gz:{chan ch=tech}Lanreth Tech: ok cool, could you please tell me which file it is? T3/r7/2019-06-17.txt.gz:{chan ch=tech}Endymion Tech: [worldname].db T3/r7/2019-06-17.txt.gz:{chan ch=tech}Endymion Tech: e.g. Aardwolf.db T3/r7/2019-06-17.txt.gz:{chan ch=tech}Lanreth Tech: ok thank you much T3/r7/2019-06-17.txt.gz:{chan ch=tech}Freaksterr Tech: hello T3/r7/2019-06-17.txt.gz:{chan ch=tech}Freaksterr Tech: hello anyone here? T3/r7/2019-06-17.txt.gz:{chan ch=tech}Freaksterr Tech: hi T3/r7/2019-06-17.txt.gz:{chan ch=tech}Lustrous Luc Tech: what's the command to enable plugins, I forget T3/r7/2019-06-17.txt.gz:{chan ch=tech}Lustrous Luc Tech: on the mushclient T3/r7/2019-06-17.txt.gz:{chan ch=tech}Lustrous Luc Tech: it's like ctrl plus something plus something.. T3/r7/2019-06-17.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: try CTRL + F4 T3/r7/2019-06-17.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Ctrl Shift P <-- to open the plugins manager T3/r7/2019-06-17.txt.gz:{chan ch=tech}Heracles Tech: or File > Plugins T3/r7/2019-06-17.txt.gz:{chan ch=tech}Endymion Tech: If that's the correct answers then the question is wrong. T3/r7/2019-06-17.txt.gz:{chan ch=tech}Heracles Tech: Well they were correct answers, so that's something. T3/r7/2019-06-17.txt.gz:{chan ch=tech}Endymion Tech: That makes no sense T3/r7/2019-06-18.txt.gz:{chan ch=tech}Mr. Crowley Tech: Ridiculous... "Critical Error Your Start menu isn't working. We'll try to fix it the next time you sign in." -- Yet it hasn't been fixed, and I'm forced to either move the critical error message or "Sign out now" T3/r7/2019-06-18.txt.gz:{chan ch=tech}Nibiru Anaristos Tech: what app is this? T3/r7/2019-06-18.txt.gz:{chan ch=tech}Mr. Crowley Tech: Not an App. It's Windows 10 Start Menu. T3/r7/2019-06-18.txt.gz:{chan ch=tech}Mr. Crowley Tech: Trying to use the online remedies to fix it. Not even sure what happened, heh T3/r7/2019-06-18.txt.gz:{chan ch=tech}Mr. Crowley Tech: Apparently... Dropbox was the culprit? Hmm. T3/r7/2019-06-18.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: if i type imm -h right now my mushclient crashes 100% of the time i try it. anyone see anything weird on imm -h? T3/r7/2019-06-18.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: if i use the tracker the last thing i see happening before the crash is a mapper function T3/r7/2019-06-18.txt.gz:{chan ch=tech}Mudd Tech: imm -h does not crash me T3/r7/2019-06-18.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: it doesnt anymore for me either, but just did it 15 times in a row T3/r7/2019-06-18.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: weird T3/r7/2019-06-18.txt.gz:{chan ch=tech}Tech: Lustrous Luc shows his approval by clapping his hands together. T3/r7/2019-06-18.txt.gz:{chan ch=tech}Dhalsim Tech: Any GCMP wizrds about? T3/r7/2019-06-18.txt.gz:{chan ch=tech}Borg Tech: nope, just us. Whats up? T3/r7/2019-06-18.txt.gz:{chan ch=tech}Real ninja Starling Tech: what is the problem? T3/r7/2019-06-18.txt.gz:{chan ch=tech}Dhalsim Tech: Am new to GCMP...about half a day :) I was after a way to get room description out of it T3/r7/2019-06-18.txt.gz:{chan ch=tech}Borg Tech: That isn't sent through GMCP T3/r7/2019-06-18.txt.gz:{chan ch=tech}Borg Tech: gmcpdebug 2 to see all that is sent T3/r7/2019-06-18.txt.gz:{chan ch=tech}Dhalsim Tech: I am gathering that. :( T3/r7/2019-06-18.txt.gz:{chan ch=tech}Borg Tech: Sorry :/ T3/r7/2019-06-18.txt.gz:{chan ch=tech}Borg Tech: you can opt to turn tags on and trigger on the {rdesc} {/rdesc} rags T3/r7/2019-06-18.txt.gz:{chan ch=tech}Borg Tech: tags* T3/r7/2019-06-18.txt.gz:{chan ch=tech}Borg Tech: tags roomdescs T3/r7/2019-06-18.txt.gz:{chan ch=tech}Dhalsim Tech: Ah. I'll be taking a glance at how that works then. T3/r7/2019-06-18.txt.gz:{chan ch=tech}Real ninja Starling Tech: if you do tags roomdesc on, it will put {rdesc} {/rdesc} tags before and after the room desc. Your trigger would need to capture the lines and then the script would have to assemble them into a single string which is then saved in whatever database, file, or lua table you're using for that T3/r7/2019-06-18.txt.gz:{chan ch=tech}Borg Tech: Starling, beat you there, l:p T3/r7/2019-06-18.txt.gz:{chan ch=tech}Real ninja Starling Tech: the first rdesc tag would turn your capture trigger on, the second would turn it back off and call the script to format and save the data T3/r7/2019-06-18.txt.gz:{chan ch=tech}Dhalsim Tech: Thanks for the heads up. I'll try to figure it all out T3/r7/2019-06-18.txt.gz:{chan ch=tech}Dhalsim Tech: cMUD mapper is not collecting description. SO I thought I'd try and get at the room data directly instead of triggering the mapper. T3/r7/2019-06-18.txt.gz:{chan ch=tech}Welding Tech: any recommendations for note writing plugins for aard? T3/r7/2019-06-18.txt.gz:{chan ch=tech}Vesuveas Tech: bast spellup plugin crash and lost my list. Any way to rebuild it without adding them all one by one? When i try bsp sadd all, it adds all skills and spells, regardless of if they're actually spellups. T3/r7/2019-06-18.txt.gz:{chan ch=tech}Sethril Tech: Is antivirus software really necessary on a computer purely devoted to gaming and not used for anything else? T3/r7/2019-06-18.txt.gz:{chan ch=tech}SirCanada Tech: I don't use antivirus software, and my computer isn't devoted to gaming T3/r7/2019-06-18.txt.gz:{chan ch=tech}Classic Vost Tech: if you're using Windows 10, then Windows Security Suite is adequate T3/r7/2019-06-18.txt.gz:{chan ch=tech}Sethril Tech: I'm using Windows XP, and I don't use email on it, just this and some games I download T3/r7/2019-06-18.txt.gz:{chan ch=tech}Tech: Classic Vost laughs out loud. T3/r7/2019-06-18.txt.gz:{chan ch=tech}Sethril Tech: What I like about XP is it doesn't have all the unnecessary clutter that comes with later versions of Windows T3/r7/2019-06-18.txt.gz:{chan ch=tech}Classic Vost Tech: like Windows Security... T3/r7/2019-06-18.txt.gz:{chan ch=tech}Sethril Tech: Exactly! T3/r7/2019-06-18.txt.gz:{chan ch=tech}Borg Tech: Sethril, it really depends on if you have it connected to the rest of your network.. T3/r7/2019-06-18.txt.gz:{chan ch=tech}SirCanada Tech: windows security essentials is useless in my opinion. anyone designing anything malicious would make it undetectable by essentials as the first thing he/she does. T3/r7/2019-06-18.txt.gz:{chan ch=tech}Borg Tech: You could be providing a nice easy way into the network and exposing some vunerabilities of another system T3/r7/2019-06-18.txt.gz:{chan ch=tech}Classic Vost Tech: most malware is script kiddie stuff T3/r7/2019-06-18.txt.gz:{chan ch=tech}SirCanada Tech: I've come across a lot of shady stuff in the past few years, never once has security essentials detected something that wasn't 10 years old T3/r7/2019-06-18.txt.gz:{chan ch=tech}Sethril Tech: I'm using Panda Dome antivirus, it has annoying popups because it is free T3/r7/2019-06-18.txt.gz:{chan ch=tech}Sethril Tech: I'll get a popup right in the middle of an intense battle, that is always fun T3/r7/2019-06-18.txt.gz:{chan ch=tech}SirCanada Tech: but to be fair, in my experience, other antivirus programs only detected about 1/3 of it, which is why I don't use antivirus T3/r7/2019-06-19.txt.gz:{chan ch=tech}Crimzon Tech: so how do i prevent them for doing this and y T3/r7/2019-06-19.txt.gz:{chan ch=tech}XXX Video Tape Tech: if i have a variable defined as say "thisvar", how do i recall that variable and send it, for example, to gt? T3/r7/2019-06-19.txt.gz:{chan ch=tech}Tinypotato Tech: in an alias or a script? T3/r7/2019-06-19.txt.gz:{chan ch=tech}XXX Video Tape Tech: lets say script T3/r7/2019-06-19.txt.gz:{chan ch=tech}Tinypotato Tech: GetVariable() T3/r7/2019-06-19.txt.gz:{chan ch=tech}XXX Video Tape Tech: right, but in what syntanx to send that to gt? T3/r7/2019-06-19.txt.gz:{chan ch=tech}Tinypotato Tech: Execute("gt "..GetVariable) T3/r7/2019-06-19.txt.gz:{chan ch=tech}XXX Video Tape Tech: ok, thats working...now how do i save a variable as an integer rather than a string? T3/r7/2019-06-19.txt.gz:{chan ch=tech}XXX Video Tape Tech: for example: You spend * trains and * gold to increase your * T3/r7/2019-06-19.txt.gz:{chan ch=tech}XXX Video Tape Tech: i want to save %1 as an integer T3/r7/2019-06-19.txt.gz:{chan ch=tech}Tinypotato Tech: if you are doing send to script in your trigger I believe setVariable("myvar", %1) should just work T3/r7/2019-06-19.txt.gz:{chan ch=tech}Tinypotato Tech: or if that doesn't, then maybe SetVariable("myvar", tonumber(%1)) T3/r7/2019-06-19.txt.gz:{chan ch=tech}XXX Video Tape Tech: as the number has a comma in it, it sets it to 1 T3/r7/2019-06-19.txt.gz:{chan ch=tech}XXX Video Tape Tech: i think i tried that second one too, but i'll try again T3/r7/2019-06-19.txt.gz:{chan ch=tech}Tinypotato Tech: oh then maybe SetVariable("myvar", tonumber("%1")) T3/r7/2019-06-19.txt.gz:{chan ch=tech}Tinypotato Tech: to force it into a string so that tonumber can strip the comma for you T3/r7/2019-06-19.txt.gz:{chan ch=tech}XXX Video Tape Tech: that gives a nil value T3/r7/2019-06-19.txt.gz:{chan ch=tech}XXX Video Tape Tech: [string "Trigger: "]:1: bad argument #2 to 'SetVariable' (string expected, got nil) T3/r7/2019-06-19.txt.gz:{chan ch=tech}Tinypotato Tech: tonumber(string.gsub("%1", ",", ""), 10) if you only need to remove commas T3/r7/2019-06-19.txt.gz:{chan ch=tech}XXX Video Tape Tech: no, i need it stored as an integer so i can do math with it T3/r7/2019-06-19.txt.gz:{chan ch=tech}Tinypotato Tech: yeah that gets you an integer T3/r7/2019-06-19.txt.gz:{chan ch=tech}XXX Video Tape Tech: nice, i think that works T3/r7/2019-06-20.txt.gz:{chan ch=tech}Mr. Crowley Tech: Freaking ridiculous. Forced update in Windows 10, breaks start menu and crap. T3/r7/2019-06-20.txt.gz:{chan ch=tech}Trachx Tech: it seems that W10 approach is selecting some small group of early testers, either everything is ok or some of them complain so they fix it and then push fixed update to all T3/r7/2019-06-20.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-20.txt.gz:{chan ch=tech}Frostpaw Tech: I havent had any issues with the latest w10 update, which was pushed on me a few days ago T3/r7/2019-06-20.txt.gz:{chan ch=tech}Mr. Crowley Tech: I can't get Start Menu to work, at all. :( T3/r7/2019-06-20.txt.gz:{chan ch=tech}Mr. Crowley Tech: Comes up with "Critical Error Your Start Menu isn't working" T3/r7/2019-06-20.txt.gz:{chan ch=tech}Trachx Tech: windows update does not fetch most recent updates, it just gets updates that are currently most recent for your channel T3/r7/2019-06-20.txt.gz:{chan ch=tech}Trachx Tech: so 2 W10 PCs can differ even both of them updated to most recent version (via windows update) T3/r7/2019-06-20.txt.gz:{chan ch=tech}Busta Rhymes Tech: ugh how annoying T3/r7/2019-06-20.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-20.txt.gz:{chan ch=tech}Busta Rhymes Tech: virtual env for the win T3/r7/2019-06-20.txt.gz:{chan ch=tech}Trachx Tech: I switched from W7 to Linux + virtualized W7 T3/r7/2019-06-20.txt.gz:{chan ch=tech}Kazuma Tech: Trachx I did something similar T3/r7/2019-06-20.txt.gz:{chan ch=tech}Kazuma Tech: I switched from W7 to Linux, and tried to virtualize W7 but had trouble getting it to cooperate with qemu KVM for GPU passthrough, so i ended up using W8.1 and putting classic shell on that T3/r7/2019-06-20.txt.gz:{chan ch=tech}Kazuma Tech: been using that setup for about 3 years now T3/r7/2019-06-20.txt.gz:{chan ch=tech}Kazuma Tech: smooth sailing so far :) T3/r7/2019-06-20.txt.gz:{chan ch=tech}Kazuma Tech: and i use barrier (fork of synergy) to use same keyboard mouse between the two T3/r7/2019-06-20.txt.gz:{chan ch=tech}Trachx Tech: that barrier/synergy seems to be quite nice idea, just big single desktop T3/r7/2019-06-20.txt.gz:{chan ch=tech}Trachx Tech: I guess I would probably just use vnc for that though (due to my incompetence :P) - another thing learned :) T3/r7/2019-06-20.txt.gz:{chan ch=tech}Seductress Reina Tech: anyone here? T3/r7/2019-06-20.txt.gz:{chan ch=tech}Seductress Reina Tech: need tech expert T3/r7/2019-06-20.txt.gz:{chan ch=tech}Dhalsim Tech: For cMUD? T3/r7/2019-06-20.txt.gz:{chan ch=tech}Seductress Reina Tech: nope.Laptop issue T3/r7/2019-06-20.txt.gz:{chan ch=tech}Seductress Reina Tech: power adapter plug sometimes not working. T3/r7/2019-06-20.txt.gz:{chan ch=tech}Yamzalal Tech: also need tech expert T3/r7/2019-06-20.txt.gz:{chan ch=tech}Yamzalal Tech: i increased the screen resolution on my pc. it worked for a few days but nowadays it goes blank after that windows intro message thingie. i tried safemode,but it doesn't work. what do i do now? T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: I need some help with Bast's cp miniwindow plugin please T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: after I used retier redo, the cp miniwindow has disappeared T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: and won't activate after repeatedly disabling & enabling the plugins T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: tried any of the reset/windowws commands in 'bcp' ? T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: what is bcp? T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: commands for Bast's BP plugin T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: er, no I haven't T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: where are the commands for the plugin listed? T3/r7/2019-06-20.txt.gz:{chan ch=tech}Mudd Tech: that clears it all up T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: Just type 'bcp' T3/r7/2019-06-20.txt.gz:{chan ch=tech}Mudd Tech: "Unknown command." T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: with the plugin enabled of course, can try the 'bcp windows' command to list where the window is, maybe it's behind another window, or 'bcp reset' resets to defaults T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: how do I activate the commands? T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: You sure the plugin is enabled? T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: yes T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: xBroadcast_CP v2091 phelp Windows associated with this plugin T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: 'bcp help' then I guess T3/r7/2019-06-20.txt.gz:{chan ch=tech}Tech: Classic Vost sighs. T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: you have miniwin_cp and xBroadcast_CP both enabled? T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: yes, Daak T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: I have tried disabling and enabling both a few times T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: what command gave the 'xBroadcast_CP v2091 phelp' stuff, was it 'bcp windows' ? T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: yes T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: was there now 'xBroadcast_CP v2100 xBroadcast_CP_help Info' under that with the Shown/hidden/LEft/Top/Height/Width and the ID of the window? T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: yes T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: And was Shown = true and Hidden = false? T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: ah, shown false T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: hidden false T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: You're just using the CP window or were you using the Events window before? Events combines quest/cp/gq into the same window T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: I don't have a combined events window T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: I have Bast's gq & quest plugins too, but they don't work T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: they haven't worked for months T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: does the command 'mcp' do anything? T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: Name : miniwin_cp T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: followed by info T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: 'mcp windows' also have Shown = false? T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: yes, shown false T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: try 'mcp reset' T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: shown still false T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: ok, I finished my previous campaign T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: started new campaign and the miniwin "technically" shows T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: but it is extremely narrow T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: nothing readable T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: Maybe update to v2100, you're on v2091 it seems, not sure if it'll help or not: https://github.com/endavis/bastmush T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: yes, I am on 2091 T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: ok, thanks T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: You might also try using miniwin_events instead.. I use that and I'm on v2100 with no issues thus far T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: Another thing to try is rather than enable/disable the plugins, try remove then reinstall. T3/r7/2019-06-20.txt.gz:{chan ch=tech}(object) Daak Tech: gotta go, good luck T3/r7/2019-06-20.txt.gz:{chan ch=tech}Classic Vost Tech: thank you Daak T3/r7/2019-06-20.txt.gz:{chan ch=tech}Torkin Tech: how can i make backspace not delete emails in outlook (can just google it but if everyone knows off top of head plz) T3/r7/2019-06-20.txt.gz:{chan ch=tech}Scrubbly Tech: can anyone help me figure out why doing %%ansi(yellow) is showing [53m? T3/r7/2019-06-20.txt.gz:{chan ch=tech}TrEz Tech: how do you right click on mac T3/r7/2019-06-20.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: hold control or command or something T3/r7/2019-06-20.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: or throw away your mac and buy windows T3/r7/2019-06-20.txt.gz:{chan ch=tech}Lustrous Luc Tech: throw it away and buy a windows pc T3/r7/2019-06-20.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: beat you to it T3/r7/2019-06-20.txt.gz:{chan ch=tech}Tinypotato Tech: either two finger tap on the touchpad or tap on the right side of the touchpad T3/r7/2019-06-20.txt.gz:{chan ch=tech}TrEz Tech: oh ye 2 fingers works T3/r7/2019-06-20.txt.gz:{chan ch=tech}TrEz Tech: thanks' T3/r7/2019-06-20.txt.gz:{chan ch=tech}TrEz Tech: do you know how to reverse F1-9 to be like T3/r7/2019-06-20.txt.gz:{chan ch=tech}TrEz Tech: straight up instead of fn+f1 T3/r7/2019-06-20.txt.gz:{chan ch=tech}Heracles Tech: system pref > keyboard T3/r7/2019-06-20.txt.gz:{chan ch=tech}Heracles Tech: You can toggle them to be F keys or the apple shortcuts. T3/r7/2019-06-20.txt.gz:{chan ch=tech}TrEz Tech: okay T3/r7/2019-06-20.txt.gz:{chan ch=tech}TrEz Tech: oh ye found it, nice T3/r7/2019-06-20.txt.gz:{chan ch=tech}TrEz Tech: works, feels good T3/r7/2019-06-21.txt.gz:{chan ch=tech}Renlaiel Tech: hi all T3/r7/2019-06-21.txt.gz:{chan ch=tech}Renlaiel Tech: who T3/r7/2019-06-21.txt.gz:{chan ch=tech}Scrubbly Tech: can anyone help me with a question on colors for cmud? T3/r7/2019-06-21.txt.gz:{chan ch=tech}GabeLogan Tech: ANy easy way to mute all sounds from mush? T3/r7/2019-06-21.txt.gz:{chan ch=tech}Rastlin Tech: 'spmute' T3/r7/2019-06-21.txt.gz:{chan ch=tech}GabeLogan Tech: thanks T3/r7/2019-06-21.txt.gz:{chan ch=tech}Endymion Tech: I assume that's only if you are using the sound pack plugin, nothing to do with all sounds from mush T3/r7/2019-06-21.txt.gz:{chan ch=tech}Kobus Tech: not too sure what sounds there are from mush without soundpack... T3/r7/2019-06-21.txt.gz:{chan ch=tech}Rastlin Tech: none unless you create your own triggers with sound added. T3/r7/2019-06-21.txt.gz:{chan ch=tech}Rastlin Tech: at least i think so. T3/r7/2019-06-21.txt.gz:{chan ch=tech}Kylia Tech: There's a beep when you page someone, I think. T3/r7/2019-06-21.txt.gz:{chan ch=tech}Endymion Tech: the point is that sounds can come from lots of different plugins, and if you dont have that sound pack then the command is useless T3/r7/2019-06-21.txt.gz:{chan ch=tech}Kobus Tech: right, whatever script is making the sounds is the one you want to focus on.. personally my mush wont play sounds for whatever reason T3/r7/2019-06-21.txt.gz:{chan ch=tech}GabeLogan Tech: command worked great T3/r7/2019-06-21.txt.gz:{chan ch=tech}Endymion Tech: I thought there's a function that will enable/disable sound but I cant find it T3/r7/2019-06-21.txt.gz:{chan ch=tech}Kobus Tech: ive never been able to get mushclient to play any sound file. so idk T3/r7/2019-06-21.txt.gz:{chan ch=tech}Kallaz Tech: does anyone know which plugin I need to look into when mapper goto starts saying unknown command? T3/r7/2019-06-21.txt.gz:{chan ch=tech}Endymion Tech: Aardwolf_GMCP_Mapper I think T3/r7/2019-06-21.txt.gz:{chan ch=tech}Kallaz Tech: Thank you! T3/r7/2019-06-21.txt.gz:{chan ch=tech}Kallaz Tech: I must have gotten drunk and removed that at some point T3/r7/2019-06-22.txt.gz:{chan ch=tech}Valdaloucha Tech: how do you change the color of a specific channel? T3/r7/2019-06-22.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: help colorset T3/r7/2019-06-22.txt.gz:{chan ch=tech}Valdaloucha Tech: perfect. Thank you T3/r7/2019-06-22.txt.gz:{chan ch=tech}TrEz Tech: make masaki channel pink, you dont have to tell them T3/r7/2019-06-22.txt.gz:{chan ch=tech}TrEz Tech: I know you just joined T3/r7/2019-06-22.txt.gz:{chan ch=tech}Valdaloucha Tech: I knew that you know that I just joined. T3/r7/2019-06-22.txt.gz:{chan ch=tech}Dillon Tech: we knew T3/r7/2019-06-22.txt.gz:{chan ch=tech}Timaa Timas Tech: i know that you know that he knows that you just joined T3/r7/2019-06-22.txt.gz:{chan ch=tech}Valdaloucha Tech: I basically blurted it out :D T3/r7/2019-06-22.txt.gz:{chan ch=tech}Dillon Tech: Im trying to do something like this: remember 1 2 3, and when i type show to should say, i remember 1, 2, 3. Basically i want it to save on the script so that when i close mush and reopen, it should be there. is there a way to do that? T3/r7/2019-06-22.txt.gz:{chan ch=tech}Trachx Tech: setvariable / getvariable T3/r7/2019-06-22.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: hey T3/r7/2019-06-22.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: I need access to the IMDB for a play I've starred in T3/r7/2019-06-22.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: is it really that complicated? T3/r7/2019-06-22.txt.gz:{chan ch=tech}Heracles Tech: When resizing the ascii map via the hotspot, the map stays tucked into the top left corner and itself doesn't resize. Anyone know how to get it to at least center itself? See:https://i.imgur.com/RCwYmwm.png T3/r7/2019-06-23.txt.gz:{chan ch=tech}Dillon Tech: anyone know why all of a sudden mygraphics card does not support direct x 10 T3/r7/2019-06-23.txt.gz:{chan ch=tech}Trachx Tech: it is too old T3/r7/2019-06-23.txt.gz:{chan ch=tech}Principium Tech: Which card do you have? T3/r7/2019-06-23.txt.gz:{chan ch=tech}Dillon Tech: it was workiing really well before my 'upgrade' to 1903 T3/r7/2019-06-23.txt.gz:{chan ch=tech}Trachx Tech: just like one day intel processors were supported by Win 7 and next day they became unsupported T3/r7/2019-06-23.txt.gz:{chan ch=tech}Dillon Tech: i was playing a game and that message popped up, guess im going back to the previous version T3/r7/2019-06-23.txt.gz:{chan ch=tech}Trachx Tech: https://forums.geforce.com/default/topic/1107068/geforce-drivers/windows-10-version-1903-and-nvidia-gpu-driver-425-31-nvidia-control-panel/1/ T3/r7/2019-06-23.txt.gz:{chan ch=tech}Dillon Tech: it is an old card, a radeon hd 6700 T3/r7/2019-06-23.txt.gz:{chan ch=tech}Dillon Tech: it is an old card, a radeon hd 6700m T3/r7/2019-06-23.txt.gz:{chan ch=tech}Trachx Tech: that is if you use nvidia, just wait for new drivers T3/r7/2019-06-23.txt.gz:{chan ch=tech}Dillon Tech: guessing amd will update T3/r7/2019-06-23.txt.gz:{chan ch=tech}Dillon Tech: ty T3/r7/2019-06-23.txt.gz:{chan ch=tech}Trachx Tech: most likely it won't be updated T3/r7/2019-06-23.txt.gz:{chan ch=tech}Trachx Tech: https://community.amd.com/thread/238298 , as legacy product it will just get basic support I guess - so you can display 2D T3/r7/2019-06-23.txt.gz:{chan ch=tech}Minibeast Wario Tech: is there any way to read your tells from a day ago, if you have logged off inbetween T3/r7/2019-06-23.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: don't they go to personal board if missed? T3/r7/2019-06-23.txt.gz:{chan ch=tech}The Stoner Sinder Tech: check your personal forum? T3/r7/2019-06-23.txt.gz:{chan ch=tech}Luc Tech: there is T3/r7/2019-06-23.txt.gz:{chan ch=tech}Kazuma Tech: setup a plugin to write all conversations to a log file, Abelinc does that and I find those logs extremely useful :) T3/r7/2019-06-23.txt.gz:{chan ch=tech}Luc Tech: but it may seem strenuous T3/r7/2019-06-23.txt.gz:{chan ch=tech}Luc Tech: in your mushclient folder there is a folder titled logs T3/r7/2019-06-23.txt.gz:{chan ch=tech}Luc Tech: in that folder is a txt document title aardwolfchatlog T3/r7/2019-06-23.txt.gz:{chan ch=tech}Luc Tech: opening that document will take a minute, and you scroll all the way to the bottom to get the most recent messages, it is sorted by date and time, is huge, shows the color codes, but logs every channel message and every social/tell T3/r7/2019-06-23.txt.gz:{chan ch=tech}Luc Tech: so if you have an approximate time of the tells from yesterday you can go to the bottom of that log, scroll up to the day, find the time, and patiently find all tells from the entire day T3/r7/2019-06-23.txt.gz:{chan ch=tech}Cariador Tech: Is there a way to navigate to area entrances with the mapper plugin, without knowing a room name? Like a portal-aware "runto?" T3/r7/2019-06-23.txt.gz:{chan ch=tech}Endymion Tech: no, but S&D does that with "xrt " T3/r7/2019-06-23.txt.gz:{chan ch=tech}Cariador Tech: I guess I could always set up aliases with room IDs. S&D to investigate is the one on github.com/aardthridi? T3/r7/2019-06-24.txt.gz:{chan ch=tech}Kazuma Tech: I just finished putting my modlet code on github https://i.imgur.com/17YotOX.png https://github.com/xekon/AardwolfMudlet T3/r7/2019-06-24.txt.gz:{chan ch=tech}Endymion Tech: looks good man T3/r7/2019-06-24.txt.gz:{chan ch=tech}Classic Vost Tech: my Bast plugin cp miniwindow has stopped updating T3/r7/2019-06-24.txt.gz:{chan ch=tech}Classic Vost Tech: how can I reset it? T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: Well, that was unexpected. Dropbox now only allows you to link 3 devices. Interesting. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: Unless, of course, you upgrade to their Dropbox Plus. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: Guess I'll find another cloud service to use, out of the hundreds out there. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: I think there was a better one? Cloudshare or something? T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: Probably. Onedrive, Google Drive, all better anyway. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: Just google "best cloud storage services" :p T3/r7/2019-06-24.txt.gz:{chan ch=tech}Xinael Tech: google drive is basically the same thing, and handy if you're in the Google ecosystem... it depends on what you need though, if it's more about file sharing, syncing between devices, or backup/storage T3/r7/2019-06-24.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Xinael Tech: backblaze is pretty good if you're looking for backup, there are some good encrypted file-syncing services like there's one called Sync, if that's more what you care about T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: Honestly, it's just about having access to certain files across multiple devices. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Xinael Tech: I've used Sync for that, it worked pretty well. They do 5GB free & 500GB for $50/yr or 2TB for $96/yr T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: Eew on the 5GB, though. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Xinael Tech: most of them give < 20GB in the free tier, you get what you pay for T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: Yeah. But even Onedrive gives 10GB, and Google gives 15. Dropbox is at 2GB, though, heh. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: Mega offers 50GB for free, interesting. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Saurmac Tech: im new to this game and i downloaded the mush client..i resized and setup the windows. i exited the client and none of it saved. can anyone assist or offer tips? T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: Where did you install it? T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: What directory, that is T3/r7/2019-06-24.txt.gz:{chan ch=tech}Saurmac Tech: just to aardwolf in the open directory as i was concerned about compatiability. however i ran as administrator T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: As long as you didn't install it in a protected directory like Program Files. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Saurmac Tech: no i didnt just for that reason T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: Reposition them again, then do two things: aard layout save mylayout - and also click the Save icon on the toolbar. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: That way, if it ever goes awry again, you can do aard layout restore mylayout T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: Also, welcome to Aardwolf. :) T3/r7/2019-06-24.txt.gz:{chan ch=tech}Saurmac Tech: thanks. ive played 3k for 25 years and used zmud or cmud the entire time. i got tired of mapping and having to make scripts. this game and client seem really nice and user friendly T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: It's also constantly in development. Fiendish maintains the Aardwolf package of Mushclient, and has been able to get new features added because he does work closely with Nick Gammon, who is the author of MUSHclient. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: There's tons of support on MUSHclient. I'm an old zMUDder/CMUDder myself, but switched to MUSH after Zugg stopped development on CMUD. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Wandermoor Tech: Speaking of MUSH client,how would you make a simple spell alias? T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: Depends on what you're wanting it to do. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: You can make a MUDside alias for simple spell alias. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Wandermoor Tech: ok T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: alias ch cast harm, for example, and ch tiger will cast harm on the tiger. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Wandermoor Tech: thanks Crowley T3/r7/2019-06-24.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: Hmm, went with iDrive. 5GB free storage, touted as one of the better cloud storage services, and you get 2TB yearly for something like $70. T3/r7/2019-06-24.txt.gz:{chan ch=tech}Minibeast Wario Tech: how do you go back in you notes on personal to days ago to retrieve your mesages T3/r7/2019-06-24.txt.gz:{chan ch=tech}Endymion Tech: note list ? T3/r7/2019-06-24.txt.gz:{chan ch=tech}Negader Tech: forum pers::note list T3/r7/2019-06-24.txt.gz:{chan ch=tech}Minibeast Wario Tech: anyone available T3/r7/2019-06-24.txt.gz:{chan ch=tech}Endymion Tech: ask away sir T3/r7/2019-06-24.txt.gz:{chan ch=tech}Mr. Crowley Tech: Depends on how long ago your notes were. T3/r7/2019-06-25.txt.gz:{chan ch=tech}BrokenBot Covenant Tech: anybody knows how do i turn off copy to clipboard option in mush? T3/r7/2019-06-25.txt.gz:{chan ch=tech}No pants Travis Tech: can i put lua code dirrectly into the send box of a mush trigger T3/r7/2019-06-25.txt.gz:{chan ch=tech}Tech: sure, use the send-to drop-down to script instead of world T3/r7/2019-06-25.txt.gz:{chan ch=tech}No pants Travis Tech: thanks T3/r7/2019-06-25.txt.gz:{chan ch=tech}No pants Travis Tech: so if i wanna match one word then ignore everything after that i would use \. after the word that needs to be matched correct? T3/r7/2019-06-25.txt.gz:{chan ch=tech}No pants Travis Tech: like i wanna just match --> TICK <-- and ignore everythign after T3/r7/2019-06-25.txt.gz:{chan ch=tech}No pants Travis Tech: im way to used to cmud and never learned regex T3/r7/2019-06-25.txt.gz:{chan ch=tech}Tinypotato Tech: --> TICK <--.+ T3/r7/2019-06-25.txt.gz:{chan ch=tech}No pants Travis Tech: okay sorry im still working through mush stuff T3/r7/2019-06-25.txt.gz:{chan ch=tech}Gaelehad Tech: how do you get skills like precision to work properly in bast's spellup script T3/r7/2019-06-25.txt.gz:{chan ch=tech}Luc Tech: bsp togglespellup? look through bsp help T3/r7/2019-06-25.txt.gz:{chan ch=tech}Gaelehad Tech: silly thing has a recovery and i'm trying to remember if there is a way to work with that T3/r7/2019-06-25.txt.gz:{chan ch=tech}Real ninja Starling Tech: 'bsp rail blow' didn't work, what did I do wrong D: T3/r7/2019-06-25.txt.gz:{chan ch=tech}Real ninja Starling Tech: how do i accelerate T3/r7/2019-06-25.txt.gz:{chan ch=tech}Real ninja Starling Tech: ???? T3/r7/2019-06-25.txt.gz:{chan ch=tech}Real ninja Starling Tech: my computer needs an amphetamine T3/r7/2019-06-25.txt.gz:{chan ch=tech}Gaelehad Tech: fill the gas tank first T3/r7/2019-06-25.txt.gz:{chan ch=tech}Luc Tech: press the gas? T3/r7/2019-06-25.txt.gz:{chan ch=tech}Principium Tech: Jumping off a cliff works aswell. 0/10 would not recommend though. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Real ninja Starling Tech: only when in full afterburner T3/r7/2019-06-25.txt.gz:{chan ch=tech}Luc Tech: how do you clear a cexit? T3/r7/2019-06-25.txt.gz:{chan ch=tech}Gaelehad Tech: mapper help exits T3/r7/2019-06-25.txt.gz:{chan ch=tech}Gaelehad Tech: or right click on the minimap and remove it T3/r7/2019-06-25.txt.gz:{chan ch=tech}Luc Tech: thanks T3/r7/2019-06-25.txt.gz:{chan ch=tech}Sheriff Shindo Tech: who's finger info has the link to setting up tintin with tmux? T3/r7/2019-06-25.txt.gz:{chan ch=tech}Zoot Tech: is that cheezburger's? T3/r7/2019-06-25.txt.gz:{chan ch=tech}Sheriff Shindo Tech: let me see T3/r7/2019-06-25.txt.gz:{chan ch=tech}Sheriff Shindo Tech: yes it is, thank you very much T3/r7/2019-06-25.txt.gz:{chan ch=tech}Zoot Tech: huzzah! T3/r7/2019-06-25.txt.gz:{chan ch=tech}Mr. Crowley Tech: Ridiculous. Last update on Windows 10 was forced, broke my laptop to where the Start menu wouldn't open and nothing was fully working. I fixed that last night, and now the hard drive is 35% fragmented... Joy. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: hirens for the win T3/r7/2019-06-25.txt.gz:{chan ch=tech}Mr. Crowley Tech: Eh, I just reinstalled Windows 10. T3/r7/2019-06-25.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Funny enough, I set up a new laptop yesterday. Updated it's stuff. Today, the network driver wouldn't work T3/r7/2019-06-25.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: It doesn't have lan port, so can't connect at all T3/r7/2019-06-25.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Had to hard reset windows T3/r7/2019-06-25.txt.gz:{chan ch=tech}Tech: Mr. Crowley comforts A Nimwit Bamboo. T3/r7/2019-06-25.txt.gz:{chan ch=tech}KnightLord Throxx Tech: i had this bright idea to gag an output. about an hour later i realized that cancelled out up to 5 triggers. oops T3/r7/2019-06-25.txt.gz:{chan ch=tech}Mr. Crowley Tech: Did you check Keep evaluating? T3/r7/2019-06-25.txt.gz:{chan ch=tech}KnightLord Throxx Tech: ... if you have something gagged, and with keep eval, does it NOT cancel those triggers?? T3/r7/2019-06-25.txt.gz:{chan ch=tech}KnightLord Throxx Tech: cause i didnt actually see it not work, i just was looking thru triggers for something else and thought of it. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Mr. Crowley Tech: It shouldn't cancel out the triggers, no. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Useful Hadar Tech: pft who needs tech T3/r7/2019-06-25.txt.gz:{chan ch=tech}KnightLord Throxx Tech: oh cool... now i have to find a low level agro mob to test it T3/r7/2019-06-25.txt.gz:{chan ch=tech}Tech: Mr. Crowley grins evilly. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Mr. Crowley Tech: Find some in Jotun. T3/r7/2019-06-25.txt.gz:{chan ch=tech}KnightLord Throxx Tech: ty, was jsut perusing the list in my head : T3/r7/2019-06-25.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Mr. Crowley Tech: Can even find some in Gallows. T3/r7/2019-06-25.txt.gz:{chan ch=tech}KnightLord Throxx Tech: but that dragon will do fine T3/r7/2019-06-25.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-25.txt.gz:{chan ch=tech}KnightLord Throxx Tech: woot, it worked, ty ty T3/r7/2019-06-25.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-25.txt.gz:{chan ch=tech}KnightLord Throxx Tech: whats the coomand to make the scroll speed faster? T3/r7/2019-06-25.txt.gz:{chan ch=tech}Mr. Crowley Tech: fast? T3/r7/2019-06-25.txt.gz:{chan ch=tech}KnightLord Throxx Tech: Your output speed cannot get any faster. :,( T3/r7/2019-06-25.txt.gz:{chan ch=tech}KnightLord Throxx Tech: "She's givin' her all she's got, C'ptn!" T3/r7/2019-06-25.txt.gz:{chan ch=tech}Anarchic Anaristos Tech: tech porn? T3/r7/2019-06-25.txt.gz:{chan ch=tech}KnightLord Throxx Tech: Star Trek? T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: disgusting trekkie porn. Two twi'leks would be much better T3/r7/2019-06-25.txt.gz:{chan ch=tech}KnightLord Throxx Tech: i agree T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: I think a blue twi'lek and a purple twi'lek would suit me fine. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Blackshield Tech: I dunno that babe that played the vulcan on enterprise wasn't too bad T3/r7/2019-06-25.txt.gz:{chan ch=tech}Wandermoor Tech: T'Pol? T3/r7/2019-06-25.txt.gz:{chan ch=tech}Blackshield Tech: nod T3/r7/2019-06-25.txt.gz:{chan ch=tech}KnightLord Throxx Tech: ok, tech question. Sometimes after combat or other actions, my main box doesnt scroll all the way to the bottom, like the last 2 lines are there, but it doesnt scroll down (Mush) T3/r7/2019-06-25.txt.gz:{chan ch=tech}KnightLord Throxx Tech: agree T3/r7/2019-06-25.txt.gz:{chan ch=tech}Luc Tech: I have been experiencing the same T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: welp, gg fellas, I got hired to be a network admin for my friend's business he's trying to get off the ground. I don't know what to charge him though and I trust this community to help me through some of that. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: oh, that? That happens a lot on other muds. Just hit enter. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Blackshield Tech: is it by the hour? if so 40 per T3/r7/2019-06-25.txt.gz:{chan ch=tech}Endymion Tech: 40 cents per minute? T3/r7/2019-06-25.txt.gz:{chan ch=tech}Blackshield Tech: nod T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: mind you they're a friend and want a fair price. Please give me something I can use that competes with the market T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: 40 an hour is good then? T3/r7/2019-06-25.txt.gz:{chan ch=tech}Welding Tech: just google other similar jobs in your area and see what they pay, then adjust what you think is fair from there T3/r7/2019-06-25.txt.gz:{chan ch=tech}Luc Tech: it depends on your skillset and their requirements, and ability to pay T3/r7/2019-06-25.txt.gz:{chan ch=tech}Ainent Tech: and location T3/r7/2019-06-25.txt.gz:{chan ch=tech}Luc Tech: my brother helped a company with startup, and accepted stock as his payment, and now he works there T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: yes, so this is what I'll probably need for advice. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: I don't think this guy is going public though T3/r7/2019-06-25.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Depends on your responsibilities T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: I think he just wants help figuring out startup and being above board. T3/r7/2019-06-25.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: How big is the network, how much work is needed to maintain it, how many people are working on it T3/r7/2019-06-25.txt.gz:{chan ch=tech}Endymion Tech: what is this business that needs a network admin? T3/r7/2019-06-25.txt.gz:{chan ch=tech}Luc Tech: you could do a consulting fee, which includes credit for the use of any coding you do T3/r7/2019-06-25.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Also, did you ask him if you're actually getting paid :p T3/r7/2019-06-25.txt.gz:{chan ch=tech}Endymion Tech: he's in his mom's basement and paying with cheerios T3/r7/2019-06-25.txt.gz:{chan ch=tech}Tech: Exiled To Aphelion . o O ( did he mean '...actually getting laid'? ) T3/r7/2019-06-25.txt.gz:{chan ch=tech}Endymion Tech: just needs the wifi set up to reach that far T3/r7/2019-06-25.txt.gz:{chan ch=tech}Luc Tech: the problem is, if you don't get some kind of paperwork, and the company takes off, nobody has to give you anything, even if you started the framework for the entire IT side of the company as a 'favor to a friend' T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: I don't have the details but I'm definitely getting paid for my time. He's going to get back to me tomorrow but I'm glad I have you guys to fall back on if I need help sorting stuff out. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Endymion Tech: problem is, Zuloft, you're on the hook for our consulting services T3/r7/2019-06-25.txt.gz:{chan ch=tech}Varrion Tech: lmao T3/r7/2019-06-25.txt.gz:{chan ch=tech}Mr. Crowley Tech: Now you owe us each a percentage. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Ainent Tech: laughs. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: god damnit! T3/r7/2019-06-25.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: I charge per character typeddddddddddddddddddddddddddddddddddddddddddddddddd btw T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: hang on I'll be back... T3/r7/2019-06-25.txt.gz:{chan ch=tech}Ainent Tech: Crowley, I vaguely remember a char named Crowley from Split Infinity mud years ago (no longer around). you same person? T3/r7/2019-06-25.txt.gz:{chan ch=tech}Mr. Crowley Tech: No. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: SPLIT INFINITY!! T3/r7/2019-06-25.txt.gz:{chan ch=tech}Tech: Happy Pill Zuloft was ponjo the lemur. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Ainent Tech: Ponjo rings a bell T3/r7/2019-06-25.txt.gz:{chan ch=tech}Endymion Tech: I used to live in a children's television show T3/r7/2019-06-25.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Were you a child star Endy T3/r7/2019-06-25.txt.gz:{chan ch=tech}Endymion Tech: I don't like to talk about it T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: I did a little bit of time as a coder on split. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: name was Arawn, and my test char was spider-man T3/r7/2019-06-25.txt.gz:{chan ch=tech}Ainent Tech: I did too actually, not for long though. never got anything into production though T3/r7/2019-06-25.txt.gz:{chan ch=tech}Ainent Tech: I was justin ... I think my dev char was Ainent T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: I was makin the insane asylum area T3/r7/2019-06-25.txt.gz:{chan ch=tech}Ainent Tech: SI was my first mud T3/r7/2019-06-25.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Guys need help T3/r7/2019-06-25.txt.gz:{chan ch=tech}Mr. Crowley Tech: Speak for yourself. I need no help! T3/r7/2019-06-25.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: This new windows 10 laptop decided to update itself, and now it can't locate wifi routers T3/r7/2019-06-25.txt.gz:{chan ch=tech}Tech: Mr. Crowley comforts A Nimwit Bamboo. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Endymion Tech: roll back the wireless adapter driver T3/r7/2019-06-25.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Rollback button is grayed out T3/r7/2019-06-25.txt.gz:{chan ch=tech}Mr. Crowley Tech: Do what I had to do: Install Windows 10 (get the install media, and just run the setup.exe from the iso) T3/r7/2019-06-25.txt.gz:{chan ch=tech}Ainent Tech: I think your problem is the OS T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: I've had that problem before. You're gonna need to reinstall the driver for the adapter I think bud. T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: or find it on the web. Reinstalling is a pain in the neck T3/r7/2019-06-25.txt.gz:{chan ch=tech}Ainent Tech: I was trying to make a Mac vs. Windows joke T3/r7/2019-06-25.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: especially for laptops T3/r7/2019-06-26.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: So, still couldn't get this wifi adapter to work T3/r7/2019-06-26.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: It was working yesterday just fine. Now when we turned it on, meh T3/r7/2019-06-26.txt.gz:{chan ch=tech}KnightLord Throxx Tech: Quack T3/r7/2019-06-26.txt.gz:{chan ch=tech}Ganid Tech: So anybody uses DuckClient? T3/r7/2019-06-26.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: The 'client' command shows none T3/r7/2019-06-26.txt.gz:{chan ch=tech}Ganid Tech: Oh. That's new info. Thank you. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Well, DuckClient could be one of the unknowns or unidentified. T3/r7/2019-06-26.txt.gz:{chan ch=tech}KnightLord Throxx Tech: Quack T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: But I've never even heard of it. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Ganid Tech: Seems so. I'll change into a new one. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Huko Tech: Any addons that gets a bunch of keys on restarts and stuff T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Considering you have to kill mobs most of the time, that'd be illegal. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Huko Tech: I didn't think of that T3/r7/2019-06-26.txt.gz:{chan ch=tech}Huko Tech: dangit i just want aa shortcut for evrything T3/r7/2019-06-26.txt.gz:{chan ch=tech}No pants Travis Tech: anyone know why mush is triggering my prompot every few seconds T3/r7/2019-06-26.txt.gz:{chan ch=tech}No pants Travis Tech: prompt T3/r7/2019-06-26.txt.gz:{chan ch=tech}No pants Travis Tech: just my normal prompt, i dont see anything af first i thought it was the gagging of channels but even when there are no words coming in its doing it T3/r7/2019-06-26.txt.gz:{chan ch=tech}No pants Travis Tech: how do i ass macros to mush, i wanna be able to use alt+numpad T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: You'll want to look into the Accelerator function. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Or Ctrl+Shift+2 and look around there. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Alternatively, you can use Ctrl+numpad by looking at the Keypad options under Configure. You can use the numpad for normal movement, and use ctrl+numpad for other stuff. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: I like this, 2 TB of storage for $6.95... of course, after next year, it'll be $69.50 a year, but I'll take it. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: vs buying an external? T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Who says I don't buy an external next year? :p T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: I already have 3 external drives, totalling about 7 TB. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: that's a lot of porn man T3/r7/2019-06-26.txt.gz:{chan ch=tech}Skyris Tech: a man of culture i see T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: This is where I'd say "Well, your mom's a big person." But I'm going to be nice and explain that it's the thousands of movies and TV show episodes I have. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Plus the thousands of music files I have. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: I can take it; I know you're joking. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Skyris Tech: Crowley , only streams online. no time to download in 2019 T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Reminds me of "I just had my first kiss!" -- "Dude, your mom doesn't count." -- "No, but yours does." T3/r7/2019-06-26.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: lol T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Skyris: I have a plex server that I use to cater to several of my friends and family. :p T3/r7/2019-06-26.txt.gz:{chan ch=tech}Skyris Tech: oof T3/r7/2019-06-26.txt.gz:{chan ch=tech}Tech: Mr. Crowley grins evilly. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: I just added my mom to my server. She wants all of the old Archie episodes. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Skyris Tech: anyway im returning from a long absent of leave to aard, how do i copy and paste with color again off the client , i remember being able to do it T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Good ol' Archie Bunker. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Ctrl+D. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: ...those were the days... T3/r7/2019-06-26.txt.gz:{chan ch=tech}Sheriff Shindo Tech: ctrl d T3/r7/2019-06-26.txt.gz:{chan ch=tech}Skyris Tech: thanks T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Also, welcome back. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Skyris Tech: always good to slam your D with ctrl T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: And if you haven't upgrade to the latest version of AardMUSH. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: now with health bars and communication window T3/r7/2019-06-26.txt.gz:{chan ch=tech}Skyris Tech: dont think id wanna do that, moving mapper over and all my scripts, oof T3/r7/2019-06-26.txt.gz:{chan ch=tech}Skyris Tech: have a 2013 version T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: You don't have to move anything over. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: You should be able to do the installer. I'd copy your stuff to a backup folder first, though, just to make sure. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: But the installer from the site makes it a breeze. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Skyris Tech: got all the bells and whistle , just one question have you experienced when using a script for it to freeze then you cant see any new writing on your core screen , only scan works T3/r7/2019-06-26.txt.gz:{chan ch=tech}Skyris Tech: this happens to me when using auctitem script T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: A lot of bugs have been fixed, and if you have one that's 6 years old... T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Not gonna find any real support here, because you're ages behind. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Skyris Tech: ive played on the new one , its honestly no different then what i currently have T3/r7/2019-06-26.txt.gz:{chan ch=tech}Frostpaw Tech: yes, I felt that way but I adapted eventually T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: You have tabbed Comm log windows? Split screen? *gasp* T3/r7/2019-06-26.txt.gz:{chan ch=tech}Skyris Tech: yes T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Split screen just came in last couple of versions, like legit split screen. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Like zMUD/CMUD split screen. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: But I mean, to each their own, obviously. But you'll definitely find it hard to get support from a version that's from 2013. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Skyris Tech: anyway isnt most of the new stuff just team up with that one scripter and aply some simple things that are normally put on with scripts T3/r7/2019-06-26.txt.gz:{chan ch=tech}Skyris Tech: fiendish scripts T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: No. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Fiendish has done about 90% of the stuff, but has added Pwar's soundpack. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: But just about everything on AardMUSH has been Fiendish, since he maintains it anyway. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: And some of the newer plugins from people may not work with older versions, either. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Skyris Tech: well , i got to t9 on this client im pretty sure it not gonna blow up now. but thanks T3/r7/2019-06-26.txt.gz:{chan ch=tech}Tech: Mr. Crowley snickers softly. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Tech: Skyris licks Mr. Crowley. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Endymion Tech: Does Fiendish use the latest mushclient release in his? T3/r7/2019-06-26.txt.gz:{chan ch=tech}Sheriff Shindo Tech: he tries to T3/r7/2019-06-26.txt.gz:{chan ch=tech}Endymion Tech: there's a good amount of bug fixes from 3/29/19 v5.06 which is why I'm asking. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: He does, yes. In fact, he had to upgrade to the newest beta because Nick added a feature in it that he uses for the split screen. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Wraiven Tech: is there any way to reset the statsDB logs created by the bast plugin? they're getting huge T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Delete the database. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Wraiven Tech: i have been deleting them, but then the new files created are the same size T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Interesting. Might need to delete the state file, then. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Wraiven Tech: ah, where might i find it T3/r7/2019-06-26.txt.gz:{chan ch=tech}Endymion Tech: is it a plugin or mush setting that "underlines" hyperlinks in output window? T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Have to find the plugin ID for the plugin, then go to plugins/state and look for that plugin ID after the -. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Plugin, Endy. Hyperlink_URL, I think. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Endymion Tech: Thanks T3/r7/2019-06-26.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Wraiven Tech: i'll try that thanks T3/r7/2019-06-26.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods at Wraiven. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Tech: Mr. Crowley now goes off to do karaoke, after 10 minutes. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Endymion Tech: Hmm, it's not that plugin. Wife and I both have it, but hers are underlined and mine aren't. T3/r7/2019-06-26.txt.gz:{chan ch=tech}Endymion Tech: Ahh it's world config->font->uncheck show underline T3/r7/2019-06-26.txt.gz:{chan ch=tech}Endymion Tech: so still URL but no underlines T3/r7/2019-06-26.txt.gz:{chan ch=tech}Mr. Crowley Tech: Oh, interesting. I thought it was all in the plugin. My bad! T3/r7/2019-06-27.txt.gz:{chan ch=tech}Endymion Tech: my storefromoutside on comm log isn't time stamping T3/r7/2019-06-27.txt.gz:{chan ch=tech}Endymion Tech: also I want HP/%HP instead of HP/HP %HP T3/r7/2019-06-27.txt.gz:{chan ch=tech}Endymion Tech: Can I speak with the Manager? T3/r7/2019-06-27.txt.gz:{chan ch=tech}Zivan Tech: I'm using tintin++ with one of the aardwolf scripts off the tintin++ website that shows a tick timer with a countdown of 30 secs. Does anyone know how to disable the tick timer? T3/r7/2019-06-27.txt.gz:{chan ch=tech}Busta Rhymes Tech: did you turn off autotick? that might do it T3/r7/2019-06-27.txt.gz:{chan ch=tech}Zivan Tech: I tried to turn off autotick info but timer is still going T3/r7/2019-06-27.txt.gz:{chan ch=tech}Zivan Tech: how do you enable the mini map for aard? T3/r7/2019-06-27.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: my health bars aren't locking to the bottom of the screen like I like, and my communication log is gone. T3/r7/2019-06-27.txt.gz:{chan ch=tech}(object) Daak Tech: did you try to reload already? or command : resetaard T3/r7/2019-06-27.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: resetaard only moved my maps and group info to their original positions. That sucks. T3/r7/2019-06-27.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: how do I make the main window a pop out window? T3/r7/2019-06-27.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: my client took a dump on me T3/r7/2019-06-27.txt.gz:{chan ch=tech}No pants Travis Tech: is there a way in mush to use alt+numpad for macros T3/r7/2019-06-27.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: Anyone familiar with Pwar's soundpack, I cannot get any of the sounds to work. Tried toggling them all off and on etc. I make a manual trigger to trigger the sound and it works just nothing from his scripts. T3/r7/2019-06-27.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Ask on q/a channel T3/r7/2019-06-27.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: Stop that! =p T3/r7/2019-06-27.txt.gz:{chan ch=tech}Tech: A Nimwit Bamboo attempts to explain away his thoughtless comments to Orgrimmar Stormwind. T3/r7/2019-06-27.txt.gz:{chan ch=tech}Tech: Orgrimmar Stormwind grins evilly at A Nimwit Bamboo. T3/r7/2019-06-27.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: I have a better solution T3/r7/2019-06-27.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: ask pwar T3/r7/2019-06-27.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: I haven't used it, but are the sound files in the correct location? T3/r7/2019-06-27.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: Obviously, yet if you'd finger him you'd see he hasn't been around for a little bit. =p T3/r7/2019-06-27.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: is your speaker muted T3/r7/2019-06-27.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: As I stated I was able to manually make a trigger with sounds to work. So I can hear sound unles speaker mutued is a specific config in his script? T3/r7/2019-06-27.txt.gz:{chan ch=tech}The Stoner Sinder Tech: might try spmute T3/r7/2019-06-27.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: That was it thank you Sinder. T3/r7/2019-06-27.txt.gz:{chan ch=tech}The Stoner Sinder Tech: np T3/r7/2019-06-27.txt.gz:{chan ch=tech}Zivan Tech: is anyone using mudlet on mac? I don't see mudlet in the list of clients T3/r7/2019-06-27.txt.gz:{chan ch=tech}Heracles Tech: Check out the tech board, note 7862 T3/r7/2019-06-27.txt.gz:{chan ch=tech}Mr. Crowley Tech: Kazuma uses Mudlet, I believe. T3/r7/2019-06-27.txt.gz:{chan ch=tech}Zivan Tech: Thanks, I see the post T3/r7/2019-06-27.txt.gz:{chan ch=tech}Crimzon Tech: did they change colors in aard blowtorch T3/r7/2019-06-27.txt.gz:{chan ch=tech}Endymion Tech: Upgraded to newest Aardmush. Getting some bs where all input doesn't work. Tried uninstalling stuff like "keyboard lockout" or "sound pack" and it forces re-install. I suppose I'm to blame because I knew this would happen T3/r7/2019-06-27.txt.gz:{chan ch=tech}Endymion Tech: I can see stuff trying to work, but nothing gets sent to mud T3/r7/2019-06-27.txt.gz:{chan ch=tech}Endymion Tech: Like some aliases that show me notes on screen, yet are not passed on T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: Thanks Fiendish for the aard mushclient package T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: so I'm on mushclient and when I use colorset to set channels to a specific color, I can't see bright cyan and I used 'xterm on' and 'ansi' to turn on colors, can anyone think of a reason why I can't see bright cyan in colorset? T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: type colorset brights T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: I tried that T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: it's still showing bright cyan as bright green or green T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: did you try turning off your mushclient and turning it back on? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: did what do you mean by turning it off and back on? T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: rofl T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: its a joke, what i mean is close/reopen it T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: oh yeah, I tried that too T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: did you rage at your computer yet and smack it a few times? T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: hold on, let me see... T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: even in the mini map with aard mushclient, it's showing cyan as green, very strange T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: press ALT and enter at the same time T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: go to ANSI COLOR T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: I'm going to check the ansi settings within mushclient and maybe I missed something T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: sorry, go to custom colour, and click defaults T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: ALT and enter is not doing anything, is that because I'm on a mac? T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: its possible T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: press alt8 T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: or go to GAME > CONFIGURE > CUSTOM COLOUR T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: in the drop down menu on top T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: what should I do when I'm there? T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: click DEFAULTS T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: ok still seeing green instead of cyan T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: could it be my theme or something else? T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: yes T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: what is your theme T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: the themes are pretty funky, i'd stick with charcoal T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: If you need some cool custom themes, I made a few T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: that is the one I'm using now T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: then theres no chance its that T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: hmm, yeah that didn't do it T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: I can get all the colors to look right except for bcyan T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: oh and gray looks like brown lol T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: have a play with the colors, you can customize them yourself the way i showed you T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: wait, something is not right... bwhite looks like yellow T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: my colors don't look right at all T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: I might need to customize every color T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: i dont think so T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: go download a bone stock copy of the client, install it, save the colors as a file and then load the colors in the client you're using T3/r7/2019-06-28.txt.gz:{chan ch=tech}[DEMON] Khadaji Tech: you can do that via GAME > CONFIGURE > ANSI COLOURS (SAVE or LOAD) T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: my reds and blues are off T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: does anyone else have any slow scrolling in mush and how to fix the problem? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Negader Tech: what client are you using? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: I'm using mush T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: how do you disable the text that shows under exits such as {roomchars}? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: Are there any good training plugins to keep certain stats maxed etc? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: I don't know of any public ones. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: are the non public ones clan only or like pay me gold for it? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Only ones I know are of clan ones. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Ixle Tech: If there were, we couldn't tell you about them here! T3/r7/2019-06-28.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: Ahh danka. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: You might post on tech board, though, and see what comes about. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Gaelehad Tech: anyone else having an issue with hadar.ninja not working? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: I think he was talking about moving it recently. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Gaelehad Tech: no....... T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Yes..... T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: made mention of it, at least. As far as him actually moving it, I don't know. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: what is the equivalent of using traceroute to check if my connection is lagged to aard? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: on a mac T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Ping? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Petro Tech: wow mac user T3/r7/2019-06-28.txt.gz:{chan ch=tech}Fibdag Tech: just spotlight for traceroute. Should pop you into a nice gui T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: does ping show hops like traceroute would? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: {Ping to aardmud.org Min: 111ms Avg: 115ms Max: 120ms} T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: No, but it'll show your response times. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Mine is slow. :( T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: I get a folder for traceroute when I search for traceroute in spotlight T3/r7/2019-06-28.txt.gz:{chan ch=tech}Fibdag Tech: Eh, guess that only worked in alfred. Pop into system prefs -> network -> advanced -> traceroute T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: I don't use Mac, so I don't know anything about it, honestly. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Petro Tech: is there literature on traceroute? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Nevela Tech: slow? haha Current ping: 661.858ms T3/r7/2019-06-28.txt.gz:{chan ch=tech}Tech: Mr. Crowley comforts Nevela. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: I'm afraid to check my ping now T3/r7/2019-06-28.txt.gz:{chan ch=tech}Fibdag Tech: I think you can just use traceroute on the terminal as well. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: I tried that, traceroute didn't work as a command T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: unless I got the syntax wrong T3/r7/2019-06-28.txt.gz:{chan ch=tech}Fibdag Tech: yeah `traceroute google.com` worked for me. What version you on? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Nevela Tech: what os are you using? and mtr is the best, will show you jitter as well T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Launch Network Utility. You can do this through Mac OS X Spotlight by typing Network Utility and then clicking the Top Hit. Click Traceroute. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Luc Tech: my ping is 49ms, but I'm using windows DOS prompt, so traceroute wasn't a recognized command T3/r7/2019-06-28.txt.gz:{chan ch=tech}Nevela Tech: tracert T3/r7/2019-06-28.txt.gz:{chan ch=tech}Nevela Tech: in windows T3/r7/2019-06-28.txt.gz:{chan ch=tech}Fibdag Tech: tracert on windows/dos i think T3/r7/2019-06-28.txt.gz:{chan ch=tech}Petro Tech: loved OS 10 on my Powerbook Wallstreet, but havent been on a Mac since T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: yeah, it's tracert for Windows/Dox. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: Interesting, so after 13 hops it started to experience problems but the average was about 88ms T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: Thanks Crowley, that is a useful suite of network tools T3/r7/2019-06-28.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Mine happened after 6 hops. :( T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: Where is aard servers? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Well, the third hop, request timed out. Then again, I'm also behind a VPN. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: maybe there is a helpfile on that T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Texas. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: I'm in Washington. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Petro Tech: Australia I believe T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: Not too far from them T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: ... No where NEAR Australia. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: Australia... really? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Luc Tech: eastern time is the mud time, so I assume united states, eastern time? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: I'm currently in Wyoming, though. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: My ping would be far worse if that was true T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: I just said it's in Texas. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Tech: Mr. Crowley sighs. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Luc Tech: aardmud was the 15th hop from me, I'm in tennessee T3/r7/2019-06-28.txt.gz:{chan ch=tech}Luc Tech: I don't just take the first person's word for it T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Well, take the word of someone who has been here for 13 years? :p T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Lasher resides in Florida, but the servers are in Texas. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: Is there a helpfile on the current server architecture and past moves? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: There isn't, unfortunately. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: 13 years? Impressive T3/r7/2019-06-28.txt.gz:{chan ch=tech}Petro Tech: thats good to know.. I just assumed since Aardrumor and alots of experts seem to be Australian T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Moved to Texas on 28th Jan 2017, thought. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: ... I don't know that 'a lot of experts' are from Australia... T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: Can I see where everyone is from in the world or no command for that? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: If you type 'domains', you'll see that there are only 4 people online from Australia. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: United States has 71 people online. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: It's no surprise that most players are from United States T3/r7/2019-06-28.txt.gz:{chan ch=tech}Petro Tech: oh, obvioisly I'm mistasken... the MushClient guy seemed like he is Australian... T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: He is Australian... I thought T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: That is Nick Gammon T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Nick Gammon is Australian. He created MUSHClient. Fiendish is American. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Fiendish maintains the AardMUSH package. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: aardmud.org is Hosted on Texas, Dallas, United States, 75244 -- https://aardmud.org.cutestat.com/ --> if anyone is interested or doubts me. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: Does Fiendish work with Nick to keep AardMUSH package updated? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: He does. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Well, Fiendish works on it solo, but asks Nick to add new features. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Tech: Zivan nods. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Fiendish is also a moderator on the MUSHClient forums. I'm not sure anyone else is other than Nick. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Petro Tech: no doubt here... It just made too many assumtions without doing the specific research T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: Also, 13 years may seem impressive, but there are people who have been here since Aardwolf's beginning in 1997. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Petro Tech: I* T3/r7/2019-06-28.txt.gz:{chan ch=tech}Tech: Mr. Crowley chuckles politely. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: The funny thing is, Lasher's British, living in Florida, running a game on a server in Texas, where 70% of the players are using an Australia-authored client. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Mr. Crowley Tech: And correction, since 1996, not 1997. T3/r7/2019-06-28.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: if I am trying to match a trigger on something <\d> <\d> and I want to trigger say how do I report back \d? I know with * it is %1 but that doesn't seem to work with \d T3/r7/2019-06-28.txt.gz:{chan ch=tech}Endymion Tech: can you pate your exact trigger match so we can debug it? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Endymion Tech: basically * is non-regex but d is regex so you have to enable Regular Expression T3/r7/2019-06-28.txt.gz:{chan ch=tech}Endymion Tech: basically * is non-regex but \d is regex so you have to enable Regular Expression T3/r7/2019-06-28.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: ^Intelligence : \d -1 -1 0 1 105 117$ T3/r7/2019-06-28.txt.gz:{chan ch=tech}Endymion Tech: you also need to wrap wildcards in () T3/r7/2019-06-28.txt.gz:{chan ch=tech}Endymion Tech: assuming you already checked regexp T3/r7/2019-06-28.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: so like if I wanted to say \d eventually I'd throw this all into another window but just getting started with this one T3/r7/2019-06-28.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: ^Intelligence : (\d) -1 -1 0 1 105 117$ T3/r7/2019-06-28.txt.gz:{chan ch=tech}Tinypotato Tech: in the maze room "Fortress intersection" in Goblin Fortress, I can sort of tell which direction leads to what room using the minimap. Is this information communicated in some other fashion? I don't see exits in gmcp debug, presumably because its a maze room T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: how can I improve the scrolling on mushclient? it feels as though it lags when I scroll through the output buffer T3/r7/2019-06-28.txt.gz:{chan ch=tech}Anarchic Anaristos Tech: are you sure your mouse is not running low on battery? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: no, I'm on a mac and using the touchpad T3/r7/2019-06-28.txt.gz:{chan ch=tech}Anarchic Anaristos Tech: assuming you are using the wheel T3/r7/2019-06-28.txt.gz:{chan ch=tech}Anarchic Anaristos Tech: oh, n/m T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: I tried turning on smooth scrolling and very smooth scrolling and it severely impacted the performance of mushclient T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: and on the mac I don't have a page up or page down to scroll through the mini windows like I would on windows T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: so I could avoid using the touchpad T3/r7/2019-06-28.txt.gz:{chan ch=tech}Anarchic Anaristos Tech: there is no key substitute you can use with alt or something like it? T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: not that I know of, maybe there is one T3/r7/2019-06-28.txt.gz:{chan ch=tech}Endymion Tech: what version are you using? I thought one of the recent updates fixed a crappy scroll experience T3/r7/2019-06-28.txt.gz:{chan ch=tech}Zivan Tech: version 5.07-pre T3/r7/2019-06-28.txt.gz:{chan ch=tech}Endymion Tech: well that sounds like the latest, my bad T3/r7/2019-06-28.txt.gz:{chan ch=tech}KnightLord Throxx Tech: Your Aardwolf MUSHclient package version r2040 appears to be up-to-date. T3/r7/2019-06-29.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: can you colorset your channel to have two different colors, like the channel name one color and what is said in a different color? T3/r7/2019-06-29.txt.gz:{chan ch=tech}Nakami Tech: any S&D gurus out there? im having a problem with runto to a certain areas and want to figure out how to fix it. T3/r7/2019-06-29.txt.gz:{chan ch=tech}Algaru Tech: can't say i'm any sort of expert but happy to weigh in, what's the problem? T3/r7/2019-06-29.txt.gz:{chan ch=tech}Nakami Tech: when S&D tries to runto orlando or fantasy it tells me there are over 300 rooms. but when i recall and manually runto the areas are like 7 rooms away. T3/r7/2019-06-29.txt.gz:{chan ch=tech}Nakami Tech: how do i reset the paths to a zone? i assume that might fix the issue T3/r7/2019-06-29.txt.gz:{chan ch=tech}Purple HazeKnight Tech: pretty sure you need a custom exit to get into fantasy fields T3/r7/2019-06-29.txt.gz:{chan ch=tech}Purple HazeKnight Tech: at the end of the runto T3/r7/2019-06-29.txt.gz:{chan ch=tech}Shotgun Tech: you use S&D?? *gasp T3/r7/2019-06-29.txt.gz:{chan ch=tech}Nakami Tech: the offical version T3/r7/2019-06-29.txt.gz:{chan ch=tech}Algaru Tech: yeah - this doesn't sound like an S&D issue, sounds like a mpaper issue T3/r7/2019-06-29.txt.gz:{chan ch=tech}Nakami Tech: ahh ok so its mapper thing. if i manully set the cexit it should fix the issue? T3/r7/2019-06-29.txt.gz:{chan ch=tech}Nakami Tech: thanks. ill give it a shot T3/r7/2019-06-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: mushclient questions answered here T3/r7/2019-06-29.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Which broth should I get for hotpot mushclient T3/r7/2019-06-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: pork broth T3/r7/2019-06-29.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Noted T3/r7/2019-06-29.txt.gz:{chan ch=tech}Luc Tech: I was gonna say beef, but he knows better T3/r7/2019-06-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: pork broth is the superior broth T3/r7/2019-06-29.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: Pork broth doesn't have thumbs up though T3/r7/2019-06-29.txt.gz:{chan ch=tech}A Nimwit Bamboo Tech: https://imgur.com/gallery/J5wiCwu T3/r7/2019-06-29.txt.gz:{chan ch=tech}Negader Tech: hm i dont add any broth just plain water and let it simmer over mobs and i just use mob broth. T3/r7/2019-06-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: pig bones have a much higher percentage of extractable protein T3/r7/2019-06-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it makes the broth thicker and therefore better T3/r7/2019-06-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: pork broth should be velvety T3/r7/2019-06-29.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: beef broth never is T3/r7/2019-06-29.txt.gz:{chan ch=tech}Luc Tech: beef au jus if done right is velvety...mmmm... lix T3/r7/2019-06-29.txt.gz:{chan ch=tech}Tinypotato Tech: is there a way to configure mapper such that if you are trying to get to recall from a noportal room, prefer to go to adjacent rooms and portal from there rather than recalling from that room? T3/r7/2019-06-29.txt.gz:{chan ch=tech}Sheriff Shindo Tech: yeah, set up a recall portal, ie add word of recall as a portal T3/r7/2019-06-29.txt.gz:{chan ch=tech}Tinypotato Tech: re - marking the room noportal - I've done that, but the next time I try to goto recall it uses the recall command T3/r7/2019-06-29.txt.gz:{chan ch=tech}Tinypotato Tech: I prefer to go to a neighbouring room and use the portal there instead T3/r7/2019-06-29.txt.gz:{chan ch=tech}Tinypotato Tech: to save moves T3/r7/2019-06-29.txt.gz:{chan ch=tech}Sheriff Shindo Tech: then remove word of recall as a portal T3/r7/2019-06-29.txt.gz:{chan ch=tech}Tinypotato Tech: I do want to keep word of recall (or just regular recall in my case) as a backup when I have no alternative though T3/r7/2019-06-29.txt.gz:{chan ch=tech}Sheriff Shindo Tech: so 99.99999% of the time you don't want it to use word of recall? T3/r7/2019-06-29.txt.gz:{chan ch=tech}Tinypotato Tech: Yeah, what I'm looking for is something like assigning a weight to the word of recall command (maybe like 5 rooms or something). As far as possible try to run somewhere close and portal, only if there is no close room nearby then try word of recall instead T3/r7/2019-06-29.txt.gz:{chan ch=tech}Sheriff Shindo Tech: seriously, then remove word of recall and alias it T3/r7/2019-06-29.txt.gz:{chan ch=tech}Tinypotato Tech: then it doesn't work with mapper speedwalks anymore :p I guess once I remort and get word of recall it won't matter as much anymore T3/r7/2019-06-29.txt.gz:{chan ch=tech}Sheriff Shindo Tech: you soon learn which areas are noportal, and typically they are norecall as well T3/r7/2019-06-29.txt.gz:{chan ch=tech}KnightLord Throxx Tech: wow, how do you program the seals into the mapper after you have done kingsholm goal? T3/r7/2019-06-29.txt.gz:{chan ch=tech}Mr. Crowley Tech: Go to each room, do mapper cexit next T3/r7/2019-06-29.txt.gz:{chan ch=tech}Mr. Crowley Tech: Bear in mind that 'next' may interfere with some versions of S&D. T3/r7/2019-06-29.txt.gz:{chan ch=tech}KnightLord Throxx Tech: ahh, i dont use that, i barely use mapper. i was just curious T3/r7/2019-06-29.txt.gz:{chan ch=tech}Mr. Crowley Tech: To counter that, you have two options: Fix the S&D script, or make a MUDside alias like 'gonext' to send next. T3/r7/2019-06-29.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-29.txt.gz:{chan ch=tech}Mr. Crowley Tech: Though I wonder if cexit eats spaces, because if not, you have a third option of doing mapper cexit next (with two spaces between cexit and next) T3/r7/2019-06-29.txt.gz:{chan ch=tech}KnightLord Throxx Tech: so mapper cexits allow you to run thru an exit on the way to where you told the mapper to run to? T3/r7/2019-06-29.txt.gz:{chan ch=tech}Endymion Tech: mapper exits are room exits. Exits lead to rooms. Speedwalks generated by mapper consist of directions from room to room T3/r7/2019-06-29.txt.gz:{chan ch=tech}Mr. Crowley Tech: The 'c' in 'cexits' stands for 'custom', so it's used mainly for custom exits. It's also used for opening doors and moving in the direction of the newly opened door via: mapper cexit open north;;north T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: Fiendish - You added true/false for timestamp, requiring False to omit the timestamp or True to obey internal timestamp settings. I question whether the reverse would be better, to not break old plugins storing strings in the Comm Log. For example, False would use internal timestamp settings. This would prevent breaking plugin stores that do not have Tab or Timestamp arguments, and they could be updated for both Tab/Timestamp if necessary. Too late now I guess? I assume most people have updated their plugins by now if required. I'm a few months late on the client update. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: That's right, a wall of text. But I know Fiendish checks tech history! And others might want to know why their stores aren't timestamped, even though the setting is on. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: Out of curiosity, or a futility check, has anyone updated one of their plugins to send True so that Timestamp settings are obeyed? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Durel Tech: Endy: I'm still waiting to switch it for mine. I was kind of hoping mush would change makign them work like before :P T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: I'm considering doing a pull request :) I already have one lined up to Omit logging for StoreFromOutside.. So I can use a Tab as a debug log but it won't save to commlog text file. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: Anyway to change the background of someof the maps? The Fire Swamp for example is all red and makes missing rooms finding a chore T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: You can find out what background it uses and change it to something else. Alternatively, you can disable Area textures completely. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Heracles Tech: If you're asking about the GMCP map, you can click the * and turn off area textures T3/r7/2019-06-30.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: ahhh nice T3/r7/2019-06-30.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: ahh that doesn't help, it's just as hard to see on the black backgroun for me. lol T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: It's difficult to see, regardless of the texture. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: You can use 'mapper unmapped here' to find out where you have exits that haven't been mapped, though. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: I might change em all to a pleasing single color backround or i wonder if i can look through the plugin and change the color of the red squares there T3/r7/2019-06-30.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: oh wow... i did not know about that command T3/r7/2019-06-30.txt.gz:{chan ch=tech}Heracles Tech: You can right click on any room and change the terrain color for all rooms of that terrain type. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Terrain color doesn't help, Heracles. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: She's more interested in the faint red outline of the non-mapped room vs the background of the area texture. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Tech: Orgrimmar Stormwind nods. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: but mapper unmapped solves that. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: It'd be prudent to snoop through 'mapper help' for other useful commands you may not have known about. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: yeah if that command was hidden in there I will do that for sure T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Yeah, it's under 'mapper help exploring' T3/r7/2019-06-30.txt.gz:{chan ch=tech}Tech: Mr. Crowley's shifty eyes dart back and forth. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Heracles Tech: 'mapper help all' will show you a complete list. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: sweet i got some reading to do then, thanks :) T3/r7/2019-06-30.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hmm T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Fiendish should change 'faint red outlines' of unmapped rooms to faint red striped boxes. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Tech: Mr. Crowley's shifty eyes dart back and forth. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: durel and endymion, talk to me about comm log timestamps T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: customizing the area backgrounds is an old old feature request that I never got to that I kept putting off because I wanted to rewrite the mapper display insteda T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Eh, honestly, I think the missing rooms should be more visible, which is why I mention faint red striped boxes. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: aren't they already striped boxes? T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oh, you mean the fill? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Yeah. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: The outline is definitely difficult to see on some textures. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: But having a fill in it might make it easier. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: hm T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: it's called hatch I think :p T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Thank you, Endy. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: I could picture it, couldn't remember the name. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: rung a bell from the old Autocad days! T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I think it will require having the room filled in T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: with black or something T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: otherwise it will require actually drawing the lines instead of changing the fill brush T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Hmm. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: TextRectangle has a Hatch option T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: OutsideFillStyle T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: textrectangle isn't relevant here T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: anyway I figured it out T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if you set the fill color to -1 it goes invisible T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ok, I'll change it from brush_null to brush_hatch_forwards_diagonal T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: which goes top left to bottom right T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: unless you want a different hatch T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: yeah sorry I thought I was looking at WindowCircleOp T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: That should work, honestly. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: It distinguishes it from the explored rooms, and should be quite visible on any textured background (well, maybe except fire swamp... that IS pretty red) T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: I think Descent to Hell uses the same texture background. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Oh, no, it's different. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: well you get to choose http://www.gammon.com.au/mushclient/mw_shapes.htm#Brush T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Yeah, either 4 or 5 would work. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: it also doesn't have to be red, though it should probably be just one color T3/r7/2019-06-30.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I guess the alternative is to not make it see-through T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: 9 wouldn't be too bad, either, if it's easily distinguishable from solid fills. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods at IAC DO Fiendish. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I think 8 is what most of the rooms use T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: 8? Not 0? Never realized. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: oh nice is this making the unexplored rooms more visible! T3/r7/2019-06-30.txt.gz:{chan ch=tech}Tech: Mr. Crowley grins evilly at Orgrimmar Stormwind. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: probably the most visible would be to set the background black instead of transparent T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I guess I can do that T3/r7/2019-06-30.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: hey, anyone know what could be causing this to pop up after every line in mush? Trigger function "xcp index line end" not found or had a previous error. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: "had a previous error" T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: find the first time it errored T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: it was when I typed cp check. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: and what did it say? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: Not sure. I typed cp check and after the first line, You have 6 days, 23 hours and 46 minutes left to finish this campaign., it gave me that error and now does it after every line. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Unsure of the reason, but it sometimes glitches out like that. Reinstalling it tends to fix the problem, though. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Crimzon Tech: what does a compiler do? T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: compiles T3/r7/2019-06-30.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: hehehe T3/r7/2019-06-30.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: I'm sure the answer you're looking for is on pornhub T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Dorchadas: what do you mean you're not sure? Are you looking at it? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Happy Pill Zuloft Tech: ok I'm done. sorry for trolling T3/r7/2019-06-30.txt.gz:{chan ch=tech}Crimzon Tech: compiles files to see if they are the same and diferent? T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: if you can see the first error, knowing what the error message says is necessary for fixing the problem. if you can copy/paste it to the tech board you should T3/r7/2019-06-30.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods at IAC DO Fiendish. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: crimzon: https://en.wikipedia.org/wiki/Compiler T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Fiendish has more patience with Crimzon than I do. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: It's just that line I posted above was the first and keeps repeating after every line. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: the line you posted above was not the first T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: that's why it says "had a previous error" T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: The first line will always show what the error was. The line that repeats only repeats because of the error. It's not a different error each time - it's the same one, just surpressed. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: it's the first instance of error that I'm seeing anywhere in my output. before that I wasn't seeing any errors so I'm not sure what else to look for. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: what version of s&d are you using? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: earth to Dorchadas T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: what version are you running? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: I'm new to mush so it's taking me a moment to find it. Any hints on how to do it more quickly are welcome. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: oh, sorry T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: on the window, it should say the version. It should be something like v3.0 (rel-1.0.5) or similar. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Dorchadas: If you can't find it this time, don't worry about it too much. Next time it happens try to catch the first error message. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: it's easy to restart the plugin, just asking version so I know what to advise exactly T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: don't worry about being new T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: WinkleGold_Search_Destroy (e50b1d08a0cfc0ee9c442001) T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: oh, okay. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: There are different versions of S&D. There is the very old one with the window jumping bug. Then there is Pwar's version. Then there is my version. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: You are running Pwar's version, evidently T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: I've really never even used it. I just disabled it though. Not sure if that matters much. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: I recommend going to the link in my whois/finger info and downloading version 3.0 T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: Starling, are you Pwar? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: so far as I know it's stable. I haven't gotten any problem reports in quite a long while T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: no T3/r7/2019-06-30.txt.gz:{chan ch=tech}Orgrimmar Stormwind Tech: do you know the differences between that version and Pwar's? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: why would I copy my own code? :P T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: ok thanks. I'll give it a try. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: I know in general what pwar can do, it's interesting but there are problems with it and some things don't work at all, or crash. I have a copy I've looked at but I don't generally use it or have it installed T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: trouble is just finding time and energy to do it, most days I just sleep because too tired. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: version 3 from link in whois/finger does all the important stuff and is faster, and given lack of problem reports lately seems reliable. No crashes for me. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: aaaaaah I found the original error. It was way up there and yeah it's the SD. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: no wait. it was mapper. Do they run off one another? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: yes, all s&d versions use your mapper db T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: you sure it wasn't mapper_extender? mapper shouldn't error on cp check T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: it's probably extender T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: plus, xcp index line end is definitely s&d (aka extender, extender gui, s&D) T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: except for Starlings unified version, which eliminates 2 of the 3 files T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: Plugin: WinkleGold_Mapper_Extender (called from world: Aardwolf) T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: it's an old version of my code that was copied. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: that code has long since been replaced with new T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: can't blame him for wanting to use the best ;) but it's old and evidently a bit buggy T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: I'm just using whatever came with the non vis version from the Aard site. Guess I'll have to update a few more things. thanks. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: I disabled the extender and am no longer getting the errors at least. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I'm considering setting the input bar color and input text color to match the miniwindow theme. pro/con? T3/r7/2019-06-30.txt.gz:{chan ch=tech}KnightLord Throxx Tech: k.i.s.s. T3/r7/2019-06-30.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: is drunk-tank pink going to be available? T3/r7/2019-06-30.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: as well as bastard-amber T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you have to make it T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: if you disable the extender most of s&d won't wor T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: +k T3/r7/2019-06-30.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: no, you have to make it T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: I've never used it so I won't know what I'm missing. I'll go add a more stable version later. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: If you're new and just got it, then best bet is to uninstall the 3 plugins, and then get version from the link in my whois/finger, since it's a single plugin and is faster and more stable T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: and also I know the most about it, so if it acts up I'm in a position to figure it out and fix it in the next update T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: I'm not familiar with themes yet, I only have the default one with gray titlebars and offwhite letters. Does that mean the input bar would match the title bar? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: ok ninjaz, I have to go to work in the cotton fields at the plantation. Install single plugin version and there should be no problems, but if so I'll be on tomorrow and unless I'm mistaken it should be my day off so I might actually be around. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yes T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: themes are annoying and I edited the code to disable them, but that is just me. carry on T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: literally nobody cares what you think T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: Thanks Starling. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Endymion: type 'aard theme change' to switch to other available themes T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: you'd be surprised, Fiendish. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: hmm T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: if you want, I can put put an improved version of your mapper. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: I think it could be nice. Certainly would blend better T3/r7/2019-06-30.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: so T3/r7/2019-06-30.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: aard theme change khaleesi doesnt work T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: yeah no khaleesi theme. you have to make one T3/r7/2019-06-30.txt.gz:{chan ch=tech}#SANCTUARY Pleiades Tech: omg T3/r7/2019-06-30.txt.gz:{chan ch=tech}Real ninja Starling Tech: anyway, goodnight. but before I go, just to check up. how's "mapper goto area" coming along? still stalled in the pipeline? that's a shame D: T3/r7/2019-06-30.txt.gz:{chan ch=tech}Seductress Reina Tech: Is it too late to buy PS4 now? T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I already gave you runto. be grateful for what you're given. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: has anyone ever put out a plugin that works with screen readers and GMCP? things like hp, mana and mv commands? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Welding Tech: no but id wait til 2020 when ff7r comes out T3/r7/2019-06-30.txt.gz:{chan ch=tech}KnightLord Throxx Tech: omg, Green Neon!!! T3/r7/2019-06-30.txt.gz:{chan ch=tech}Seductress Reina Tech: Almost 5 years+ since playstation 4 released and it's should be at its end lifecycle soon. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Reina: did they even announce ps5 yet? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Seductress Reina Tech: PS5 will release late 2020, T3/r7/2019-06-30.txt.gz:{chan ch=tech}Seductress Reina Tech: what the different with PS5 and Ps4 T3/r7/2019-06-30.txt.gz:{chan ch=tech}Seductress Reina Tech: is VR technology? T3/r7/2019-06-30.txt.gz:{chan ch=tech}KnightLord Throxx Tech: mush theme ? why do some the the themes look hazy? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Welding Tech: idk throxx but the default one was too dark and gave me a headache so i put in a different one T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Dorchadas: do you need one? T3/r7/2019-06-30.txt.gz:{chan ch=tech}KnightLord Throxx Tech: aardgear and deep magenta, deep red, the background is overly bright T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Throxx: which background? T3/r7/2019-06-30.txt.gz:{chan ch=tech}KnightLord Throxx Tech: shading of the whole screen changes T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: I think it's an optical illusion your eyes are playing on you T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: we don't really know what throxx is talking about T3/r7/2019-06-30.txt.gz:{chan ch=tech}KnightLord Throxx Tech: like the brightness on a tv jammed way up T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: like when you have red text next to green text, and they look like they're not lined up horizontally T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: It would be useful, fiendish. Something that could use GMCP's prompt instead of having to hit P to read an entire prompt every time. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Dorchadas: do you use a screen reader? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: Yes T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ah T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: If it's not been done yet it's something I plan to do myself eventually. Just takes a bit to get used to a new mud and client. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: I can ping some of my friends to find out if they already have something like that. What do you think it should do? T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Throxx: show some screenshots or something T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: Most of the info you'd get from a graphical bar would be useful in text via an alias. "hp" -hitpoints. "mana" or "MN" for obvious. Just stuff like that. right now with no prompt on the screen, the best way I can see any of them is to use the P command but imagine how much the screen reader has to read through before it gets to movement. Even reading around 400 or 500wpm that's still pretty crucial time in a fight. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Dorchadas: You can easily make an alias to display that text. I actually wrote one for another VI-user months ago. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: I'll see if I still have the code. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: Ok cool. I planned to, it's just not something I'd worked out yet. Thanks. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: and if anyone was curious what a prompt sounds like to a screen reader, https://www.dropbox.com/s/2feot59bbler2fi/AudioPrompt.mp3?dl=0 T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: https://pastebin.com/Ap7THFRZ --> That was written for Dimples. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: thanks I'll check it out. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: I used to date a blind person who played this game. I heard it, and omg, I have a whole lot of respect for you. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Honestly, I'd miss about 90% of what was being read to me, so I'm impressed how you guys fare so well with it. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: heh. I've played a few pretty fast paced muds in the past. I really like learning how to add sound triggers to indicate when things happen. I don't know yet how to add a sound for when combat initiates so the other day I died to a mob before I'd even known I was in a fight. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Dorchadas: do you know you can customize what your prompt says? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Fiendish: He's referring to the lag it takes for the prompt to be displayed. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: The alias would just display it above all other content. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: and I had the rate of speech pretty fast. Learning how to understand what's being said at that rate takes time. When I first lost my sight it was slow, years later it just gets faster and faster. Yeah I know it can be adjusted but even then, Unless I made a mana specific prompt, mv specific prompt, hp, so on and so on, there's no quick way to read any of them. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Surprised the sound pack doesn't have combat. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Crowley: your alias isn't any different than setting your prompt and battle prompt to be the text of your prints T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: If it has combat, I haven't found it yet. I've been adding my own. So far it just seems to be channels T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: It doesn't, Dorchades. That's why I'm surprised. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: pwar seems to have abandoned plugin development T3/r7/2019-06-30.txt.gz:{chan ch=tech}Tech: Mr. Crowley looks at IAC DO Fiendish ponderingly. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: I suppose you're right about the alias, heh. I forget why Dimples wanted it. I imagine we told her about customizing the prompt, too. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: But if a player wants an alias to call the info, that's the start for it. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Or him, not her. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: Dorchadas: I can add anything you want to the package. just send me notes with requests T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: I'll be a her if it gets me an HP alias. :P T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Fiendish is really good about taking requests and implementing them, as long as they're reasonable and makes sense. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Was referring to Dimples, haha. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: I appreciate that. I'll gladly contribute when I'm more familiar, if it helps. Like I said, new mud, new client, just takes me some time to get used to it. I like making extensive soundpacks. I think my last one had about 300 sounds. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: and the mud was nowhere near as extensive as aard T3/r7/2019-06-30.txt.gz:{chan ch=tech}Tech: Mr. Crowley grins evilly. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you're already familiar enough at least to know you want something that reports H P, moves, and so on. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: It's not difficult to add sounds to triggers. However, adding sounds based off GMCP requires a little bit of knowledge, as it's not as straightforward as "Click triggers, put trigger line in, add sound." T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: that is correct and an unfortunate consequence of how mushclient handles gmcp T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: I'm honestly surprised there's nothing like that already built into the mud itself. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: If you care to, Dorchades, and if you're the techy type, you can read through MUSHClient's functions pertaining to Sound, too. Install the MUSHClient_Help plugin (comes default, I believe), then you can type 'mchelp sound' to see topics and functions related to sound. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: I was hoping to research more about GMCP to see if I could pull things with an alias, like we're talking about myself T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: One function of note is PlaySound. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: you wil want to read my wiki page on using GMCP at https://github.com/fiendish/aardwolfclientpackage/wiki/Using-GMCP T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Fiendish has made it infinitely easier to gather GMCP information. You can type: require 'gmcphelper' --> and then pull the data using the gmcp() function. Aardwolf's wiki page, under protocols, will tell you the different fields. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: As will Fiendish's page. :p T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: yeah crowley, I'll look into that. fiendish, I was actually starting on that the other day when I got a call that my wife hit a deer so things have been a bit chaotic since. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: oh god T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: that's horrible T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: It wasn't with our car though. she punched it. I really gotta stop dating women who like bath salts. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: wait, what? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: But if she's your wife, are you really still dating her? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Also, the correct answer to that should be yes. If you're married, you should still date your wife. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: Really though, it was with the car and in the middle of the night on a rural moutain road. that kind of took precedence T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: And I'm choosing to gloss over the 'she punched it' and 'bath salts' T3/r7/2019-06-30.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: I like to think of her as my future ex wife. Just in case. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Tech: Mr. Crowley snickers softly. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: but yeah, thanks for the resources on all this stuff. I'll definitely look into it. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: As a side note, take everything Starling says with a grain of salt. She may mean well some times, but she's more trouble than it's worth, most times. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: Ha ok. Not sure what to do about that map extender. As I've never used it, I'm not sure I'd know what I was missing. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: well without extender, there is no S&D really T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: which I've never used either. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: S&D is just an easier way to do campaigns and quests T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: People are quick to tell you to install S&D because omg it's the best thing ever! But it's not. It's a tool that helps you complete campaigns and quests quicker, and some have released a version that does global quests that should not be used. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Basically, it'll run you to the mob, but you have to kill it. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: but only if you've already mapped the area, right? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Tech: Mr. Crowley nods. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: so as a newbie it wouldn't be very useful yet, other than to map areas as I explore them? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: mapper I mean, not SD T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Starling likes to put everyone else's version down, and claim that hers is the best, too. I suppose it's natural, but you have other options if you really want the script. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Endymion Tech: No, the mapper does that T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: I claimed my version of the soundpack on my previous mud was the best but only because I was right. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: The mapper maps the area, completely independent of S&D. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: I imagine SD pulls from the mapper though when executing T3/r7/2019-06-30.txt.gz:{chan ch=tech}ShadowDragon Tech: ayaaa T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Heh. Starling saying hers is the best version is pretty much like Chevy, Ford, and GMC putting out the exact same truck, but one has prettier colors. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: gotcha. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: And that company saying there's is the best even though they're functionally the same. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Welding Tech: in theory, you could get someone elses map saved from their client, put it into your own file and run s&d correctly without having to visit the places on the map yourself right? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: You can, yes. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: You'd just have to purge any portals, as they probably wouldn't match with yours. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Tech: Welding nods. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Welding Tech: that's not against any rules or policies on aard? T3/r7/2019-06-30.txt.gz:{chan ch=tech}Mr. Crowley Tech: Not really, no. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: ok I'm going to bed. Dorchadas: please send me a list of all of your suggestions. If putting them into a note here is complicated, send them by email instead. T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: Ok. Thanks again. I may email it just for simplicity's sake. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: email address is in my finger info T3/r7/2019-06-30.txt.gz:{chan ch=tech}Dorchadas Tech: I'll put dorchadas in the subject. T3/r7/2019-06-30.txt.gz:{chan ch=tech}IAC DO Fiendish Tech: as you like