T3/r7/2015-04-01.txt.gz:{chan ch=tech}KaiserSenpai Tech: hey i was wondering if theres a way to see the text as im typing. not when i finish typing the word and hitting spacebar. T3/r7/2015-04-01.txt.gz:{chan ch=tech}Tech: what program are you using? T3/r7/2015-04-01.txt.gz:{chan ch=tech}Jo Jo Jo Joelz Tech: what client are you using? are you on mobile? T3/r7/2015-04-01.txt.gz:{chan ch=tech}KaiserSenpai Tech: yeah. im on mobile. T3/r7/2015-04-01.txt.gz:{chan ch=tech}Exiled To Aphelion Tech: blowtorch-aard? T3/r7/2015-04-01.txt.gz:{chan ch=tech}KaiserSenpai Tech: Wat? T3/r7/2015-04-01.txt.gz:{chan ch=tech}Exiled To Aphelion Tech: is that the name of your phone client for the mud. T3/r7/2015-04-01.txt.gz:{chan ch=tech}KaiserSenpai Tech: god im awful at this. thatll be under the encoding, right T3/r7/2015-04-01.txt.gz:{chan ch=tech}Tech: the app that you clicked on to get here...what's the name of the app? T3/r7/2015-04-01.txt.gz:{chan ch=tech}Exiled To Aphelion Tech: what's the name of the app you are running? T3/r7/2015-04-01.txt.gz:{chan ch=tech}Zxax Xaxz Tech: I wonder: is it just "Aardwolf" from the android play store? T3/r7/2015-04-01.txt.gz:{chan ch=tech}KaiserSenpai Tech: yep. im pretty stupid. its called Aardwolf RPG T3/r7/2015-04-01.txt.gz:{chan ch=tech}Exiled To Aphelion Tech: ok, that's blowtorch-aard T3/r7/2015-04-01.txt.gz:{chan ch=tech}KaiserSenpai Tech: oh. okay. anyway to see the text as im typing and not when i hit spacebar? T3/r7/2015-04-01.txt.gz:{chan ch=tech}KaiserSenpai Tech: alright. thanks. know anyone who is familiar with the client? T3/r7/2015-04-01.txt.gz:{chan ch=tech}Tech: try going to service, and checking local echo T3/r7/2015-04-01.txt.gz:{chan ch=tech}KaiserSenpai Tech: nothing.... T3/r7/2015-04-01.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: using any special input methods? or just the stock android keyboard? T3/r7/2015-04-01.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: (I don't play on mobile; just an idea) T3/r7/2015-04-01.txt.gz:{chan ch=tech}KaiserSenpai Tech: stock keyboard T3/r7/2015-04-01.txt.gz:{chan ch=tech}Raxus Tech: I installed the search and destrow plugin with spellup also. Now when I log off and try to input my password it won't let me. I had to disable the plugins to log on. Any ideas? T3/r7/2015-04-01.txt.gz:{chan ch=tech}Lakf Tech: I changed my password :P T3/r7/2015-04-01.txt.gz:{chan ch=tech}Luxiat Tech: is there a way to open a window to show me, say, my inventory, or my spell list? T3/r7/2015-04-01.txt.gz:{chan ch=tech}Luxiat Tech: in mush that is T3/r7/2015-04-01.txt.gz:{chan ch=tech}Nuanse Tech: yes T3/r7/2015-04-01.txt.gz:{chan ch=tech}Luxiat Tech: such as? T3/r7/2015-04-01.txt.gz:{chan ch=tech}Nuanse Tech: there are many plugins. basts inventory plugin for example (finger bast for addy) T3/r7/2015-04-01.txt.gz:{chan ch=tech}Raxus Tech: I hit my m9use by mistake and now one the boxes is up in the screen and I can't move it..any ideas on what to do? T3/r7/2015-04-01.txt.gz:{chan ch=tech}Raxus Tech: anyone that could help me with a problem with mty mapper window? T3/r7/2015-04-01.txt.gz:{chan ch=tech}Xrex Tech: is there an easy way to share the mapper's map between 2 computer? T3/r7/2015-04-01.txt.gz:{chan ch=tech}Trachx Tech: close mush, copy file, start mush T3/r7/2015-04-01.txt.gz:{chan ch=tech}Trachx Tech: though this is not exactly sharing - as you can use it only on 1 computer if you want to keep only 1 database T3/r7/2015-04-01.txt.gz:{chan ch=tech}Purriffic Growltiger Tech: or run mush off dropbox T3/r7/2015-04-01.txt.gz:{chan ch=tech}Xrex Tech: is there a specific file, instead of the whole client? I'm playing at work and home, and would ideally like to share the mapper T3/r7/2015-04-01.txt.gz:{chan ch=tech}Trachx Tech: Aardwolf.db T3/r7/2015-04-01.txt.gz:{chan ch=tech}Xrex Tech: thanks. that works T3/r7/2015-04-01.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Anyone have a plugin or code already written to take a string date formatted from a note and convert it into a number such as you'd get from os.time()? T3/r7/2015-04-01.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: in mush/lua T3/r7/2015-04-01.txt.gz:{chan ch=tech}Arcidayne Tech: Wouldn't really be that hard... T3/r7/2015-04-01.txt.gz:{chan ch=tech}Daddius Tech: check this out: http://stackoverflow.com/questions/4105012/changing-string-date-to-a-timestamp-in-lua T3/r7/2015-04-01.txt.gz:{chan ch=tech}Arcidayne Tech: Honestly, this is better: http://www.lua.org/pil/22.1.html T3/r7/2015-04-01.txt.gz:{chan ch=tech}Arcidayne Tech: In fact, that can be written up in one trigger. :p T3/r7/2015-04-01.txt.gz:{chan ch=tech}Tech: Arcidayne's shifty eyes dart back and forth. T3/r7/2015-04-01.txt.gz:{chan ch=tech}Arcidayne Tech: function epoch_time(y, m, d, h, n, s) local months = {Jan = 1, Feb = 2, Mar = 3, Apr = 4, May = 5, Jun = 6, Jul = 7, Aug = 8, Sep = 9, Oct = 10, Nov = 11, Dec = 12} return os.time{year = y, month = m, day = d, hour = h, min = n, sec = s} end T3/r7/2015-04-01.txt.gz:{chan ch=tech}Arcidayne Tech: There, written. :P T3/r7/2015-04-01.txt.gz:{chan ch=tech}Arcidayne Tech: Whoops. T3/r7/2015-04-01.txt.gz:{chan ch=tech}Arcidayne Tech: change month = m to month = months[m] T3/r7/2015-04-01.txt.gz:{chan ch=tech}Tech: A bright, shiny gold halo appears over Arcidayne's head. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: Anyone use the Qii cordless charger matts? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: also anyone ever use Emmet? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: wow tech isn't a very active line, last spoken words were apr 1 19:13:16 T3/r7/2015-04-02.txt.gz:{chan ch=tech}Arcidayne Tech: It's active, at times. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: any questions? Techie, but still learning. IS the channel mostly to do with things like Lua, the Mush client, etc?? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Arcidayne Tech: It's for any questions related to tech. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: nice T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: we got all sorts of heads in the chann?? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Arcidayne Tech: If you're not getting a response, it's likely because anyone who is online right now has no knowledge of your question. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Arcidayne Tech: We do, yes. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: kk, just shoulda thrown out a ping or something first, lol T3/r7/2015-04-02.txt.gz:{chan ch=tech}Arcidayne Tech: But a majority of us are from the States, where it's anywhere from 10:30 pm to 1:30 am for most players. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Arcidayne Tech: Nah, always start with your question, whether anyone is here or not. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: nice, would love to both help out where my knowledge lay(lies?), as well as learn, pick minds, but best of all I find myself a great bridge between two to three people, project wise ((though not dilbertesque managementy) T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: I just happen to be a HOOT! T3/r7/2015-04-02.txt.gz:{chan ch=tech}Arcidayne Tech: If you have specific questions, too, you can always ask them on the tech board. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: as in Nacht eule T3/r7/2015-04-02.txt.gz:{chan ch=tech}Arcidayne Tech: Also, welcome to Aardwolf. :) T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: Arcidayne rapidly nods twice, in complete agreement. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: awesome! Thanks much! T3/r7/2015-04-02.txt.gz:{chan ch=tech}Arcidayne Tech: As for your question, wish I could help out with it, but I've no knowledge myself. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: outside the tech circle of Beantown, MA, USA, in the boondocksians T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: Arcidayne snickers softly. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: funniest thing, I forgot my question and have moved on, who says you can't multi-task epic T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: failhat, Naughty T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: Sipsa looks around afraid for his life. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: oh, nm, i member now T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: wireless charging and a coding technique known now as Emmet, used to be called Zen Coding T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: still learning the art of forums and I been around in computers since you could remake games out the back of Byte magazine and save them to tape T3/r7/2015-04-02.txt.gz:{chan ch=tech}Oak Tender Arnica Tech: Paper tape? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Oak Tender Arnica Tech: hahaha T3/r7/2015-04-02.txt.gz:{chan ch=tech}Oak Tender Arnica Tech: That was my entry point T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: I got to play with some T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: my besties bros dad used to work for DEC early days T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: my first big hardware experience was an account on a PDP 9 at 12 T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: unless u count junior high and the multi-line BBS, my programming teacher in PUBLIC school no less let me set up T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: remember tradewars?>? Swear eve bourne from that T3/r7/2015-04-02.txt.gz:{chan ch=tech}Qadosh Tech: EVE is a cross between trade wars and ELITE T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: YOU GOT IT! T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: where is my happy hacvker kboard T3/r7/2015-04-02.txt.gz:{chan ch=tech}Cheburashka Tech: Bot in style, get one of these T3/r7/2015-04-02.txt.gz:{chan ch=tech}Cheburashka Tech: http://en.wikipedia.org/wiki/Space-cadet_keyboard T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: sorry?? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: omfg i want that kboard T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: if money were no object though, i know which one i desire lust after even T3/r7/2015-04-02.txt.gz:{chan ch=tech}Cheburashka Tech: Which is that? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: originally the optimus, but I see there are a few new manufactorers that showed promise at CES this year T3/r7/2015-04-02.txt.gz:{chan ch=tech}Sipsa Tech: oh wow! https://www.plusplasticelectronics.com/electronics/apple-patent-revives-prospect-of-desktop-oled-keyb T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tsunwu Tech: Hi there. Does anyone know what the plugin name is for the big map with the squares? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tsunwu Tech: Mine is gone, trying to get it back. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Aardwolf_BigMap_Graphical T3/r7/2015-04-02.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: GMCP mapper? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tsunwu Tech: Thank you. T3/r7/2015-04-02.txt.gz:{chan ch=tech}FairyTail Tech: how can you detect that you level up using gmcp? T3/r7/2015-04-02.txt.gz:{chan ch=tech}FairyTail Tech: text == "char.status.tnl" doesnt work... T3/r7/2015-04-02.txt.gz:{chan ch=tech}Jedhi Tech: text == "char.status" T3/r7/2015-04-02.txt.gz:{chan ch=tech}FairyTail Tech: yes, but this will fire for any change not only on level up T3/r7/2015-04-02.txt.gz:{chan ch=tech}Jedhi Tech: and then compare current level with previous one T3/r7/2015-04-02.txt.gz:{chan ch=tech}FairyTail Tech: so without comparing it wont work T3/r7/2015-04-02.txt.gz:{chan ch=tech}Jedhi Tech: well you have to compare it, there is no levelup event or something T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Doesn't gmcp broadcast when you get a level T3/r7/2015-04-02.txt.gz:{chan ch=tech}Jedhi Tech: not that i know of... char.status is broadcasted if there is a change in those variables T3/r7/2015-04-02.txt.gz:{chan ch=tech}FairyTail Tech: i did it with comparing curlvl with prevlevel :) thanks T3/r7/2015-04-02.txt.gz:{chan ch=tech}Bombita Tech: hi hello! i have miniwindows (thanks to the mushclient package!!) but i previously entered a command to lock the positions of the miniwindows T3/r7/2015-04-02.txt.gz:{chan ch=tech}Bombita Tech: does anyone know the command to unlock or undock the windows? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: aard layout lock T3/r7/2015-04-02.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: aard layout unlock T3/r7/2015-04-02.txt.gz:{chan ch=tech}Bombita Tech: thanks so so much!!!! T3/r7/2015-04-02.txt.gz:{chan ch=tech}Energized AtomicAurora Tech: ok so I'm going to need some hardcore help T3/r7/2015-04-02.txt.gz:{chan ch=tech}Energized AtomicAurora Tech: I'm using bbssh client, when I have auto map active and go to a area I crash, cursor gets stuck can't type, this does not happen on another char T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: turn off maprun T3/r7/2015-04-02.txt.gz:{chan ch=tech}Energized AtomicAurora Tech: it is off T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: then automap active wouldn't matter T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: maprun turns automap off specifically when running, leaving it on when walking T3/r7/2015-04-02.txt.gz:{chan ch=tech}Energized AtomicAurora Tech: but it does, as soon as I go to a area, doesent matter if I walk the 2 exits to verume from my mannor as soon as I go there it freezes T3/r7/2015-04-02.txt.gz:{chan ch=tech}Energized AtomicAurora Tech: I thought it might be a tag issue but I disabled all of them T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: bbssh doesn't know one area from another, it's all just text T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: anyone know how to get rid of the Aardwolf MUSHclient Package Update Check Error message I get everytime I log on? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Energized AtomicAurora Tech: do you have any idea what might be the issue abe? it freezes mid screen it loads hald the map then I can't type T3/r7/2015-04-02.txt.gz:{chan ch=tech}Kanmuru Kirua Tech: could it have anything to do with bigmap? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Energized AtomicAurora Tech: I know for a fact when I type bigmap I get kicked T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: mahasamatman: board tech, note read 6689 T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: thanks abe T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: but nothing in bbssh would cause a bigmap to be displayed T3/r7/2015-04-02.txt.gz:{chan ch=tech}Energized AtomicAurora Tech: maby meet me at verume start? maby something happens T3/r7/2015-04-02.txt.gz:{chan ch=tech}Cheburashka Tech: Are you using mccp? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: not with bbssh, no T3/r7/2015-04-02.txt.gz:{chan ch=tech}Cheburashka Tech: If not, can cause you to get disconnected if your buffer overfills T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: it's a telnet/ssh app, nothing more T3/r7/2015-04-02.txt.gz:{chan ch=tech}Kanmuru Kirua Tech: ah, now I remember, I used to have that problem on telnet before I increased the buffer or something T3/r7/2015-04-02.txt.gz:{chan ch=tech}Energized AtomicAurora Tech: see it crashed again I don't even know if you can see this my screen is stuck and all glitched out T3/r7/2015-04-02.txt.gz:{chan ch=tech}Zetkax Tech: i also had disconnect issues until i used a client with mccp T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: but those are just with large data dumps, not with walking 2 rooms T3/r7/2015-04-02.txt.gz:{chan ch=tech}Energized AtomicAurora Tech: I see my msg did send T3/r7/2015-04-02.txt.gz:{chan ch=tech}Energized AtomicAurora Tech: so its just a issue with the screen freezing T3/r7/2015-04-02.txt.gz:{chan ch=tech}Energized AtomicAurora Tech: but it does not happen on another char which is weird T3/r7/2015-04-02.txt.gz:{chan ch=tech}Thwgn Tech: I have disconnect issues on MUSH with MCCP I believe. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: typing who, note list, bigmap, etc. would be expected culprits, this is different behavior T3/r7/2015-04-02.txt.gz:{chan ch=tech}Cheburashka Tech: I used midpssh on blackberry and had no trouble T3/r7/2015-04-02.txt.gz:{chan ch=tech}Cheburashka Tech: maybe switch to that? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: I'd try following this page to turn on debug logging: http://bbssh.org/docs/logging/ T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: or that...what BB OS version are you running? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Cheburashka Tech: midpssh also has clientside alises, not sure if bbssh does, but I found midpssh's alias function to be very helpful T3/r7/2015-04-02.txt.gz:{chan ch=tech}Arcidayne Tech: Quick question on MUSH triggers, while I have a moment. If I call a script function, the wildcards argument is the captured parameters, right? So "trigger * * * *" would load the four parameters into the wildcards table? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: Arcidayne learns how to kill tech! T3/r7/2015-04-02.txt.gz:{chan ch=tech}Kanmuru Kirua Tech: yes to Arcidayne T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: Arcidayne grins evilly at Kanmuru Kirua. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Arcidayne Tech: Thank you very much. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Kanmuru Kirua Tech: so it'll be %1 and %2 and so forth T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: i'm having issues loading Bast plugins, i keep getting "Line 31: Attribute name 'data-pjax-transient' not followed by '=' (Cannot load)" anyone know why? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Arcidayne Tech: Would help to know which plugin. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: it occured with every single bast plugin i tried to load but for example the consider plugin T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: also, have you been using them and recently got error, or is this new try...how old is your bast download vs how old is your aardMUSH package T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: sounds like you maybe don't have the bast folder in the plugins folder T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: you can't just cherry-pick files to put into the plugins folder, the entire bast folder gets put into plugins as a sub-folder T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: used them in the past then upgraded mush to latest version T3/r7/2015-04-02.txt.gz:{chan ch=tech}Arcidayne Tech: You can cherry-pick the plugins to load, but you can't the files. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: now i'm having these issues T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: bast folder is in the plugin folder T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: You nod at Arcidayne. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: all of the files are there, haven't cherry picked any T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: OK, you upgraded MUSH...have you upgraded Bast? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: not tham i'm aware of T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: it's probably that the versions are too far out of sync then...as newer MUSHes use newer Lua, syntax checking may be more strict T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: so there's no way to easily solve this other than rewriting the plugin? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: you mean downloading? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Arcidayne Tech: You can get Bast's latest files from his finger info. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: I'm just talking about putting a recently-downloaded bast folder there, rather than an ancient one T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: will try and update you, thanks abe T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: i was under the impression i had the latest bast files but maybe not T3/r7/2015-04-02.txt.gz:{chan ch=tech}Arcidayne Tech: Is your scripting set to Lua, by the way? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: how do i check that? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: plugins don't require the scripting set to Lua, they have their own script language declaration T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: oh it seems to have worked! thanks you two T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: but you'd check that in file, global prefs, scripting T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: cool, it was just the newer download? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: yup T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: also i don't have a scripting section under file>global prefs T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: but i do have a Lua section T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: oops, it's under game -> configure -> scripting, first drop-down T3/r7/2015-04-02.txt.gz:{chan ch=tech}Mahasamatman Tech: got it! thanks :) it is set to Lua T3/r7/2015-04-02.txt.gz:{chan ch=tech}Raxus Tech: When I have my plugin for Search and Destroy enabled I can't login my password. Once disabled I can log in ok. Any ideas on what to do? T3/r7/2015-04-02.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: I'd guess it has some login trigger that is sending some text before you can type your password.... T3/r7/2015-04-02.txt.gz:{chan ch=tech}Raxus Tech: hmm strange. Wonder why it is doing it on mine and no one else is getting this? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Flak Tech: i'm having a hard time understanding my friends, is there a sarcasm detection plugin for Aard? T3/r7/2015-04-02.txt.gz:{chan ch=tech}Zetkax Tech: yes T3/r7/2015-04-02.txt.gz:{chan ch=tech}Tech: Tricksy Bamboo nods. T3/r7/2015-04-02.txt.gz:{chan ch=tech}Zetkax Tech: sorry, that was sarcasm T3/r7/2015-04-02.txt.gz:{chan ch=tech}Flak Tech: can't tell if serious T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: So I'm not reinventing the wheel, anyone have a MUSH plugin for enchanting showing the final results? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: If not, I'll just build a better one anyway, just lazy, though. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Mannec Tech: in my experience, you would be happier with your own hand-crafted wheel. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tech: Arcidayne grins evilly at Mannec. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: I just don't want to do all the legwork for it right now. :p T3/r7/2015-04-03.txt.gz:{chan ch=tech}Fatal FrostBite Tech: while you're scripting... build me something that'll get me to T9 by the end of the month! T3/r7/2015-04-03.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: you could use eqsearch, or base your work on that. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tech: Fatal FrostBite cackles gleefully at Arcidayne. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: Sure, Frostbite, as long as I can set a timer doing 'who sucker' every 30 seconds, and then sending a vis imm a tell, "look at me, I'm botty dee! Superb with a-f-king!" T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tech: Fatal FrostBite rolls on the floor laughing at Arcidayne's antics! T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tech: 3x Fooled Anaristos sits down and thinks deeply. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Barbafappa Pleiades Tech: can you write a script that helps with uhm...other activities.. too? T3/r7/2015-04-03.txt.gz:{chan ch=tech}3x Fooled Anaristos Tech: just wear gloves, Pleiades. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tech: Arcidayne snickers with Barbafappa Pleiades about their shared secret. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: Pro-tip: You can turn the gloves inside out and use them again. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zetkax Tech: i was thinking of the toilet .. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Mannec Tech: its really just a small pile of macros, your say, 20 most-used commands. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tech: Barbafappa Pleiades goes ooOOooOOoo. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tech: Lackluster Lachdanan rolls his eyes, disgusted. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: Anyway, back to scripting, then. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Anybody know a reliable way to exit out of MUSHClient using a script? (I've tried a few DoCommand attempts, but they always get stuck on the "Exit Aardwolf" dialog) T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: os.exit() doesn't work? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: I haven't tried that one yet. Let's see! =) T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: Apparently not implemented with MUSH. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Boo T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Got it! I had tried DoAfterSpecial.. but I wasn't putting the DoCommand() in quotes... T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: Congrats. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: lol, thanks. Working on a script that simply exits MUSH after quest time. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tech: You watch Lackluster Lachdanan tossing gquest tokens going "Here Botty Botty Botty!..". T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: lol, no bot. Just so you can go to bed/work or whatever and your quest time will tick down then exit. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: oh, right, when it hits 0. that makes more sense T3/r7/2015-04-03.txt.gz:{chan ch=tech}Trivial Remarto Tech: would it have to exit mush or would just logging off work just as well ? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Well, if you play off of something like DropBox, you could have it exit, then be able to open on another PC in another location. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: For those savvy folks who get nothing done at work. ;) T3/r7/2015-04-03.txt.gz:{chan ch=tech}Trivial Remarto Tech: lol T3/r7/2015-04-03.txt.gz:{chan ch=tech}Bardis Tech: is there any chance that I can convert my Cmud maps over to MUSHclient ? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: Not really. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: anybody know how to delete the background image from a powerpoint slide? It's office 2007. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: It sounds like it should be the most basic, easy thing in the world but I swear to god, there is no such command T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: format background, insert image does nothing T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: how on earth does m$ take the most simple concept and turn it into a bloody ordeal? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Have you checked the master slide? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: even google is unhelpful... every link is "delete background *from* images"... that isn't what I want, I want to remove the background image/template and import a new one. Totally mystified. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: second google result: https://support.office.com/en-in/article/Insert-or-delete-a-background-picture-or-color-c3bf2ff6-7b08-4e32-b468-799ad3ef996f T3/r7/2015-04-03.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: try harder next time T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: I tried that page and it didn't work T3/r7/2015-04-03.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: have you tried recreate all your slides in LaTeX? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tech: Lackluster Lachdanan snickers softly. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: I should mention it is a custom background, it isn't my presentation, it's somebody I'm helping with theirs. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: the background is just a .png, afaik T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: I followed the instructions under the section "use a picture as slide background" and it did not work or change anything. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: I'm just baffled as to why there is no simple "delete background image" and "import background image" commands.... T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: "reset slide background" is supposed to delete it apparently, however this also does nothing T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: just totally stumped at this point T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: I ask again: did you check the master slide? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: oh, sorry T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: no T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: I don't know how to do that T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Is it just one slide with the background or do all of them have the same? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: it's just one slide T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: To clarify, only one slide in the project, or only one slide has a background out of them all? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: just one slide in the project. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Google powerpoint 2007 master slide T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Edit the master, see if there's a background. If there is... do all of the things you just tried. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: on it T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: I have 2010, but if it's similar: view tab -> slide master T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: hmm, never knew about the master slide thing before, I think that is what the problem was T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: let's find out, one moment... T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Master slide is for setting up a common template for all of your slides. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: thanks for help, I really appreciate it T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Did that fix it? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: about to find out T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: did not work T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Hmm.. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Email me the project and I'll have a look T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: ok... finally figured out what the problem was T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: I blame whoever created the template... probably the university, or whatever department made the template... T3/r7/2015-04-03.txt.gz:{chan ch=tech}Ullin Tech: powerpoint is one of the plagues of humanity T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: it was not only the master slide, but there was a sub-layout on the master slide, with the exact same stuff on it, and I had to edit both of them to get rid of the junk that we were trying to fix T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Heh.. so it was still the master slide. Nice. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Yeah, people are generally bad at Office. Even if they "teach" the shit... they're still probably bad at it. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: the whole problem was that the university logo was in the way of his slide title... the master slide had an image with that on it, and the sub-layout had that same image PLUS an image object of just the logo, on top of the background T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: so deleting the background didn't work, because the trash on the sub-layout was still there T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: once we deleted that, and reimported the new background in both places, the issue was fixed T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: what a bloody pain in the arse T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: thanks for your help Xaxz, I never would have figured out any of this without it. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Heh, no problem. when you said it wasn't the master slide, I was stumped.. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: definitely learned a lot about powerpoint tonight... and yes, powerpoint and ms office is a pox and plague, it's amazing that it can turn what should be a simple task into a complicated mess T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: To be honest, most of the time, the problems are caused simply by people who don't know what they are doing. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: I think whoever made the original template was sloppy though, the sub-layout was completely redunant and not needed T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Trying to work with someone else's stuff is an exercise in insanity. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: They probably didn't do the sublayout on purpose... they just didn't know what they were doing.. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: I think you're right about that T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Hit the wrong button, didn't know what happened... tried to "fix" it... that's usually how it goes. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: I tried to delete the layout sub-thing outright and it wouldn't let me... at that point I'm like screw it, I'll just edit them both to look the same and that will have to do T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: heh, thank god for ctrl-z, it was pretty much the 'oh crap' button T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Oh the joys of people "fixing" excel cells because they don't know how to format, or "fixing" spaces and alignment in Word because they don't know how to put custom tabs.. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: had an issue with word the other day inserting images... should have been a 5-minute job, if that T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: turned into a 45 minute mess, the program fought me every step of the way. literally everything that it could do wrong, it did T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: in the 15 years I've been using word, I don't think it's ever 'guessed' correctly even once T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: I need a bottle of vodka now, my head hurts from all that T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Next time just go on fiverr and get someone else to make it for you T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: Costs less than (most) bottles of vodka T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: I work in the computer lab at the university library... it was a student's project for some science expo thing T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zxax Xaxz Tech: I see. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: something about DNA, looks interesting and very neatly laid out... just that damn background T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: I should write a strongly worded email to his department and tell them their template is crap and that they need to fix it T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: but I wont T3/r7/2015-04-03.txt.gz:{chan ch=tech}Farzad Tech: is there anyway to get tags around combat related messages? T3/r7/2015-04-03.txt.gz:{chan ch=tech}PhearMe Tech: can someone confirm that the grand city of aylor (RECALL) is id #32418 because when I try to mapper portal I'm getting #32697 T3/r7/2015-04-03.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: yes T3/r7/2015-04-03.txt.gz:{chan ch=tech}PhearMe Tech: and it throws an error T3/r7/2015-04-03.txt.gz:{chan ch=tech}Gorsk Tech: ID: 32418 T3/r7/2015-04-03.txt.gz:{chan ch=tech}Gorsk Tech: at recall T3/r7/2015-04-03.txt.gz:{chan ch=tech}Jedhi Tech: http://laravel.io/bin/bEWOa T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tech: Lackluster Lachdanan nods at Gorsk. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Gorsk Tech: you might have set it in the wrong room. delete it and set it in the right one T3/r7/2015-04-03.txt.gz:{chan ch=tech}PhearMe Tech: i did that T3/r7/2015-04-03.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: forget recall, then move there again T3/r7/2015-04-03.txt.gz:{chan ch=tech}PhearMe Tech: There was 1 match which I could not find a path to within 300 rooms: T3/r7/2015-04-03.txt.gz:{chan ch=tech}PhearMe Tech: (The Grand City of Aylor) (32697) T3/r7/2015-04-03.txt.gz:{chan ch=tech}PhearMe Tech: this is the second time I've had this problem T3/r7/2015-04-03.txt.gz:{chan ch=tech}PhearMe Tech: nvm i fixed it T3/r7/2015-04-03.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: how? T3/r7/2015-04-03.txt.gz:{chan ch=tech}PhearMe Tech: xset mark T3/r7/2015-04-03.txt.gz:{chan ch=tech}PhearMe Tech: (ww s&d) T3/r7/2015-04-03.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: do you still have that other room in your mapper? T3/r7/2015-04-03.txt.gz:{chan ch=tech}PhearMe Tech: looks like its th dungons in firbird T3/r7/2015-04-03.txt.gz:{chan ch=tech}PhearMe Tech: dungeons T3/r7/2015-04-03.txt.gz:{chan ch=tech}PhearMe Tech: TG right T3/r7/2015-04-03.txt.gz:{chan ch=tech}Farzad Tech: is there a way to force the game to send me a message when i regen hp/mp? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: I asked this late last night, but now, since it's more active: Anyone out there have an enchanting script that reports results? If not, I'll continue writing my own, but thought I'd ask. T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: I am not even sure I know what you mean T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: Well, essentially, Sonet, enchanters modify items to add stats to them. Instead of having to remember what the piece looked like before the enchant, I'm writing a script to capture old stats, and when done enchanting, comparing new stats and the difference. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: I have the framework written out already. I just don't like reinventing the wheel if someone else has it. But if no one wants to share, fair enough; I'll just build a better one. :P T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: hmm, that is really cool actually. I have used illuminate and solidify before so I know the basics. I don't know the specific things that help with ensuring good stats. Seeing as that is not what your going for. I would be more than glad to help if you want it. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Mahasamatman Tech: my Mushclient mapper stopped working all of a sudden, it tried to backup and couldn't find the ffi.lua file and now is no longer showing. Any body know what might have happened or how to fix it? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Daddius Tech: the plugin is probably unloaded now then right? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Mahasamatman Tech: no it's still loaded T3/r7/2015-04-03.txt.gz:{chan ch=tech}Madcatz Tech: If it had an error, then you need to reload it T3/r7/2015-04-03.txt.gz:{chan ch=tech}Mahasamatman Tech: just reloaded it and still nothing T3/r7/2015-04-03.txt.gz:{chan ch=tech}Madcatz Tech: what do you mean by "no longer showing"? Is the window still there, just not the map? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Mahasamatman Tech: yeah the window is there but it's as if I didn't log in yet T3/r7/2015-04-03.txt.gz:{chan ch=tech}Mahasamatman Tech: just has the MUSHclient Mapper 2.5 by Fiendish T3/r7/2015-04-03.txt.gz:{chan ch=tech}Nohadon Tech: how to turn objectid display of inventory items off? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Madcatz Tech: You mean invmon? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Mahasamatman Tech: try invmon T3/r7/2015-04-03.txt.gz:{chan ch=tech}Nohadon Tech: no, invmon is off but in command shows object id of each item T3/r7/2015-04-03.txt.gz:{chan ch=tech}Nokfah Tech: Can you tell if it sees the database, i.e. can you do 'mapper find ' ? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Madcatz Tech: That sounds like a plugin, Nohadon T3/r7/2015-04-03.txt.gz:{chan ch=tech}Mahasamatman Tech: it doesn't see the database, says "I don't know where you are right now - try: LOOK" T3/r7/2015-04-03.txt.gz:{chan ch=tech}Nohadon Tech: i loaded bast's miniwin eq plugin, but uninstalled it. but objectid is showing still. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Madcatz Tech: Try just closing and reopening MUSH, Mahasamatman? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Mahasamatman Tech: I did, still nothing :( T3/r7/2015-04-03.txt.gz:{chan ch=tech}Mahasamatman Tech: gonna try one more time, brb' T3/r7/2015-04-03.txt.gz:{chan ch=tech}Madcatz Tech: Is your other gmcp stuff working, like your group window? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Mahasamatman Tech: yeah other gmcp seems to be working T3/r7/2015-04-03.txt.gz:{chan ch=tech}Madcatz Tech: I'd try restoring the database from a backup T3/r7/2015-04-03.txt.gz:{chan ch=tech}Mahasamatman Tech: err can you help remind me how to do that? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Madcatz Tech: https://github.com/fiendish/aardwolfclientpackage/wiki/GMCP-driven-world-mapper T3/r7/2015-04-03.txt.gz:{chan ch=tech}Madcatz Tech: Scroll down to "restoring from a database backup after corruption" T3/r7/2015-04-03.txt.gz:{chan ch=tech}Mahasamatman Tech: much obliged madcatz! T3/r7/2015-04-03.txt.gz:{chan ch=tech}Bardis Tech: how can I make a alias that show my char.status.level from gmcp ? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: Why do you want to do that? just type 'level' T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: You'd have to put it through a plugin if you're wanting to use GMCP, though. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Bardis Tech: trying to learn Mush, use to be cmud T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: Look on the aard wiki, under Protocols -> GMCP. It'll help you out a bit. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Keldevar Tech: I changed my prompt and bprompt and now my bprompt is not displaying during combat. Any idea of what I've done wrong? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Daddius Tech: bprompt will toggle it T3/r7/2015-04-03.txt.gz:{chan ch=tech}Keldevar Tech: Ha!! Silly me. Thanks Daddius :) T3/r7/2015-04-03.txt.gz:{chan ch=tech}Kerno Tech: is there any tag available to synchronize on combat round (ie. that it's easy to recognize round start)? T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: I don't think so T3/r7/2015-04-03.txt.gz:{chan ch=tech}Kerno Tech: thanks T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: it wouldn't be hard to make a one time trigger to see it though, what do you need it for? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Kerno Tech: ie. not to cast too often T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: What do you mean? for an autocaster? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Kerno Tech: recast in combat. it's not prohibited... is it? T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: read help stacked commands T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: it is perfectly legal T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: as long as you don't incorperate a move or anything T3/r7/2015-04-03.txt.gz:{chan ch=tech}Korridel Tech: We're actually against autocasters, Sonet. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Korridel Tech: The simple answer? You walk away from combat in any way/shape/form, and it's a bot. So we recommend against autocasters T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: oh, opps sorry then for the mis information. They first paragraph leads one to believe autocasters are ok T3/r7/2015-04-03.txt.gz:{chan ch=tech}Kerno Tech: ok, i'll keep that in mind and read through the help T3/r7/2015-04-03.txt.gz:{chan ch=tech}Korridel Tech: There's a difference between you manually entering in a command to go kick;kick;kick T3/r7/2015-04-03.txt.gz:{chan ch=tech}Korridel Tech: And a trigger/script that auto casts kick until the mob dies. T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: not really, seeing as no one would manually enter what you said they would just have it on an alias T3/r7/2015-04-03.txt.gz:{chan ch=tech}Korridel Tech: Again - alias =/= script/triggers. T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: Technically you can script in an alias T3/r7/2015-04-03.txt.gz:{chan ch=tech}Korridel Tech: Seriously, you want to argue over semantics? T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: no, but I want to point out your logic flaws T3/r7/2015-04-03.txt.gz:{chan ch=tech}Kerno Tech: isn't the sole point of triggers to limit amount of attention needed from player? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Korridel Tech: No - an alias is a shortcut for a set of commands. A script/triggers? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Bishoujo Raded Tech: an alias would need to involve a trigger to dump more commands if it wasn't dumping them all at once T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tech: Korridel nods at Bishoujo Raded. T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: I don't disagree with botting being wrong and illegal at all. I was just trying to help him with what I had read from help stacked commands T3/r7/2015-04-03.txt.gz:{chan ch=tech}Korridel Tech: And kerno - we don't want you to lose focus on the game :) Ultimately, triggers can be helpful, as long as they're not 1) profiting you in some way (exp, gold, items to sell, etc) or gaining currency of any sort automatically (autobid scripts, enchanting, goldfarming, etc) T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: I see that this is a hot topic and I want to formally bow out before the hate tides roll in T3/r7/2015-04-03.txt.gz:{chan ch=tech}Barbafappa Pleiades Tech: I have an alias that casts desolation twice in a row every time I enter the letters and that's fine T3/r7/2015-04-03.txt.gz:{chan ch=tech}Korridel Tech: The simple answer? Ask an imm (like me) about what you want to do. We'll give you the okay/no regarding it. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Barbafappa Pleiades Tech: what wouldnt be fine is if I would create a trigger that would call that alias until I get the message that the mob is dead T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: To elaborate on Korridel, though - they're against autocasters, but they're not explicitly illegal. They become very illegal, though, in the scenario described - if you were called away suddenly (for WHATEVER reason, emergency or not), and you continued benefitting, then you are effectively a bot, and that's a huge no-no. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Barbafappa Pleiades Tech: without me having to do anything T3/r7/2015-04-03.txt.gz:{chan ch=tech}Kerno Tech: ok, i think i get it T3/r7/2015-04-03.txt.gz:{chan ch=tech}Bishoujo Raded Tech: just do what I do: spam 30 attack spells, then panic disconnect when you realize the mob is immune. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tech: Korridel snickers with Bishoujo Raded about their shared secret. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: Of course, that can change at any time in the future to prevent cases of, "My baby fell and hit her head!" T3/r7/2015-04-03.txt.gz:{chan ch=tech}Korridel Tech: I've done that on my alt. Oh killing this q mob, cast 3 desos, Oh look it's immune. Well wait until it's done, cast spasm, be done with it. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Kerno Tech: what i was thinking of were triggers that would re-cast spells until mob dies - woukd that that be allowed? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: Again, see the explanations. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Korridel Tech: Again - if you were to walk away, it would be a bot. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: It's "allowed", but very much toeing the line of right and wrong. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tech: Arcidayne nods at Korridel. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Kerno Tech: ok, thanks for all explanations T3/r7/2015-04-03.txt.gz:{chan ch=tech}Kerno Tech: still.. seeing all the fancy triggers, script support and stuff in the official client... kind of made me think... nevermind T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: There's tons you can do that are perfectly legal, and doesn't draw a question in the minds of the Imms. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Bishoujo Raded Tech: to keep it easy: don't have triggers or anything automated that kills, moves, buys, or sells things. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: you could probably make a trigger to kill your autocaster or whatever when the mob dies T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: and make it need an alias to turn back on for next kill T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: still in trouble if afk with aggros though, so no point I guess T3/r7/2015-04-03.txt.gz:{chan ch=tech}Bishoujo Raded Tech: you very definitely could, but then it's something that could become illegal T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: Well, see, if the first mob dies and turns it off, then you won't get in too much trouble if you have to hit the alias to start it again. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: not worth it T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: unless he walked away during combat, then he would be in trouble T3/r7/2015-04-03.txt.gz:{chan ch=tech}Kerno Tech: yes, this what would separate bot from 'client functionality' - not engaging mobs without player T3/r7/2015-04-03.txt.gz:{chan ch=tech}Bishoujo Raded Tech: I have a macro and aliases for my main attack, then a second alias to stack 5 of my main attacks with a "rewield" at the end in case I get disarmed. never seen the need for an autocast trigger. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Kerno Tech: i dont to water down the conclusions but queueing 10 casts doesnt require more of my attention than autocast trigger T3/r7/2015-04-03.txt.gz:{chan ch=tech}Bishoujo Raded Tech: no it doesn't, but it's not automated, and stacking a room isn't against the rules. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: Here's the thing. The rules are out there to read. If you have ANY question about the legality of something, it's quite easy to send a note to the Imms, and they will respond. You won't get in trouble, you won't get penalized, but you will get an answer. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Cheburashka Tech: too bad suicide command doesn't work, you could make a trigger to kill self if you get an aggro while in another window T3/r7/2015-04-03.txt.gz:{chan ch=tech}A macabre Sonet Tech: Yes, but I think the part your not seeing is that if your in combat and walk away EVER your botting. That is even if your not using skills T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tech: Bishoujo Raded nods at A macabre Sonet. T3/r7/2015-04-03.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: agree with Arcid...only opinions that matter are the ones with the nuke command - the imms. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Barbafappa Pleiades Tech: or the one with the basement... me T3/r7/2015-04-03.txt.gz:{chan ch=tech}Arcidayne Tech: Everyone thinks the Imms are scary people, but they're not. They're players just like you, including Lasher. They would rather you ask them and find out for sure (and they can update a rule afterwards if needed), than to assume it's okay then feign ignorance when you are about to be nuked. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Kerno Tech: yeah, i cant feign ignorance now... one option less T3/r7/2015-04-03.txt.gz:{chan ch=tech}Barbafappa Pleiades Tech: are you a player just like me, Arcidayne? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Bishoujo Raded Tech: the imms are pretty scary T3/r7/2015-04-03.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: yeap a T3/r7/2015-04-03.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: some are - but just send to imm! T3/r7/2015-04-03.txt.gz:{chan ch=tech}Purriffic Growltiger Tech: the imms are all snuggly fluffy bunnies T3/r7/2015-04-03.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: combat state is 8, right? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Yes T3/r7/2015-04-03.txt.gz:{chan ch=tech}Meeper Tech: damn this mapper is good stuff. T3/r7/2015-04-03.txt.gz:{chan ch=tech}Luxiat Tech: is there a way to build a trigger to intercept commands? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Madcatz Tech: After they've already been sent to the mud? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Luxiat Tech: I'm not sure. The rson I ask is because I was thinking it'd be cool to build a trgger that for instance, when I said planes, it would get my planes amulet out, equip it, enter, then take it off and put it back. possible? T3/r7/2015-04-03.txt.gz:{chan ch=tech}Luxiat Tech: reason* T3/r7/2015-04-03.txt.gz:{chan ch=tech}Zetkax Tech: i have an alias called "planes" which executes "mapper goto 29364" - mushclient knows how to take my planes portal out of a bag and take me there T3/r7/2015-04-04.txt.gz:{chan ch=tech}Meeper Tech: how to strangle a certain channel in aardmush? (because it's already being sent to the communication log) T3/r7/2015-04-04.txt.gz:{chan ch=tech}Gorsk Tech: right click the comm window and select echo channels in main window T3/r7/2015-04-04.txt.gz:{chan ch=tech}Meeper Tech: wow that easy, lol, thanks. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Gorsk smiles happily. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Luxiat Tech: anyone able to fix ths bit of script? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Luxiat Tech: 488 : for i,v in pairs (invT) do T3/r7/2015-04-04.txt.gz:{chan ch=tech}Luxiat Tech: aww, it won't paste. nevermnd T3/r7/2015-04-04.txt.gz:{chan ch=tech}FairyTail Tech: in ipairs? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Ixle Tech: pastebin it, then paste the link T3/r7/2015-04-04.txt.gz:{chan ch=tech}FairyTail Tech: should be for i,v in ipairs(table) do T3/r7/2015-04-04.txt.gz:{chan ch=tech}Luxiat Tech: and how would I pastebin it? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Luxiat Tech: fairytail, I have literally no clue what you are talking about haha T3/r7/2015-04-04.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: there's a site called pastebin, where you upload code, and it generates a URL to share it with others. he wants to see your code. get it? T3/r7/2015-04-04.txt.gz:{chan ch=tech}B Ologn Tech: That sounds like too much work. You should paste each of the several hundred lines here one at a time instead. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Askani Tech: anyone know much about watts/volts/amps? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: i know about about electrical theory. why? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: um, that was meant to be 'a bit about' T3/r7/2015-04-04.txt.gz:{chan ch=tech}Askani Tech: if i have a power supply that is 500w, 32amps on DC, does that mean the max i can go with is 32amps, ? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Luxiat Tech: sorry for the wait but here it is http://pastebin.com/WgwkMEQA# T3/r7/2015-04-04.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: typically, power supplies state the maximum continuous supply at a certain temperature. for PC power supplies, that temperature is 25 degrees, but how it's measured depends on the manufacturer T3/r7/2015-04-04.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: depending on the quality and configuration of the power supply, you may have difficulty achieving that level of output T3/r7/2015-04-04.txt.gz:{chan ch=tech}Luxiat Tech: reposting question with pastebin: anyone able to fix ths bit'o'script? //pastebin.com/WgwkMEQA# any and all help is greatly appreciated, thanks T3/r7/2015-04-04.txt.gz:{chan ch=tech}Redryn Tech: you posted like 9 lines out of 500 and not even the error message, kinda hard to fix. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Luxiat Tech: well, that was the error message T3/r7/2015-04-04.txt.gz:{chan ch=tech}FairyTail Tech: you also get the error itself, thats the part of the code which have the line with the error T3/r7/2015-04-04.txt.gz:{chan ch=tech}Askani Tech: to clarify what i want to do, i'm taking a comp ATX power supply and converting it into a lab power supply to power "sub projects".. i want to hook up all the electrical stuff off one power supply.. but i wasn't too sure if i can with the max amps T3/r7/2015-04-04.txt.gz:{chan ch=tech}Luxiat Tech: new and improved bit'o'script_now with error message! http://pastebin.com/jzfVSS9r T3/r7/2015-04-04.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: PC power supplies tend to make pretty terrible lab supplies. A fair amount of noise and drift is allowed in the ATX standard, plus they don't have a configurable limit. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: i usually like to power things on with the current limit just above what i expect, so that things don't explode quite as violently T3/r7/2015-04-04.txt.gz:{chan ch=tech}Redryn Tech: use \ instead of T3/r7/2015-04-04.txt.gz:{chan ch=tech}Redryn Tech: use \\ instead of \ T3/r7/2015-04-04.txt.gz:{chan ch=tech}FairyTail Tech: in the line where you get the * T3/r7/2015-04-04.txt.gz:{chan ch=tech}FairyTail Tech: replace what Redryn said :) T3/r7/2015-04-04.txt.gz:{chan ch=tech}FairyTail Tech: line, wildcards = wait.regexp ("^(\{invdetails\})$") replace \ with \\ T3/r7/2015-04-04.txt.gz:{chan ch=tech}Luxiat Tech: ah, thanks. now, any suggestions on where to start learning script so I can do this for myself? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Redryn Tech: googling the error message often works for me! T3/r7/2015-04-04.txt.gz:{chan ch=tech}Luxiat Tech: hahaha! wish I had thought of that lmao T3/r7/2015-04-04.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: there's not much risk trying it though. a PC supply should blow a soft-reset fuse if you push it too hard. I've used them for projects before, and had no problems. I do recommend measureing the voltage first with a Scope, under no-load, max-load and over-load conditions (fake loads, not your intended target devices). T3/r7/2015-04-04.txt.gz:{chan ch=tech}Askani Tech: i'm just a DIY hobbist.. and a ATX power supply i have lying around... or i would have to go down the road and folk out.. like $300+ for a decent power supply T3/r7/2015-04-04.txt.gz:{chan ch=tech}Askani Tech: and all my sub project is just for kicks.. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Askani Tech: current project: going to make water ice cold, with peltiers and pump it through a radiator, with fans behind it... homemade air con... T3/r7/2015-04-04.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: heh, cool. peltiers are fun, but they sure do chew a lot of power - now I see why you need so much. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Luxiat Tech: anyone have a reliable inventory/eq minwndow plugin they wouldn't mnd sharing? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Luxiat Tech: I'll take the silence as a no, then... T3/r7/2015-04-04.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: try https://code.google.com/p/bastmush/wiki/eqSets T3/r7/2015-04-04.txt.gz:{chan ch=tech}Siren Cera Tech: is there a way to list all the rooms that I have explored in an area using mapper or S&D? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: what does "mapper area" show? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Siren Cera Tech: "Sorry Cera, I don't understand you" T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: mapper areas shows all areas with explored count T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: you need to add a room name and it will act like mapper find but inside and area T3/r7/2015-04-04.txt.gz:{chan ch=tech}Siren Cera Tech: so you cant just list all the rooms and click on each to goto each one one by one. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: try mapper area '' T3/r7/2015-04-04.txt.gz:{chan ch=tech}Siren Cera Tech: no matches T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: are you in the area of the room your looking for? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: she's not looking for a room... T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: then she shouldn't be using mapper area T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: type 'mapper help' T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: that will give you a better understanding of what you want T3/r7/2015-04-04.txt.gz:{chan ch=tech}Siren Cera Tech: I'm looking for the aarch prof, and for the 2 rooms I'm missing for explored. I'm in underdark. I dont know what I'm looking for so I cant do a search. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Siren Cera Tech: I've read all the helps. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: You can use mapper unmapped T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: tell aarch where T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: That'll tell you which rooms you haven't mapped exits in. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: he's in Castle Vlad T3/r7/2015-04-04.txt.gz:{chan ch=tech}Siren Cera Tech: he's moved. nm T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: screw looking for him in underdark...wait until he moves out of that area :P T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Arcidayne snickers with you about your shared secret. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Siren Cera Tech: he just did T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: and she knows about tell arch where, that's how she knew to be looking in underdark T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: But yeah, do mapper unmapped underdark -- then go to the first room uid, and move the direction you didn't map yet. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: iirc the mapper ships with underdark, though, which makes that not work T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Note that it won't work on custom exits, unfortunately. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: or hidden exits that you haven't uncovered T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Ah, her issue was finding the rooms she hadn't explored, which still wouldn't work with the mapper. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: well, if she hadn't explored them, then the mapper wouldn't have them either T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: (with the exception of shipped areas mentioned) T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: If the mapper ships with Underdark, then they're already mapped. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: You nod. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: So essentially, they're "explored" via client, but not via player. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: which also impacts alts using shared mapfile T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Arcidayne nods at you in agreement. T3/r7/2015-04-04.txt.gz:{chan ch=tech}AnarCat Portia Tech: I got disconnected several times in a row, and now I am finally back in the maps are gone, the windows are in a weird place and I cannot drag them. I have tried resetaard but it has altered them a bit but will not allow me to drop and drag the windows, not open the maps. Does anyone have any really simple advice? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: aard layout unlock T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: try typing layout unlock T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: yeah, with the "aard " :-) T3/r7/2015-04-04.txt.gz:{chan ch=tech}AnarCat Portia Tech: thank you, you are stars!! T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Arcidayne gallantly tips his hat. T3/r7/2015-04-04.txt.gz:{chan ch=tech}AnarCat Portia Tech: so one of the maps was behind another window, thank you!! T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: be sure to do aard layout lock so you don't inadvertently move windows. :) T3/r7/2015-04-04.txt.gz:{chan ch=tech}AnarCat Portia Tech: will do so right now!! once again thanks! T3/r7/2015-04-04.txt.gz:{chan ch=tech}Qbano Tech: Can I update the mushclient? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Yes. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: when you're on aard's website and click the screenshot, then the download link, it contains instructions on how to update to a newer aard MUSHclient package while retaining your settigns T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: is there an easy way to get the vnum from a large pile of equipment? T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: I mean id, they are not called vnums anymore T3/r7/2015-04-04.txt.gz:{chan ch=tech}Ontuct Tech: invdata ? T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: how do you use that? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Ontuct Tech: it is a command T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: great after typing help invdata I am getting "Trigger function "identify_redirect" not found or had a previous error." thats all I can see on my main screen T3/r7/2015-04-04.txt.gz:{chan ch=tech}Ontuct Tech: of that I have no idea lol T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: it was the bast eq database messing up T3/r7/2015-04-04.txt.gz:{chan ch=tech}Trepid Tech: What is the command to show the colors of your highlighted selection on your screen? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Trepid Tech: What is the command to show the colors of your highlighted selection on your screen? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Trepid Tech: whoops T3/r7/2015-04-04.txt.gz:{chan ch=tech}Trepid Tech: whoops T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: You mean copy the colors? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Ctrl+D T3/r7/2015-04-04.txt.gz:{chan ch=tech}Trepid Tech: thank you! T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Or you can turn rawcolors on, redo the command, and turn it back off. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Trepid Tech: thank you very much Arcidayne. that's exactly what i was looking for T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Fun stuff. New hard drive for failing laptop. Now I get to install a new OS on it. :D T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mahasamatman Tech: oo fun fun! what OS are you gonna choose? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Ayasinda Tech: great. I'm doing a failed laptop HD right now :( T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Whatever the owner wants, really. They had Vista on it, and it has a valid Vista key, so I might go back to that one. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Ayasinda: Have you tried spinrite on it, or HDD regenerator yet? T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: use acronus to back it up and dump it all on the new one T3/r7/2015-04-04.txt.gz:{chan ch=tech}Ayasinda Tech: nope. Havent tried them yet. But will try them T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: WTF? I have a few tables nested in one big table. One of the tables refuses to close if I add a 15th element to a table nested inside. Yet, I don't understand why. When I remove the element, it closes just fine. And yes, the element is formatted correctly - after removing it, I copied one of the ones that allowed the table to close and pasted it... and the table refused to close. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Arcidayne has no friggin' idea what is going on. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Turie Tech: Call tech support. They know everything but the answer. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: About as useful as you, then? :P T3/r7/2015-04-04.txt.gz:{chan ch=tech}Turie Tech: Nah, they are more useful. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Arcidayne chuckles politely. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: How fun. Microsoft has stopped providing ISO downloads of Windows 7, and instead asks for your serial key to get the download. So I provide a legit one, and it comes back as "Unsupported product. This product came pre-installed on a device. Contact your device manufacturer for support." T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mahasamatman Tech: another negative point to MS T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Yep, considering the large amount of keys pre-installed on devices... T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: it's a deal they made with pc retailers T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: another reason to not buy pre-built comps T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Arcidayne nods at Mr. Dash. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: These were school issued. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Didn't have to buy them. But also had no choice in the system. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: the school would allow you to reinstall the OS? that doesn't sound like something they would allow T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: more likely to have some sort of backup image or ghost solution T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: And it's a stupid deal with PC retailers. What do they have to gain with this, really? "Oh, people will come to us for help!" -- No, they won't. The ones who are going to be requesting that are the techs who can get it elsewhere anyway. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Dash: We've since graduated, and it's ours to keep. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: So we can do whatever we want with them. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: it has nothing to do with troubleshooting, it is getting another shot with their other pre-installed software they want people to buy into T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: honestly, your best bet is probably going to come from upgrading to 10 T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: or just finding an iso torrent of 7 T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Right, Dash. I'm just saying that telling people to contact their device manufacturer for support probably isn't going to do what they want, since most of the people requesting an ISO of Windows 7 is going to be a tech trying to re-install. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Arcidayne nods at Mr. Dash. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: The customer I have wants Windows 7. I happen to have a key for Pro, so I'm installing it. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Just got the new hard drive today; other one got seriously damaged. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Nice system overall. Dell XPS. Had Vista on it, though. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: And she got a drive upgrade - went from 200GB to 500GB, and paid only $39.00 T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: eww a spinner - couldn't pay me to take one of those T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Arcidayne snickers with Daddius about their shared secret. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: I have a rather simple question, I guess, ... I have made an alias for "cast 'moonbeam'" called $mb... but know I would like to add something so I can type: *mb mother to kill the mother... how do I have to set it up? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: know = now T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: is it a mud alias or client? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: client: mushclient T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: you can add * to the end of it to catch mb mobname.. then have it send cast 'moonbeam' %1 T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: hmmm... I don't understand... T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: can you open the alias window in mush? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: yes, I can T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: then when you select your moonbeam alias.. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: you have Alias: and Send: boxes T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Elorion nods. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: for alias: mb * T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: for send: cast 'moonbeam' %1 T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: then when you type 'mb mother' it will send 'cast moonbeam mother' T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: yeah! it works T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: great! T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: thanks alot! T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: if you want to do it by itself i think you need another alias... not sure T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: hmmm... and when you than want to continu to cast that same spell... is that still possible? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: gonna have to use a new alias i believe since that one expects additional input T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: use alias: mb send: cast moonbeam T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: hmmm... that's a pitty you can't use it both, isn't it... T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: but the main thing is already solved :), thanks alot T3/r7/2015-04-04.txt.gz:{chan ch=tech}Nokfah Tech: If you change the match conditoin to this: ^mb( .*)?$ then check the box for regular expression, it should handle both cases. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Nokfah Tech: condition* T3/r7/2015-04-04.txt.gz:{chan ch=tech}Daddius Tech: there we go, an advanced solution :) T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: whow, great... let me check it T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Yeah, was gonna say, you can use both... T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Then you can do: if "%1" ~= nil then Send "c moonbeam %1" else Send "c moonbeam" end T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: I know this will sound silly, but what is 'the match condition'? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Er, change the ~= nil to ~= "" T3/r7/2015-04-04.txt.gz:{chan ch=tech}Nokfah Tech: the box for Alias: T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: ok T3/r7/2015-04-04.txt.gz:{chan ch=tech}Nokfah Tech: no need to check for nil though, if %1 is nil, it just sends c moonbeam T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Just make sure you tick the "Regular Expression" box to the side. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Nokfah: No, because it captures "" regardless. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: So it's always capturing a string. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: You're checking for whether the string is empty or not. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Arcidayne has experience with it. :p T3/r7/2015-04-04.txt.gz:{chan ch=tech}Nokfah Tech: no harm in sending an emptry string after c moonbeam though T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: True, can just change it to: Send "c moonbeam %1" without an if statement, then. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Nokfah Tech: yeppers T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: hmmm... it is not working at all like this... I must be doing something wrong here... my 'alias line' goes: $mb.*?$ The output line, is: cast 'moonbeam' %1 T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: the $mb has to stand for cast 'moonbeam' T3/r7/2015-04-04.txt.gz:{chan ch=tech}Nokfah Tech: ^mb( .*)?$ not $mb.*?$ T3/r7/2015-04-04.txt.gz:{chan ch=tech}Nokfah Tech: then typing 'mb' or 'mb blah blah' will trigger the alias T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: hmmmm... it seems to work :) T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: in both ways now T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Nokfah enthusiastically high-fives Elorion! T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Elorion faces Nokfah and exclaims "Why you want to leave me!?" T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: that was the moonbeam social :) T3/r7/2015-04-04.txt.gz:{chan ch=tech}Elorion Tech: thanks alot! T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Nokfah goes to Elorion: "No Problem!" T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Heh, when a 500 GB hard drive is ordered, don't send me one that has 456 GG... T3/r7/2015-04-04.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: wishful thinking T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Arcidayne snickers softly. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: i really feel like the 1000 bytes = 1 MB rounding is false advertising. has always irked me since it became commonplace T3/r7/2015-04-04.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: that's why we sadly have MB and MiB T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Arcidayne nods at Mr. Dash. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: May just be stuff the company threw on. Little did they know I'm going to delete it anyway. T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: Why does Mush keep telling me Send-to-script cannot execute because scripting is not enabled? It is enabled T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: You're sure it's enabled? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Gym Leader Mokg Tech: ctrl shift 6 -> enable scripting T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: yes, now all of my scripts are disabled.. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: also, it is set to lua, right? T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: yes T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Some people come up with the weirdest problems. T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: thank Arc T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: mind taking a screenshot of the error message, sonet, and posting it to imgur or something? T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: Thanks* T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Arcidayne grins evilly at A macabre Sonet. T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: no need, its litterally a white on red " Send-to-script cannot execute because scripting is not enabled." T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: and it fires anytime a trigger should fire T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Do you have a plugin that might somehow be disabling it? T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: I have installed nothing new since this started happening, the only thing that has changed is I am writing an inventory script. But I cannot find where this would be causing it T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Step 1. Delete Windows. Step 2. Open window. Step 3. Throw Windows out the window. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: ok. so the command you are executing, is it sending to a script in your plugin that is currently enabled? T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: I think he said it's every trigger. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: yeah, but it might be the same trigger. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: is there a line in your trigger in the plugin file that is 'enabled="y"' T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: it is happening on all triggers, but the one for my inv script is trying to send to a script file T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: no there is nothing like that T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: well, this might seem pedantic, but can you reboot your comp and test once? and once doing that, checking to ensure scripting is on. and try disabling your test plugin tosee if it is contributing to your problem T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: trying to narrow down possiblities T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: ok, brb T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: gah, that messed up all my windows for some reason, what it the command to unlock them again? T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: well that blew up quick T3/r7/2015-04-04.txt.gz:{chan ch=tech}Razor Tech: that's what she said T3/r7/2015-04-04.txt.gz:{chan ch=tech}Two That Dangles Tech: Another Zinger! T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: aard layout unlock is to unlock them all. T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: ah, so SetVariable ("foo", foo1) doensn't create a variable if none exists T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: thank you Arc T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Sure it does. T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: it just errored on me T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: check for nil before calling it, i guess T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: Didn't for me. I'm betting it's because the 'foo1' doesn't exist. T3/r7/2015-04-04.txt.gz:{chan ch=tech}Arcidayne Tech: change it to SetVariable("foo", foo1 or "") T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: ok so I resolved the original problem T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: when it detects a problem in the file you specify for scripts it auto shuts all scripts down T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: simply fix the issue and reload it T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mr. Dash Tech: i haven't had a failed trigger turn off all scripting. i have had then error then will display error messages each time that particular script is called. T3/r7/2015-04-04.txt.gz:{chan ch=tech}A macabre Sonet Tech: Got it working. I should never code while tired T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mahasamatman Tech: what plugin had a countdown timer for ticks (30s) in the status bar of MUSHclient? T3/r7/2015-04-04.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: Aardwolf_Tick_Timer T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mahasamatman Tech: hrm.. i get this error message when trying to add Aardwolf_Tick_Timer plugin: "Line 32: Attribute name 'data-pjax-transient' not followed by '=' (Cannot load)" T3/r7/2015-04-04.txt.gz:{chan ch=tech}Mahasamatman Tech: anyone know what I can do to fix this? T3/r7/2015-04-05.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: i don't see that anywhere in my copy... T3/r7/2015-04-05.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: best bet is probably to redownload it: https://github.com/fiendish/aardwolfclientpackage/blob/MUSHclient/MUSHclient/worlds/plugins/Aardwolf_Tick_Timer.xml T3/r7/2015-04-05.txt.gz:{chan ch=tech}Mahasamatman Tech: will try that, thanks T3/r7/2015-04-05.txt.gz:{chan ch=tech}Mahasamatman Tech: hrm.. same error, i think i might have tried to install WinkelWinkle tick timer and it somehow messed up aards T3/r7/2015-04-05.txt.gz:{chan ch=tech}Mahasamatman Tech: i removed it but maybe it changed something in the script? T3/r7/2015-04-05.txt.gz:{chan ch=tech}Tech: I wouldn't download the plugin file itself, download the aard MUSH package as a whole, as you'll want versions of everything to match T3/r7/2015-04-05.txt.gz:{chan ch=tech}Mahasamatman Tech: this is probably an extension of what happened when I tried to do that Abe T3/r7/2015-04-05.txt.gz:{chan ch=tech}Mahasamatman Tech: i downloaded latest version, then started getting problems with my mapper T3/r7/2015-04-05.txt.gz:{chan ch=tech}Mahasamatman Tech: so i ended up loading an earlier database T3/r7/2015-04-05.txt.gz:{chan ch=tech}Mahasamatman Tech: which doens't work well with the newest MUSHclient.. so I went back to the older version I was using T3/r7/2015-04-05.txt.gz:{chan ch=tech}Ullin Tech: window 7, I have a firefox process that is hanging, and can't terminate it from the taskmanager...any nuke option available, or time to restart? T3/r7/2015-04-05.txt.gz:{chan ch=tech}Ullin Tech: and yah..sadly I can't google the problem... T3/r7/2015-04-05.txt.gz:{chan ch=tech}Ayasinda Tech: you get firefox is already running? T3/r7/2015-04-05.txt.gz:{chan ch=tech}Ullin Tech: was hanging, so I closed it, but the process is running in the background and can't be killed :( T3/r7/2015-04-05.txt.gz:{chan ch=tech}Ayasinda Tech: can you kill the firefox process? (not the application) T3/r7/2015-04-05.txt.gz:{chan ch=tech}Ullin Tech: apparently not...tried to kill it from the task manager T3/r7/2015-04-05.txt.gz:{chan ch=tech}Ayasinda Tech: according to google next step is reboot computer T3/r7/2015-04-05.txt.gz:{chan ch=tech}Ullin Tech: ehhhh...thanks for confirming ::) T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: is there a way to view the whole alias you made for a mapper portal? mapper portals cuts it off after a few characters T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: if you mouse over it, it shows the whole alias T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: it just pops up a bubble telling me the room name when I hover over any part of it T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: mine shows the whole portal alias T3/r7/2015-04-05.txt.gz:{chan ch=tech}Yoshi Tech: it should show the alias in square brackets [alias] T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: says click here to run to (roomname) and then under that the whole alias T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: yeah there is nothing under mine T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: perhaps your alias failed? did you use double semi-colons? T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: no it is doing that room name with no alias for all my aliases in portals, I did use double ; for it all. It works great until I just started using a new weapon now it is doing something it has never done before T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: i use portal ID to avoid name issues, maybe thats it? T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: just to be clear, you're typing 'mapper portals' to get the list right? T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: no, it worked for the last several morts just fine dual wielding and if I use a shield. I use the id for everything and use an alias for the weapon names, it should never unequip my prim but it is now. Yes I am using mapper portals T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: any idea where it saves the portals you specify? I could look at it in there T3/r7/2015-04-05.txt.gz:{chan ch=tech}Yoshi Tech: try using the id for the secondary weapon instead of the name T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: I am using the id T3/r7/2015-04-05.txt.gz:{chan ch=tech}Yoshi Tech: that removes ur primary weapon? T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: I have a variable that holds the id and it uses that to get the second weapon name, I need to be able to see what my alias is so I can see why it started removing the prim weapon T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: second weapon id* T3/r7/2015-04-05.txt.gz:{chan ch=tech}Yoshi Tech: sounds like it's behind a bunch of scripts i have no idea about, sorry don't think i can help much T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: portals are saved in the aardwolf.db in the exits table T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: the 'dir' field has the whole alias/string for portal use T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: there has to be a better way to view this that notpad++ T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: btw, you should be able to see the portal alias/commands used by doing 'xrt areaname' that you have a portal for T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: it'll show all the commands sent before executing, same as if you typed them T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: yes, notepad++ is not for database viewing T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: the xrt command doesn't do anything T3/r7/2015-04-05.txt.gz:{chan ch=tech}Qbano Tech: is there a helpfile for SD plugin? T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: what would you recomend for viewing the db? T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: ww help T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: well how do you use your portals usually? T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: Qbano - ww help shows all WW help info T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: I type recall, an alias types mapper goto , the mapper handles the portal T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: ah ok, so do that then, does it show your alias sent? T3/r7/2015-04-05.txt.gz:{chan ch=tech}Qbano Tech: holly shie... T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: your portal alias should be part of the runto T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: you can specify the alias in the portal set command T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: are you not saying yours has an issue, and you want to see what the portal command is? during a goto id, you should see exactly what the portal command is because it is sent to the mud T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: ok I used sql db viewer, found the alias, as I thought it should never unequip my primary weapon T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: so maybe the problem is your weapon alias and not your portal command? T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: no T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: the alias sends hold Getvar T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: got it, it was the hold. Forgot it needed to be second or it switches to primary T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: lol, gota love small problems T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: i dunno then, i use a simple alias called 'second' which does my 'second weapon' T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: when you use a shield in needs to be 'hold' when a weapon it needs to be second T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: so i guess it didnt really work before then huh T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: it did, it stoped this mort because I started using two weapons, I switched it from second to hold when I went pmage for this tier T3/r7/2015-04-05.txt.gz:{chan ch=tech}Tech: I use dual rather than hold or second T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: works for sheilds then too that way Abe? T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: no it doens't work for shileds T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: shields* T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: yep i just read help dual T3/r7/2015-04-05.txt.gz:{chan ch=tech}Tech: my portal function has variables for whether or not I have portal wish, and if not it calls another function to wear dual or hold T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: cool... i just use a function to record what I am dual wielding and then re-use that. But i didnt make it until I was already dual wielding and before I started using portals functionality, so I'll have to rework it entirely next remort. T3/r7/2015-04-05.txt.gz:{chan ch=tech}Tech: nod, I recommend creating a "use a portal" alias which takes the portal's keyword/ID as one argument and optionally a bag's keyword/ID as a second argument...then in mapper portals, the portal should just be set as do_portal_engine T3/r7/2015-04-05.txt.gz:{chan ch=tech}Tech: then when you change anything, you onl change the portal alias in one spot, your portals in the mapper update seamlessly T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: yeah excellent point T3/r7/2015-04-05.txt.gz:{chan ch=tech}A macabre Sonet Tech: that is a good point, I will have to rework that T3/r7/2015-04-05.txt.gz:{chan ch=tech}Daddius Tech: dont wanna have to start redoing portals thats for sure... T3/r7/2015-04-05.txt.gz:{chan ch=tech}Qbano Tech: how can I create a macro? T3/r7/2015-04-05.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: depends on your mud client T3/r7/2015-04-05.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: what are you using? T3/r7/2015-04-05.txt.gz:{chan ch=tech}Qbano Tech: mush T3/r7/2015-04-05.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: press alt-enter, and on the left hand side look for "macros" T3/r7/2015-04-05.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: then find a key combination you want to bind to, double-click it, and enter in what you want for the macro T3/r7/2015-04-05.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: ...generally that's all there is to it T3/r7/2015-04-05.txt.gz:{chan ch=tech}Qbano Tech: ah i see. T3/r7/2015-04-05.txt.gz:{chan ch=tech}Negader Tech: if i created an alias, and changed it to a plug in, .. but an older version of mushclient.. let's say work, cannot run it, due to version difference, can this be corrected by changing something on the plug-in? T3/r7/2015-04-05.txt.gz:{chan ch=tech}Arcidayne Tech: If the plugin isn't dependent upon anything special, then you can change the version number it can run in. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Ugh. So how can I set a variable as a ColourNote so that I can call it at a later time? i.e. I want to do output = ColourNote(fc, bc, "Testing"), then be able to do 'return output' to have it properly send ColourNote? Apparently doing it that way executes ColourNote instead of storing it... T3/r7/2015-04-06.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: can't just store the parameters in the variable and call ColourNote with them later? T3/r7/2015-04-06.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: only way to store the function call itself, that i know of, is storing it as a string then use loadstring, but that would be less efficient T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Yeah, I'll see if Nick has an alternate solution. :\ T3/r7/2015-04-06.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: what's wrong with my solution? :P T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Less efficient. :P T3/r7/2015-04-06.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: storing the parameters isn't T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: I tried storing the parameters in a variable, by the way. ColourNote(var) didn't work, though. T3/r7/2015-04-06.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: well, ColourNote takes three parameters, you'd need to store them all T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Right. I'm trying to output about 15 different lines. :\ T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: And the lines are along the lines of: ColourNote(tc, bc, "-------------", sc, bc, "Stats", tc, bc, "------------"), rinse, repeat for various info for those 15 lines. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Where tc and bc and sc are customizable colours. T3/r7/2015-04-06.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: something like this? http://pastebin.com/t2B2RjKb T3/r7/2015-04-06.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: (won't run as is cause it doesn't define the colour variables, but gives a general idea) T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: If that's what I have to do, then I'll scream, ha, because I have line breaks in there, too. And in that case, I might as well just do ColourNote(blah, blah, blah) instead of storing them as variables. T3/r7/2015-04-06.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: isn't that exactly what you were asking for though? :P T3/r7/2015-04-06.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: instead of output = ColourNote(fc, bc, "-------------") you do output = {fc, bc, "-------------"} T3/r7/2015-04-06.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: and then lower on wherever you wanted to run the ColourNote stored in your variable, you do ColourNote(unpack(output)) T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: To a degree. I want to be able to do: header = ColourNote(...), footer = ColourNote(...), libr = ColourNote(...), body1 = ColourNote(...), body2 = ColourNote(...), then return header .. libr .. body1 .. body2 .. libr .. footer T3/r7/2015-04-06.txt.gz:{chan ch=tech}Quadrapus Tech: Why not just write a series of functions for each section? T3/r7/2015-04-06.txt.gz:{chan ch=tech}Quadrapus Tech: Otherwise I agree with Myrkul :P T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Because I want to compact code, not expand it. :p T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Same reason I changed up my exp_update tracker earlier. T3/r7/2015-04-06.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: well, personally i'd think a table of lines would be easier to work with than separate variables for each :P T3/r7/2015-04-06.txt.gz:{chan ch=tech}Quadrapus Tech: I think you need a balance between flexibility, readability, and compactness... there are always tradeoffs T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Suppose I could do header = {tc, bc, "blah", sc, bc, "bleh", tc, bc, "blah"}, then do ColourNote(unpack(header))... Hmm. T3/r7/2015-04-06.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: can ColourNote take more than three parameters? T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Yes. T3/r7/2015-04-06.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: then yeah, that would work T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: You can do ColourNote("white","black", "This is text one", "green", "blue", "This is text two", ...) T3/r7/2015-04-06.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: yeah, i see that in the docs... you learn something new every day :P T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Thanks, Myrkul, for steering me in the right direction. T3/r7/2015-04-06.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: np :) T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Nope, not working properly. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Although, hmmm. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: There we go. Whee, got it working now. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Interesting. Google's Fiber is surpassed by Comcast's speeds... as they start rolling out 2GB speeds in Atlanta next month. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: W... t... f... who needs 2Gbps service???!! T3/r7/2015-04-06.txt.gz:{chan ch=tech}Trachx Tech: I hope it is symmetric T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Yep, it is. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: The US cable giant is today announcing a new 2Gbps broadband service, which it will start rolling out in Atlanta from next month. There's no price yet, but Comcast says it will be symmetrical meaning you'll upload just as quickly as you can download and it won't be limited "just to certain neighborhoods." T3/r7/2015-04-06.txt.gz:{chan ch=tech}Trachx Tech: that way you can connect several offices located in different parts of country - almost like LAN T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Heh. For its price, I'm betting that Google Fiber will be the better alternative, even if it's only half the speed. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Suggestive Wink Tech: is it 2GBps or 2Gbps? T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Though the fastest speed record for a fiber network is 255Tbps... the equivalent of 32 terabytes of data per second... T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: 2Gbps. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: gigbits. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Upload a 1TB drive in just milliseconds with that 255, though. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Suggestive Wink Tech: thank you thank you, its a big difference and often people confuse or dont clarify. Either way you're right, it's blinding speed T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: I'm happy with my 50Mbps. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Sure, it might be slow, but you know what? It's fast enough for what I want. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: But if I had 255Tbps, or even 1Gbps, I'd expect my web pages to fully load in 1 millisecond. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: bandwidth is not latency T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: In fact, at 255Tbps, I'll expect my web pages to be psychic and load themselves before I even type in the url. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Suggestive Wink Tech: as to why and how such speed is great... off-site packups will become more practical. Right now how many friends/neighbors do you know that actively backup their computer? How often? Almost none - because it takes a long time and requires an investment - practically buying a duplicate harddrive. Backups are important and with this i can see real-time offsite backup and services becoming a brand new and market T3/r7/2015-04-06.txt.gz:{chan ch=tech}Suggestive Wink Tech: having said that i'm off to patent/start my own "iron mountain" tech giant backup startup =P T3/r7/2015-04-06.txt.gz:{chan ch=tech}Tech: Arcidayne snickers with Suggestive Wink about their shared secret. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: You patent that, I'll patent Fort Knox Security Backup. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Tech: Arcidayne blinks innocently. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Suggestive Wink Tech: hell, you can buy "processing power". You pay monthly to have an offsite computer with certain processing power and RAM... and you can play your Call of Duty, remotely, because the bandwidth can serve you video in real time. Now you dont need to buy or upgrade or maintain computers. Someone like amazon or google can have a server farm of super computers of which you can "rent" processing power on a monthly basis. That new Call of Duty 8 needs 1more Gigagertz thatyour processer cant handle? and you need to upgrade your motherboard because your old one doesnt support chips that fast? Well no more, not if you can pay Amazon 10$ per month more and instantly gain that processing speed T3/r7/2015-04-06.txt.gz:{chan ch=tech}Suggestive Wink Tech: overall that's amazing news for everone, except google... because they now hae serious competition to their google fiber T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Not if Comcast charges more than $150 for their service. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: indeed T3/r7/2015-04-06.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: I don't think comcast intends to compete with google on price unless they absolutely have no choice T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: If I remember correctly, Google's service is $70. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: google is happy for other people to provide fiber. more bandwith for their services, costs them nothing. they win either way. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: not like there's a shortage of people wanting a roll-out T3/r7/2015-04-06.txt.gz:{chan ch=tech}Suggestive Wink Tech: i feel bad for google. Comcast was sleeping on progress for decades. Finally when google started rolling out real modern broadband, suddenly comcast woke up. I'll buy google's fiber just out of priciple, because comcast didnt give a crap till google slowly started taking their market share T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Comcast says they'll hit 18 million homes shortly after the initial roll out. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Suggestive Wink Tech: that's what... like 5 major metropolitan areas? not bad... not even a test launch in a city study the network... you know.. stability, load handling, range... interference whatever... they straight launched in 5+ major metropolitan areas immediately. Ballsy comcast, very ballsy T3/r7/2015-04-06.txt.gz:{chan ch=tech}Suggestive Wink Tech: now you do got me wondering how much will all this technological wizardry cost to us peasants :) T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Well, they're rolling out to Atlanta, which will probably be their testing grounds. I think they won't hit 18 million until nearing the end of the year. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Suggestive Wink Tech: but still, their pilot launch is on a pretty.... agressively timed schedule T3/r7/2015-04-06.txt.gz:{chan ch=tech}Suggestive Wink Tech: but holy crap, this will change the computing world. People wont need a "computer" anymore, they'll just need a screen and a gigabyte link T3/r7/2015-04-06.txt.gz:{chan ch=tech}Meeper Tech: to get into the next part of Eternal Autumn I have to kill fetch right? T3/r7/2015-04-06.txt.gz:{chan ch=tech}Meeper Tech: sorry T3/r7/2015-04-06.txt.gz:{chan ch=tech}Jedhi Tech: does anyone have >=IE9? please confirm, that this sliding sidebar is working on windows machines! http://keevitaja.com/sidebar/ T3/r7/2015-04-06.txt.gz:{chan ch=tech}Jedhi Tech: also there should be an overlay on the content area T3/r7/2015-04-06.txt.gz:{chan ch=tech}Trachx Tech: there is sidebar in IE 11 T3/r7/2015-04-06.txt.gz:{chan ch=tech}Jedhi Tech: when you click on the Show Sidebar? right? T3/r7/2015-04-06.txt.gz:{chan ch=tech}Trachx Tech: right, just like in Firefox T3/r7/2015-04-06.txt.gz:{chan ch=tech}Jedhi Tech: ok, anyone with 9 and 10? T3/r7/2015-04-06.txt.gz:{chan ch=tech}Jedhi Tech: 11 is the latest IE? T3/r7/2015-04-06.txt.gz:{chan ch=tech}Trachx Tech: not smooth enough though T3/r7/2015-04-06.txt.gz:{chan ch=tech}Jedhi Tech: as long as it shows, i am cool with it. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Trachx Tech: I see difference between Firefox and IE: when page is loaded in Firefox sidebar is visible then is hidden, in IE it is hidden instantly T3/r7/2015-04-06.txt.gz:{chan ch=tech}Jedhi Tech: yeah, i saw that myseld as well. in chrome it does not show at all T3/r7/2015-04-06.txt.gz:{chan ch=tech}Jedhi Tech: and i do not know how to fix this. ff is stupid or something T3/r7/2015-04-06.txt.gz:{chan ch=tech}Jedhi Tech: Trachx please check it again with ff and ie T3/r7/2015-04-06.txt.gz:{chan ch=tech}Trachx Tech: now it works the same way T3/r7/2015-04-06.txt.gz:{chan ch=tech}Jedhi Tech: tnx T3/r7/2015-04-06.txt.gz:{chan ch=tech}Trachx Tech: I mean in both browsers not the same way it was before :P T3/r7/2015-04-06.txt.gz:{chan ch=tech}A macabre Sonet Tech: Anyone know which plugin hold 'map_rederect'? I am filling up with an error of 'Trigger function "map_redirect" not found or had a previous error." T3/r7/2015-04-06.txt.gz:{chan ch=tech}Jedhi Tech: yeah, got it T3/r7/2015-04-06.txt.gz:{chan ch=tech}Trachx Tech: Aardwolf_Bigmap_Graphical.xml and aard_ASCII_map.xml T3/r7/2015-04-06.txt.gz:{chan ch=tech}A macabre Sonet Tech: thank you, needed to give them a restart lol, couldn't see anything but that error T3/r7/2015-04-06.txt.gz:{chan ch=tech}Farzad Tech: how do i change gmcp options? char for example? im only getting the tich rightnow T3/r7/2015-04-06.txt.gz:{chan ch=tech}Farzad Tech: tick* T3/r7/2015-04-06.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Change how? GMCP options are set by the client... T3/r7/2015-04-06.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: so for instance the client must tell the mud to turn on group gmcp info... T3/r7/2015-04-06.txt.gz:{chan ch=tech}Farzad Tech: oh i see, i thought i can manually set them in game T3/r7/2015-04-06.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: In mushclient should all be done by Fiendish's plugins...so shouldn't have to worry. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Does anyone know a way to change the font style in the middle of a Note() in MUSH? I know that I can do NoteStyle(5), for instance, and the next Note() will be that style, but say, for instance, I wanted to do: Note("This is a story about Bob"), but I wanted "story" and ONLY story to be underlined. Is there a way? T3/r7/2015-04-06.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Yeah think it's ColorTell? Basically sends text without a new line. T3/r7/2015-04-06.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: http://www.mushclient.com/scripts/function.php?name=ColourTell T3/r7/2015-04-06.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: British spelling T3/r7/2015-04-06.txt.gz:{chan ch=tech}Tech: Arcidayne sits down and thinks deeply. T3/r7/2015-04-06.txt.gz:{chan ch=tech}A macabre Sonet Tech: that will only change the color and background color of the string T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Yes, but I can put a NoteStyle before each one. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: ColourTell("white", "blue", "This is a ") NoteStyle(2) ColourTell("white", "blue", "story") NoteStyle(0) ColourTell("white", "blue", " about Bob\n") worked perfectly. T3/r7/2015-04-06.txt.gz:{chan ch=tech}A macabre Sonet Tech: nice T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Thanks, Mendaloth. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Qadosh Tech: but is it a story all about how his life got flipped turned upside down T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: No, silly, it's about a sponge that lives in a pineapple under the sea. T3/r7/2015-04-06.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Check this out. http://www.gammon.com.au/scripts/doc.php?function=ANSI T3/r7/2015-04-06.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: never used it, but appears to be exactly what you want... T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Yeah, but then I'm limited on colours. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: I prefer to be able to do things like limegreen, darkorange, blackandbluebaby, and the like. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Tech: Arcidayne runs away in utter terror! T3/r7/2015-04-06.txt.gz:{chan ch=tech}Adrirabaen Tech: what about AnsiNote? T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: See above mention of it. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Regardless, the strict limitation on the ansi bit is a detterent. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Adrirabaen Tech: I think it supports 256-colour ANSI T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: That's all fine and dandy, but there's no ColourNameToANSI function... T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Like I said, I really like being able to do "limegreen" and "darkorange", etc. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Because who has time to memorize all the numbers, especially when you're writing a plugin where someone can customize the colors? T3/r7/2015-04-06.txt.gz:{chan ch=tech}No Exit Anaristos Tech: ansi supports 256-colors if you use the extended codes. ESC[38 T3/r7/2015-04-06.txt.gz:{chan ch=tech}No Exit Anaristos Tech: ESC[38;5;214m T3/r7/2015-04-06.txt.gz:{chan ch=tech}No Exit Anaristos Tech: that's orange T3/r7/2015-04-06.txt.gz:{chan ch=tech}Adrirabaen Tech: I just found the 'showxterm' alias which shows all the 256-colour colours :) T3/r7/2015-04-06.txt.gz:{chan ch=tech}Gym Leader Mokg Tech: awesome. now you can see lots of pretty colors right????????? T3/r7/2015-04-06.txt.gz:{chan ch=tech}Bishoujo Raded Tech: I want the pretty color script :( T3/r7/2015-04-06.txt.gz:{chan ch=tech}Adrirabaen Tech: Awesome, yes! T3/r7/2015-04-06.txt.gz:{chan ch=tech}No Exit Anaristos Tech: you can put those codes with your strings for local display. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Gym Leader Mokg Tech: then how would everyone else get to enjoy it? T3/r7/2015-04-06.txt.gz:{chan ch=tech}No Exit Anaristos Tech: well, aardwolf accept xterm but not ansi (not directly). T3/r7/2015-04-06.txt.gz:{chan ch=tech}Cocoa and Shaelynne Tech: Hey, anyone on who is pretty mac savy? T3/r7/2015-04-06.txt.gz:{chan ch=tech}Adrirabaen Tech: I have a Mac :P T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: I don't save macs. I destroy them. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Cocoa and Shaelynne Tech: doesn't mean your mac savvy =P T3/r7/2015-04-06.txt.gz:{chan ch=tech}Adrirabaen Tech: indeed, I've moved onto Ubuntu T3/r7/2015-04-06.txt.gz:{chan ch=tech}A macabre Sonet Tech: I once used a mac T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: I'm mac savvy... mac and cheese, anyway. T3/r7/2015-04-06.txt.gz:{chan ch=tech}A macabre Sonet Tech: It worked really well and I loved it. I couldn't get that dresser level to save my life T3/r7/2015-04-06.txt.gz:{chan ch=tech}Adrirabaen Tech: what's the question? T3/r7/2015-04-06.txt.gz:{chan ch=tech}Tech: Arcidayne cackles gleefully at A macabre Sonet. T3/r7/2015-04-06.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: I think what everyone is trying to say, better to ask the question, someone will usually answer. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Cocoa and Shaelynne Tech: sorry was asking on ftalk, so basically T3/r7/2015-04-06.txt.gz:{chan ch=tech}Cocoa and Shaelynne Tech: i renamed my computer, and when it restarted it stated up like a brand new mac (FML) except all my programs/files/etc. were there....except itunes. Brand new blank itunes library. Trying to recover my old library file basically T3/r7/2015-04-06.txt.gz:{chan ch=tech}Adrirabaen Tech: not sure, but the library is probably there still T3/r7/2015-04-06.txt.gz:{chan ch=tech}Cocoa and Shaelynne Tech: i'm hoping so, since everything else was still there...I just don't know how to find it T3/r7/2015-04-06.txt.gz:{chan ch=tech}Adrirabaen Tech: in the Finder, click on the Go menu, hold down Option, you should see "Library" in the menu. Select that. Inside that is iTunes. However that will be your new one, not the old one, I'm guessing T3/r7/2015-04-06.txt.gz:{chan ch=tech}Adrirabaen Tech: have you tried renaming the computer back to what it was? T3/r7/2015-04-06.txt.gz:{chan ch=tech}Cocoa and Shaelynne Tech: what is the go menu? T3/r7/2015-04-06.txt.gz:{chan ch=tech}Cocoa and Shaelynne Tech: favorites. devices. shared. tags. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Cocoa and Shaelynne Tech: and no, im not renaming it back, really don't think that will solve the problem T3/r7/2015-04-06.txt.gz:{chan ch=tech}Adrirabaen Tech: menu bar: Finder / File / Edit / View / Go T3/r7/2015-04-06.txt.gz:{chan ch=tech}Adrirabaen Tech: see: http://hints.macworld.com/article.php?story=20070719183238202 - you might be able to rename your new home folder (assuming that is the problem) and rename the previous one back to what you want T3/r7/2015-04-06.txt.gz:{chan ch=tech}Cocoa and Shaelynne Tech: too technical to consider without dinner. thanks. bbiab T3/r7/2015-04-06.txt.gz:{chan ch=tech}Cocoa and Shaelynne Tech: fyi, renamed back to old name....and it worked. thanks! T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: 5000 qps down the drain! *srun* T3/r7/2015-04-06.txt.gz:{chan ch=tech}A macabre Sonet Tech: for what? T3/r7/2015-04-06.txt.gz:{chan ch=tech}Cocoa and Shaelynne Tech: actually now i want to know how to rename my computer safely, because it irks me to no end that both of htem show up as my name on my apple tv T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: Sonet: I was joking, with the "rename" bit. T3/r7/2015-04-06.txt.gz:{chan ch=tech}A macabre Sonet Tech: oh lol T3/r7/2015-04-06.txt.gz:{chan ch=tech}Cocoa and Shaelynne Tech: well it worked =P T3/r7/2015-04-06.txt.gz:{chan ch=tech}Mahasamatman Tech: question regarding aliases: I want to create an alias (for example 'igh *') that casts a spell at %1 when an argument is placed after the alias, but that will cast a spell even when an argument is not placed there, is that possible? T3/r7/2015-04-06.txt.gz:{chan ch=tech}A macabre Sonet Tech: it is T3/r7/2015-04-06.txt.gz:{chan ch=tech}Mahasamatman Tech: oh good, can you help me out with a hint? T3/r7/2015-04-06.txt.gz:{chan ch=tech}A macabre Sonet Tech: have it send to script and use an if block T3/r7/2015-04-06.txt.gz:{chan ch=tech}A macabre Sonet Tech: actually you will need to use regex on the igh * part T3/r7/2015-04-06.txt.gz:{chan ch=tech}Mahasamatman Tech: hrm.. not sure i know enough to be able to do this T3/r7/2015-04-06.txt.gz:{chan ch=tech}Daddius Tech: are you actively working on it? i can probably help I did the same thing the other day when it was discussed on tech T3/r7/2015-04-06.txt.gz:{chan ch=tech}Daddius Tech: ^igh(.*?)$ T3/r7/2015-04-06.txt.gz:{chan ch=tech}Daddius Tech: that will match 'igh' or 'igh something' T3/r7/2015-04-06.txt.gz:{chan ch=tech}Mahasamatman Tech: hey daddius, yeah converted to regular expression but still doesn't work without an argument T3/r7/2015-04-06.txt.gz:{chan ch=tech}Daddius Tech: do you have a space between igh and ()? T3/r7/2015-04-06.txt.gz:{chan ch=tech}Daddius Tech: no space T3/r7/2015-04-06.txt.gz:{chan ch=tech}Mahasamatman Tech: ah T3/r7/2015-04-06.txt.gz:{chan ch=tech}Mahasamatman Tech: let me check it T3/r7/2015-04-06.txt.gz:{chan ch=tech}Mahasamatman Tech: that was it :) T3/r7/2015-04-06.txt.gz:{chan ch=tech}Mahasamatman Tech: thanks sonet and daddius! T3/r7/2015-04-06.txt.gz:{chan ch=tech}Tech: Arcidayne answered this very similar question yesterday... T3/r7/2015-04-06.txt.gz:{chan ch=tech}Tech: Arcidayne fails to hit the shift key and 8giggles at everyone. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Tech: Arcidayne's shifty eyes dart back and forth. T3/r7/2015-04-06.txt.gz:{chan ch=tech}Mahasamatman Tech: wasn't on yesterday!! sorry :) T3/r7/2015-04-06.txt.gz:{chan ch=tech}Daddius Tech: its ok i regurgitated your info for you T3/r7/2015-04-06.txt.gz:{chan ch=tech}Arcidayne Tech: I noticed! :p T3/r7/2015-04-07.txt.gz:{chan ch=tech}Xrex Tech: is there a way to add doors to mapper? T3/r7/2015-04-07.txt.gz:{chan ch=tech}Rugrat Rauru Tech: There's always a way. probably not an easy way T3/r7/2015-04-07.txt.gz:{chan ch=tech}Rugrat Rauru Tech: but you can use cexits T3/r7/2015-04-07.txt.gz:{chan ch=tech}Xrex Tech: that works. thanks T3/r7/2015-04-07.txt.gz:{chan ch=tech}Casus Tech: Its been a really long time since i saw the post but does anyone remember how to fix S&D when you get this message? You have no idea what you're doing, but maybe a gateguard is up? T3/r7/2015-04-07.txt.gz:{chan ch=tech}Tech: gotta adjust the triggers to the new message T3/r7/2015-04-07.txt.gz:{chan ch=tech}Casus Tech: Any chance you think that original note is archived on your page so I can see how to do it and what to look for? T3/r7/2015-04-07.txt.gz:{chan ch=tech}Tech: I don't have notes posted on my page, although Gaardian has a note archive T3/r7/2015-04-07.txt.gz:{chan ch=tech}Nokfah Tech: I posted a pastebin with some instructions if you want to try it out: http://pastebin.com/aB3WTxib T3/r7/2015-04-07.txt.gz:{chan ch=tech}Nokfah Tech: not very detailed, but it tells you what to replace T3/r7/2015-04-08.txt.gz:{chan ch=tech}Rixxa Tech: Any folk familiar with the writing of script-aliases into the mush client? Also looking for the seemingly non-exsistent help files? T3/r7/2015-04-08.txt.gz:{chan ch=tech}Tech: Rixxa goes: "No Problem!" T3/r7/2015-04-08.txt.gz:{chan ch=tech}Rugrat Rauru Tech: mushclient documentation can be found at mushclient.com T3/r7/2015-04-08.txt.gz:{chan ch=tech}Rixxa Tech: Thankyou Rauru T3/r7/2015-04-08.txt.gz:{chan ch=tech}Rixxa Tech: and that most likely will cover the intricacy to follow ya... T3/r7/2015-04-08.txt.gz:{chan ch=tech}Rugrat Rauru Tech: website covers pretty much everything you would want to know. T3/r7/2015-04-08.txt.gz:{chan ch=tech}Rixxa Tech: lua? T3/r7/2015-04-08.txt.gz:{chan ch=tech}Rugrat Rauru Tech: yes T3/r7/2015-04-08.txt.gz:{chan ch=tech}Rixxa Tech: not that I know much except it seems to be a pretty neato language from the lil byte of it I been through so far T3/r7/2015-04-08.txt.gz:{chan ch=tech}Arcidayne Tech: Every function comes with a Lua example (as other languages, too). T3/r7/2015-04-08.txt.gz:{chan ch=tech}Arcidayne Tech: But primarily, the functions are written in Lua format. T3/r7/2015-04-08.txt.gz:{chan ch=tech}Rixxa Tech: so python is in the mix of course, naturally, woot T3/r7/2015-04-08.txt.gz:{chan ch=tech}Rixxa Tech: and in functions lay much power, the force, so to speak T3/r7/2015-04-08.txt.gz:{chan ch=tech}Arcidayne Tech: Trust me when I tell you that if you're using the AardMush client, you'll want to stick to Lua. T3/r7/2015-04-08.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: I'd put it this way: *if you know what you're doing in Python*, by all means. But Lua is probably the best option since most other stuff for Aard is probably in Lua. Easier to share w/ others as well. T3/r7/2015-04-08.txt.gz:{chan ch=tech}Rixxa Tech: still learning lython so I will tackle another, I thnk I read somewhere that delving into more then one language and learning different avenues is actually the best excercise for the brain T3/r7/2015-04-08.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: I've definitely used Python w/ AardMUSH. Was not a problem. But since I want to share my stuff with others at times, and since Lua is the "preferred" language for MUSH, and for the prepacked plugins, because of this I stick with Lua in MUSH. Even I use it *nowhere* else. T3/r7/2015-04-08.txt.gz:{chan ch=tech}Rixxa Tech: lython, lol. Luathon. :P Pi Pi Python for goodness T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: Abe are you lurking about? T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: that was very strange T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: For some reason it was doubling just the fixed part of an alias that always worked before, not sure why T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: as in the alias was for a portal, it was suposed to send 'get %1 ; hold %1;enter;remove %1;put %1 ' the only part it was doubling was the first so the mud was trying to 'get %1 ' and returned an error of can't find T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: Never did it before and now I can't get it to do it again. Just wrote a function in my scripts to handle portals then hit my alias by accident and it works fine now. Crazy times these are T3/r7/2015-04-08.txt.gz:{chan ch=tech}L33tM4st3r Kathan Tech: anyone know how to send a command in Mushclient without letting an alias grab it? In zMud you could just start the command with a tilde. T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: Send("") T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: you need to send it to a script first I think T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: well you do to use that command, do you mean from your prompt? T3/r7/2015-04-08.txt.gz:{chan ch=tech}L33tM4st3r Kathan Tech: yeah T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: why have teh alias if you don't want it to fire? T3/r7/2015-04-08.txt.gz:{chan ch=tech}L33tM4st3r Kathan Tech: I was hopping there was an equivalent to zMud's solution for commandline T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: there is no way unless you type /// Send("comman") T3/r7/2015-04-08.txt.gz:{chan ch=tech}Arcidayne Tech: \\\Send("blah") will do it, provided your script prefix is \\\ T3/r7/2015-04-08.txt.gz:{chan ch=tech}Bishoujo Raded Tech: make the alias case sensitive, type it in caps? :p T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: the /// will send it to script first T3/r7/2015-04-08.txt.gz:{chan ch=tech}L33tM4st3r Kathan Tech: ah well, thanks T3/r7/2015-04-08.txt.gz:{chan ch=tech}L33tM4st3r Kathan Tech: just discovered that one of my plugins is reusing an Aardwolf command, which is why I was curious. :) T3/r7/2015-04-08.txt.gz:{chan ch=tech}Trachx Tech: I want to query mapper db from my plugin - is it reasonable to open mapper db in OnPluginEnable and close in OnPluginDisable? I just wonder whether it will interfere with mapper backup or mapper at all T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: depends on how long your plugin keeps it open T3/r7/2015-04-08.txt.gz:{chan ch=tech}Trachx Tech: whole session, read only to query for room info T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: i would close it after every use T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: otherwise you will run into issues T3/r7/2015-04-08.txt.gz:{chan ch=tech}Trachx Tech: I just want to avoid open/close overhead , though it can cause any issues I will have to just open/close it just for querying room info T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: yeah the shorter its open the better, look at what the mapper does T3/r7/2015-04-08.txt.gz:{chan ch=tech}2/3 Flying VampireDude Tech: is it possible to reset the firmware on a 'feature' phone without a lot of know-how? T3/r7/2015-04-08.txt.gz:{chan ch=tech}Trachx Tech: sure T3/r7/2015-04-08.txt.gz:{chan ch=tech}Arcidayne Tech: But you gotta know how to do it. T3/r7/2015-04-08.txt.gz:{chan ch=tech}Tech: A bright, shiny gold halo appears over Arcidayne's head. T3/r7/2015-04-08.txt.gz:{chan ch=tech}Trachx Tech: exactly, to reset for a first time ever requires a lot of know-how, if there is how-to you just need to be able to read and understand T3/r7/2015-04-08.txt.gz:{chan ch=tech}TrEz Tech: my tablet got like 35% battery usage by 'miscellaneous', it's about same as the screen T3/r7/2015-04-08.txt.gz:{chan ch=tech}TrEz Tech: do you know what's wrong with it T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: it has a deadly virus you should throw it out T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: can you be more specific? T3/r7/2015-04-08.txt.gz:{chan ch=tech}2/3 Flying VampireDude Tech: and or mail it to sonet T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: is is possible to have equipment that doesn't show up in compare? T3/r7/2015-04-08.txt.gz:{chan ch=tech}Arcidayne Tech: Possibly if you can't see it. T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: I can see it in my inventory but it doesn't compare T3/r7/2015-04-08.txt.gz:{chan ch=tech}Arcidayne Tech: Are you comparing the right items? T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: yes, that was strange. Everything out of my bags compared manually then put back in, then used the compare from container command and it worked now T3/r7/2015-04-08.txt.gz:{chan ch=tech}Arcidayne Tech: Heh. T3/r7/2015-04-08.txt.gz:{chan ch=tech}A macabre Sonet Tech: not sure why it didn't work the first time T3/r7/2015-04-09.txt.gz:{chan ch=tech}Rugrat Rauru Tech: is there a "3D" mode/way to see multiple layers with mush mapper T3/r7/2015-04-09.txt.gz:{chan ch=tech}Rixxa Tech: search?? T3/r7/2015-04-09.txt.gz:{chan ch=tech}Arcidayne Tech: No. T3/r7/2015-04-09.txt.gz:{chan ch=tech}Trivial Remarto Tech: is there a way to unlock the mushclient miniwins cause for some reason they are locked in place T3/r7/2015-04-09.txt.gz:{chan ch=tech}Dolt Tech: aard layout unlock T3/r7/2015-04-09.txt.gz:{chan ch=tech}Trivial Remarto Tech: thanks T3/r7/2015-04-09.txt.gz:{chan ch=tech}Trivial Remarto Tech: my miniwins were moved after i did a system restore T3/r7/2015-04-09.txt.gz:{chan ch=tech}Rixxa Tech: ANybody know how much love the VI community loves us?? T3/r7/2015-04-09.txt.gz:{chan ch=tech}Rixxa Tech: and has there ever been a run for advertising the fact this game being vi capable T3/r7/2015-04-09.txt.gz:{chan ch=tech}Piffaron Tech: it is a big plus for VI...Good question T3/r7/2015-04-09.txt.gz:{chan ch=tech}Rixxa Tech: I think I could see advertising say at the VA about the VI abilities, and teach ehm, possibly get the equipment gratis to give them, set them uip with their personal trainer T3/r7/2015-04-09.txt.gz:{chan ch=tech}Rixxa Tech: I am storming on how many VI cap games there are. Their is of course quite a few like chess, etc... card games, anything you can mousover, etc... but how much killing maiming, magic, etc can one do... T3/r7/2015-04-09.txt.gz:{chan ch=tech}Drunk'ing Abel Tech: what's the command to go back to normal clan tags instead of generic? T3/r7/2015-04-09.txt.gz:{chan ch=tech}Rixxa Tech: trying to search help T3/r7/2015-04-09.txt.gz:{chan ch=tech}Rixxa Tech: and so far wow, aardwolf racing leaugue say huh T3/r7/2015-04-09.txt.gz:{chan ch=tech}Nokfah Tech: 'clantags' is the command to toggle the colors and such T3/r7/2015-04-09.txt.gz:{chan ch=tech}Rixxa Tech: help pinky pony how you find that inflow?? tech ho T3/r7/2015-04-09.txt.gz:{chan ch=tech}Rixxa Tech: WTH T3/r7/2015-04-09.txt.gz:{chan ch=tech}Trivial Remarto Tech: lol T3/r7/2015-04-09.txt.gz:{chan ch=tech}Rixxa Tech: sorry bout that T3/r7/2015-04-09.txt.gz:{chan ch=tech}Maither Tech: I am on an ipad and this mud client does not seem to support MCCP, does anyone know of an IOS client that does? T3/r7/2015-04-09.txt.gz:{chan ch=tech}Arcidayne Tech: Don't think one exists, but I could be wrong. T3/r7/2015-04-09.txt.gz:{chan ch=tech}Maither Tech: I see, what a shame T3/r7/2015-04-09.txt.gz:{chan ch=tech}Ralyn Tech: maybe a pay one T3/r7/2015-04-09.txt.gz:{chan ch=tech}Jo Jo Jo Joelz Tech: anyone good with css have a minute to look at something for me? T3/r7/2015-04-09.txt.gz:{chan ch=tech}Devout Duvala Tech: 30 seconds: go! T3/r7/2015-04-09.txt.gz:{chan ch=tech}Tech: Jo Jo Jo Joelz blinks innocently. T3/r7/2015-04-09.txt.gz:{chan ch=tech}Nokfah Tech: Got a JSFiddle or something we can look at? T3/r7/2015-04-09.txt.gz:{chan ch=tech}Tech: Devout Duvala forgets why he had this channel on... He has zero technical expertise. T3/r7/2015-04-09.txt.gz:{chan ch=tech}Jo Jo Jo Joelz Tech: yeah, i was getting it uploaded: http://groupsheetscom.powweb.com/candace/bio.html T3/r7/2015-04-09.txt.gz:{chan ch=tech}Jo Jo Jo Joelz Tech: i cant get that home button to align with the bottom of the surrounding div T3/r7/2015-04-09.txt.gz:{chan ch=tech}Jo Jo Jo Joelz Tech: working on a web page for a friend, havent done any web work in over 2 years, im a little rusty :-p T3/r7/2015-04-09.txt.gz:{chan ch=tech}Jo Jo Jo Joelz Tech: reply no worries T3/r7/2015-04-09.txt.gz:{chan ch=tech}Jo Jo Jo Joelz Tech: err T3/r7/2015-04-09.txt.gz:{chan ch=tech}Nokfah Tech: Don't have time to test, but try absolute positioning on the element: { position: absolute; bottom: 0; left: 0; } T3/r7/2015-04-09.txt.gz:{chan ch=tech}Jo Jo Jo Joelz Tech: that puts it at the bottom left of the page, not of the surrounding div T3/r7/2015-04-09.txt.gz:{chan ch=tech}Arcidayne Tech: Precisely where do you want the Home button? T3/r7/2015-04-09.txt.gz:{chan ch=tech}Jo Jo Jo Joelz Tech: bottom left of the bordered area T3/r7/2015-04-09.txt.gz:{chan ch=tech}Arcidayne Tech: So basically in line with the light blue circle, on the left side? T3/r7/2015-04-09.txt.gz:{chan ch=tech}Jo Jo Jo Joelz Tech: essentially yes T3/r7/2015-04-09.txt.gz:{chan ch=tech}Arcidayne Tech: Does this help you? http://stackoverflow.com/questions/5150411/align-divs-to-the-bottom-of-their-container T3/r7/2015-04-09.txt.gz:{chan ch=tech}Arcidayne Tech: I'm cleaning my room, otherwise I'd see what else I could come up with, but that might be your answer. T3/r7/2015-04-09.txt.gz:{chan ch=tech}Jo Jo Jo Joelz Tech: ah yes it does T3/r7/2015-04-09.txt.gz:{chan ch=tech}Jo Jo Jo Joelz Tech: i wasnt setting the outside container to relative. thanks T3/r7/2015-04-09.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-09.txt.gz:{chan ch=tech}Jo Jo Jo Joelz Tech: vertical-align worked for the stuff on the right. not sure why it didnt work on the left T3/r7/2015-04-09.txt.gz:{chan ch=tech}Jo Jo Jo Joelz Tech: except maybe the top level div is considered relative because of margin: auto T3/r7/2015-04-09.txt.gz:{chan ch=tech}Devout Duvala Tech: Any blowtorch users online? I want to know how to (if it's possible) link a trigger to an on screen button? i.e. button turns off trigger to send notification of a tell T3/r7/2015-04-09.txt.gz:{chan ch=tech}Devout Duvala Tech: Any Blowtorch users around? T3/r7/2015-04-10.txt.gz:{chan ch=tech}Hyggs Lambo Tech: hello, I've redone my Prompt lately but seems like I've messed up a seTting now, Do you possible Know what command To enter that will take alway my prompt from showing on each spell when I spellup. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Bhengis Tech: I'm on an iPhone app called pocket mud, is there any way to enable paging? I can't currently see the bottom half of the eq in my bag because I get disconnected. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Ayasinda Tech: try reducing the pagesize. See help pagesize T3/r7/2015-04-10.txt.gz:{chan ch=tech}Ayasinda Tech: pagesize T3/r7/2015-04-10.txt.gz:{chan ch=tech}Bhengis Tech: thanks so much! :D T3/r7/2015-04-10.txt.gz:{chan ch=tech}A macabre Sonet Tech: anyone wanna help me out and save me from this headache? I have a PL/SQL script that won't compile correctly and I can't figure out where I went wrong T3/r7/2015-04-10.txt.gz:{chan ch=tech}A macabre Sonet Tech: Ha, notepad++ for the win. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Arcidayne Tech: I prefer Sublime Text. *blink* T3/r7/2015-04-10.txt.gz:{chan ch=tech}Bytor Tech: sublime is great T3/r7/2015-04-10.txt.gz:{chan ch=tech}A macabre Sonet Tech: It doesn't have all the languages I want and I am to lazy to import everything T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nothings Defines Tech: I do enjoy sublime over npp++ T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nothings Defines Tech: impooooort that ish T3/r7/2015-04-10.txt.gz:{chan ch=tech}A macabre Sonet Tech: are you guys using 2 or 3? T3/r7/2015-04-10.txt.gz:{chan ch=tech}A macabre Sonet Tech: I don't even know how yet, I haven't even looked up the procedure T3/r7/2015-04-10.txt.gz:{chan ch=tech}A macabre Sonet Tech: No one? Ok, I will go, I downloaded version 3, not sure I should have T3/r7/2015-04-10.txt.gz:{chan ch=tech}Bytor Tech: I only use 2, waiting for 3 to go GA T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nothings Defines Tech: 2 seems more stable.. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Arcidayne Tech: 3 is working great for me. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Arcidayne Tech: And it has tons of languages, probably equivalent to NP++. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Arcidayne Tech: Sorry, working from home at the moment, and switching between windows and whatnot. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nohadon Tech: can anyone point me to a equipment/inventory plug in? T3/r7/2015-04-10.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Finger bast T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nohadon Tech: i tried that one, anything else? T3/r7/2015-04-10.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Oh I didn't realize there was no enforcement or day limit on evaluation of SublimeText - might try it again....I didn't want to spend 70 T3/r7/2015-04-10.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: When notepad plus plus was decent enough. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Trachx Tech: use xemacs or emacs T3/r7/2015-04-10.txt.gz:{chan ch=tech}Tech: [Outlaw] Mendaloth thinks that Trachx should ignore Lao and use vi instead of emacs. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Arcidayne Tech: Yeah, the only thing it does while unregistered is pop up ever once in a while when you try to save something. It still saves, but it pops up a nag screen every blue moon about "This is an unregistered version. Please purchase a license." T3/r7/2015-04-10.txt.gz:{chan ch=tech}A macabre Sonet Tech: I am trying to figure out how to switch the languages to it highlights things correctly and autocompletes in an acceptable fashion T3/r7/2015-04-10.txt.gz:{chan ch=tech}Arcidayne Tech: In Sublime? T3/r7/2015-04-10.txt.gz:{chan ch=tech}Arcidayne Tech: If so, that's under View -> Syntax -> Language. T3/r7/2015-04-10.txt.gz:{chan ch=tech}A macabre Sonet Tech: Thank you Arc, that was what I was looking for T3/r7/2015-04-10.txt.gz:{chan ch=tech}Prolithe Tech: hello all T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nican Tech: Hi, I'm using WinkleWinkle's spellup plugin- does anyone know a quick way to teach it to deal with skills like power projection that have a cooldown period before renewal? T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nican Tech: Also, the discussion's old, but I want to put in a vote for either emacs or vi, just use at least one of them and your life will improve in every way. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: every way? T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nican Tech: Every possible way. Better skin, spiritual satisfaction, acknowledgement from respected peers, etc. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Ohhai! Dolt Tech: depending on your definition of 'life' T3/r7/2015-04-10.txt.gz:{chan ch=tech}Arcidayne Tech: I've found Bast's spellup plugin to be better. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Leonassan Tech: I'm deathly allergic to modal editors. I would die. That wouldn't be an improvement. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Tech: Lackluster Lachdanan nods at Leonassan. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Daddius Tech: Nican - I use a trigger for power projection T3/r7/2015-04-10.txt.gz:{chan ch=tech}Arcidayne Tech: It even allows for better management of clan skills. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Daddius Tech: ## You may now use projection abilities.cast 'power projection' T3/r7/2015-04-10.txt.gz:{chan ch=tech}Arcidayne Tech: And takes into account recoveries for spellups. T3/r7/2015-04-10.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: doesnt Game of Thrones author use that? T3/r7/2015-04-10.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: nah, he uses edlin T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nican Tech: I have a trigger too, but sounds like bast is the way to go. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nican Tech: I think that Neal Stephenson was using emacs for a bit, you may be thinking of that. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Leonassan Tech: I rolled my own spellup scripts, so in my post-combat event it just checks to see if my clanskill, cell adjustment, etc wore off and if so re-fires it. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Arcidayne Tech: You can choose which spellups to cast as well as pause the spellup, etc. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nican Tech: Nice. I'll switch over. Thanks for the advice. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: did Neal Stephenson stop using Emacs? T3/r7/2015-04-10.txt.gz:{chan ch=tech}Tech: Arcidayne nods at Nican. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nican Tech: Yea, he switched to a more appropriate editor, I think it was possibly scrivener. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: meh T3/r7/2015-04-10.txt.gz:{chan ch=tech}Tech: Leonassan uses nano and doesn't care. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: emacs isn't a text editor. it's an operating system T3/r7/2015-04-10.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: Emacs is, and always will be, the Thermonuclear Word Processor ;) T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nican Tech: I'd swear by vi or emacs for code, but writing literature is a different beast. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Ohhai! Dolt Tech: why did you bring this up if it had stopped :P T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nican Tech: Emacs is a word processor processor. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Tech: *gasp* Lackluster Lachdanan *lix* Ohhai! Dolt! Yoo want a *lix* too :( T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nothings Defines Tech: processor T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nothings Defines Tech: emacs... my fav. operating system :3 T3/r7/2015-04-10.txt.gz:{chan ch=tech}Nican Tech: Yea. I mean, c'mon, magit alone is worth the price of admission. T3/r7/2015-04-10.txt.gz:{chan ch=tech}Daddius Tech: argg i tried out bast spellup, and after removing it im not seeing aff tags T3/r7/2015-04-10.txt.gz:{chan ch=tech}Daddius Tech: ah its called spellups T3/r7/2015-04-10.txt.gz:{chan ch=tech}Leonassan Tech: http://drusepth.net/how-to-speed-up-your-computer-using-google-drive-as-extra-ram/ T3/r7/2015-04-10.txt.gz:{chan ch=tech}Ta'veren Vultaire Tech: was expecting bs, but yeah... T3/r7/2015-04-10.txt.gz:{chan ch=tech}Qadosh Tech: download ram to make your computer have more megahurts :O T3/r7/2015-04-10.txt.gz:{chan ch=tech}Leonassan Tech: I have so much fun with that link T3/r7/2015-04-11.txt.gz:{chan ch=tech}Kerno Tech: about the GMCP protocol... the link on aardmud to the specs (www.mudstandards.org) doesnt seem to be working. is there any copy of this somewhere. i'm mostly interrested in the init sequence... T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: what are limitations for html icon picture, is it limited 10px * 10px but how about colors? T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: someone familiar with favico(n) ? T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Yeah? T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: faMicon even T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Nope. T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: or was it fav. :P sorry T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Icon for a website? T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: yep that small 16x16 one T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Somewhat familiar, I think. Shoot T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: i have it on website, under public_html T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: and i'm pretty confident i put index.html code correctly T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Is this php? T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: no just html (+css , but icon code in index.html) T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Okay what's going on then T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: wonder if i just should have it in some another directory but public_html ? T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Faviconsc cleans T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: err mis T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tech: any directory works, but is it the right format, is it referenced in the header properly? T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: .ico T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: well, i *think* so, plus i copycatted referencing code (obv made necessary changes) from another html. where pics show just fine T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Which browser? T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: just i wonder if the site's apache can be too old. that could be the thing.... T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: opera, and it shouldnt matter anyway T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: erm firefox even =) T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tech: apache doesn't have any say in it T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tech: it's not a web server function...it's just another http request T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: ok T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: What's your exact call/reference to the icon? T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tech: although it should have the mime type registered T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: second... T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: heh lol i guess i figured it out now T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: apparentely there's nothing wrong with code, just apparentely Ubuntu's Xpaint had some flaw T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tech: what was it? (or not sure what changed but it works?) T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tech: oh, the file format was messed? T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: yeah dunno if that xpaint is bugged or smthn, i'll just redo with another prog then T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tech: I usually use one of the online converters T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: even checked file had mod 644 access T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: and during that i noticed filesize was 0 ... duh T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: .ico is small but not nonexistent. :) T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tech: rofl, yyeah I guess size 0 wouldn't display much T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: so back to it, thanks anyways =) T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: rofl T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: well, despite that small error (zero size) i ended up wondering minutes whats wrong T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: had in code "reF" instead of "reL" ...ehh T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: but now it works :P T3/r7/2015-04-11.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Why I asked for the exact code. (: T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: hehe T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: well there was that xpaint error (???) also , zero size. :) T3/r7/2015-04-11.txt.gz:{chan ch=tech}Dexter Tech: but anyway, nothing cryptic =) T3/r7/2015-04-11.txt.gz:{chan ch=tech}Synderella Tech: How easy do you think it is to make a quest counter for MUSH? I'm new to LUA and want to learn how to build a script that lets me know when I'm completed 7 quests (per level). T3/r7/2015-04-11.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: pretty easy - one trigger and a variable. have you pocked around on fiendish's site for his faq? that being said cp leveling is fastest way to get qps :) T3/r7/2015-04-11.txt.gz:{chan ch=tech}Synderella Tech: True that, Menda. I didn't know he had a site. The last person who was helping me with my LUA is no longer helping people, it seems. So I'm just trying to pick up what I can. Can you point me to where his site is? I'm not sure if I knew Fiendish had a site. T3/r7/2015-04-11.txt.gz:{chan ch=tech}Synderella Tech: I remember having some sort of script that kept track of my off-hand item. I'm using the AardMUSH bundle. Does anyone anything like that? I just want to remember why I had it. Might have had something to do with portals I think. T3/r7/2015-04-11.txt.gz:{chan ch=tech}Rugrat Rauru Tech: if you dont have portal wish it will hold it in your hand. T3/r7/2015-04-11.txt.gz:{chan ch=tech}Rugrat Rauru Tech: other possible reason to track held item, if you have an alias that switches from dual wielding to shield+hold. Not many other reasons. T3/r7/2015-04-11.txt.gz:{chan ch=tech}Synderella Tech: You know what, yeah, I think I had an alias for that. Thank you, I think I remembered enough information to get me squared away. Thanks again. T3/r7/2015-04-11.txt.gz:{chan ch=tech}Askani Tech: with bast spellup plugin, how do i edit a command in their, the "pass without trace" command is wrong, it tirggers at "pass" and not "trace" T3/r7/2015-04-11.txt.gz:{chan ch=tech}Arcidayne Tech: Are you putting it in single quotes? T3/r7/2015-04-11.txt.gz:{chan ch=tech}Arcidayne Tech: use 'pass without trace', not pass without trace T3/r7/2015-04-11.txt.gz:{chan ch=tech}Askani Tech: it how the plugin is setup orginally, i want to edit so it triggers the proper command T3/r7/2015-04-12.txt.gz:{chan ch=tech}Sparhawk Tech: any idea how do I add pass without trace to bast's spellup plugin? T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: the skill syntax is "trace" so use that. T3/r7/2015-04-12.txt.gz:{chan ch=tech}RangerLyze Tech: Anyone familiar with aardwolf for android T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: Anyone know why using rc =DatabaseExec ("db", T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: then and insert (foo) values(foo1) won't allow a variable foo1 do be recognized? T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: is there something about global variables described in a script file that I am missing? They Note(foo1) just fine but in the sql statement it says it can't find it T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: the actual error from the sql function DatabaseError is no such column T3/r7/2015-04-12.txt.gz:{chan ch=tech}Zetkax Tech: try putting the "insert (foo) .." statement into a Note(...) and inspect the actual insert statement T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: hmm, I am getting variable names T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: thank you, I forgot it was all in a string, I need to cut it apart and concatinate T3/r7/2015-04-12.txt.gz:{chan ch=tech}Elchanan Tech: omg where did all my blow torch buttons go T3/r7/2015-04-12.txt.gz:{chan ch=tech}Elchanan Tech: any ideas T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: anyone know how to get special characters to be accepted into an sql table? T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: you could use the blob type. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: thought there was another type to, but it escapes my memory T3/r7/2015-04-12.txt.gz:{chan ch=tech}Trachx Tech: clob ? T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: actually you can just put everything in single quotes, it should work. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: raw? T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: it still wont take a @ symbol T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: below 4k T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: raw will not? T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: the single quotes won't work for special chatacters like @ T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: how do you use the raw type? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: when setting up the table T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: raw below 4k, blob above T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: but that is oracle, what "sql" are you using? T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: are you trying to store aard color codes? T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: yes, and things like *() T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: the names of items are horrendious in this game :p T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: well, I store asci color codes in my tables and those include "non-printable" characters. Putting them in single quotes work fine. SqlServer. T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: I tried to put them in single quotes and it just woundn't take T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: What I did is I run the string through a translator from aard code to ansi and store that. The advantage is that I can then display it locally from the database without any conversion. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: ya, that was the other option T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: it is actually very convenient T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: yup T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: it also doesn't take care of sql not accepting )( or * as valid input T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: less wasted space too I think T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: the trick is that you have to have two columns, one for the color-coded string and then the same string without color-codes. T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: the stripped string is the only way you can get the string length quickly. T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: or you could store the length, if you are doing lookups that doesn't help. T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: an item that has -*)A Glimmering Ruby(*- all of these special character, won't be helped by converting to ansi T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: sure, why not? T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: if you want to display them on your local screen, that's the easiest way. T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: you really don't want to spend time translating with scripts. T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: you let the sql server handle the translation away from your client. T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: ok, how do you do that then T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: you write an app to do the translation (which is a lot faster than script) and then call it from the server. T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: the app acts as a stored procedure. T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: yeah, not sure how that will help me, I can't even get anything into the table like this, I am sitting on an empty table until I can get the special character inside it T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: ok, you send the aard string up to the server, it calls the app to translate to ansi then it stores the string (in ansi and stripped) when you want it back, you just read the ansi string into your client. T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: wouldn't know how to do that, to my knowledge there is no server T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: you could also replace the @ stuff into codes like @Y = 0x02, etc. that would also work. T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: I am simply making a .sqlite3 file from aard and opening it, making a table, then closing it T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: you can download and install sqlserver express for free :) T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: true T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: I am not even writing this for myself. I don't want to make that person dl something else entirely T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: so blob would work T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: they don't have RAW T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: I used shy away from ms-sql, but now, I find it very convenient. I like sqlite3 because is os lightweight. But you can't beat all the things you can do with mssql. T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: any good resources on the blob? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: changing the type to blob will keep item stored as entered T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: the blob is actually used for images, most times. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: do a google on sqlite3 data types T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: or hit the main sqlite page T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: the problem with the blob is that you can't do anything but read it and write it T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: ya, what are you trying to do to it? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: blob is for binary data and usually to store images in the db is a bad idea T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: but sqlite is limited T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: I am just making an inventory management script T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: well, images are just binary data :) T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: so going to the mssql would work like Anaristos says T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: yes they are T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: also, there are many times you have to use blobs in databases T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: well, I suggest you use the ms sqlserver rather than sqlite3. The inventory management is more complex than you think it is right now. T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: nope, the BLOB type still gives a syntax error for * T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: which db are you using now? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: he's using sqlite T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: well sqlite3 T3/r7/2015-04-12.txt.gz:{chan ch=tech}Legendary Gruagach Tech: the return of the database! T3/r7/2015-04-12.txt.gz:{chan ch=tech}Legendary Gruagach Tech: brb, making action movie T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: well, there is nothing wrong with that, except that all the heavy lifting is being done by the client. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: just creating an sqlite3 file to store thing, so kinda a db heh T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: going the way Anaristos is saying is better, may be a steeper learning curve, but you'll be happier after T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: and which error message do you get? T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: what is your client? T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: near "*": syntax error T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: mush T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: it is sqlite error T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: it is syntax error. check your code! T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: yeah, knew that. That is why I am asking how to get special characters into an insert statement without sql erroring out T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: sorry, it is not a sqlite error T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: nope that error is on a DatabaseError check T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: not in mush T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: I am just printing the error so I can see it T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: add ' in front of the special char in sql query T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: and the type is set to blob? T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: tried that T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: as that makes no sense T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: tried blob tried ' before the special character T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: db would not look at it, takes the value as it is T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: no need for a blob to store a string T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: I use a cmud com object to interface with sql server. The com object should also run under mush, but it would require mush scripts which I haven't written. If you like I can give you the com object app, it's written in c#. T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: I also wrote it in Lua but it ran too slow :) T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: what is the string you are trying to insert into the db T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: @R-*)A @WGlimmering @RRuby(*-@w T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: you have to escape the )( T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: one sec, let me try it T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: yes, I have tried to escape all of it T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: have you tried looking at what Bast's eqdb does for those characters? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: ya, his db has that stuf T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: eqdb is nice T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: yeah couldn't find where it did those things T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: well, if you are using regex to parse the string you will have to escape the )( individually otherwise you will get an error. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: btw it is not a sql issue, if you get syntax error T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: you escape the string in the client before shipping it out. T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: that's right T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: what are you trying to do that eqdb doesn't do? T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: I am trying to write it myself so I understand it T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: oh T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: I don't know why people seem so against that, I did the same thing with the mapper and s&d I like writing these things to better my understanding of them T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: it's fine T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: was just curious T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: we're mostly against it because you don't tackle things anywhere near your current ability level... T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: how do you expect me to learn it if I 'tackle things near my current level' T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: i confirm, this has nothing to do with sql. you have to escape the string T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: Jedhi use -h that was my orriginal question.. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: that's precisely how you learn, sonet T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: trying to tackle things which aren't near your current level means that you stare blankly at things that you don't understand, rather than expanding what you do understand T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: and here abelinc goes again... you really must have something against people getting done with what they need T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: You smirk at his saying. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: abelinc if you are not prepared to help ot do not have the right answer, they why bather at all with this T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: So abe, what would you recomend I work on? Something I have no personal investment in? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: I'm always prepared to help...but sometimes the best help is to say that it's not something that you should be doing right now T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: I guarantee you that crating a inventory database system is not for the faint of heart. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: abelinc has a point, getting a good base before expanding on it, you learn more T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: eqdb is a combination of broadcast_invmon.xml, eqdb.xml, lua\eqdb.lua, lua\sqlitedb.lua, lua\tablefuncs.lua and copytable.lua T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: he didn't exactly just throw it together T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: I agree, you have to learn a lot of stuff before you tackle the project. Using the project to learn is a great idea, though. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: with a sprinkle of awesomesauce thrown on as a glue T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: Ok, I see the topic has changed, and no answers are fourthright. I will go back to google for a while. Simmer down Abe, I will get this without your help this time. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: I absolutely recommend that you learn on something that you have personal investment in...learning using MUSHclient is a good idea...learning on one of the most advanced parts of it isn't T3/r7/2015-04-12.txt.gz:{chan ch=tech}Taokan Tech: fun fact, if you google awesomesauce, the first result is urban dictionary T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: true T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: you can have my sql interface module, it comes in sql server and sqlite flavors. You will have to figure out how to use it with mush, though. I have other things to do :) T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: looking at "-h sonet", were you ever able to write to the table something with just normal characters? T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: yes T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: for the next step, I'd try isolating the characters involved more T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: I'll move my app to dropbox, you can use it if you like. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: try to find items which use only one type of special character, to create a list of which characters break it T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: Sonet, http://lua-users.org/lists/lua-l/2010-02/msg00103.html this might help you. i am not using this myself, but there is an conn:escape() method T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: anyone knows if there is an eqvialent for prepared statements? T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: sqlserver code: https://www.dropbox.com/sh/6yvru68i0tsnk4c/AAD2-0WUzb_BVBtWWb3eSVeAa?dl=0 T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: I don't have a drop box Anaristos T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: you don't need one, but you can get it in 30 seconds... T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: so \'-\'*\')A \'Glimmering \'Ruby\'(\'*-\' doesn't work \ is unrecognized '-'*')A 'Glimmering 'Ruby'('*-' doesn't work syntax error on @WGlimmering T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: sqliteServer: https://www.dropbox.com/sh/qhbw3gxh7wejarq/AABanlmANgbU1Uep4439yTMea?dl=0 T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: you don't need it, just go to the link T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: that is the beauty of dropbox T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: although others are finally copying htat T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: I dled it, will look into it after I figure out what is going wrong, as part of trying to understand this better T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: opps forgot to double the @ T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: use an item with only one escape at a time needed first T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: sql is something that takes time, if you want to learn you have to be in for the duration. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: also, maybe paste the actual thing that's having the error since I don't think we've seen that yet T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: currently I am in the end of an SQL class in college, they did not really prepair us for this at all... T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: we've seen 'near "*": syntax error', but not what function (or line of the function) produces it T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: its just the print from a DatabaseError('db') it doesn't show line numbers its the last sql error T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: a pastebin of the code or some such T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: yea, post the sql you are using. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: it's probably an MCTS prep class T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: ok, got it. % escapes special chars T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: % is the wildcard in most sql T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: so it's presuming that you're using SSMS and you don't have to deal with MUSHclient, Lua, and a non-MS sql T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: this works http://laravel.io/bin/E3eP5 , all you need to do is to come up with a parser T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: http://pastebin.com/t9AjTSFw T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: wow :) T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: We are using Oracle T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: Oracle is too massive for me, makes ms-sql looks positively streamlined :) T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: But the whole class was working with prepared tables and just learing the different selects and writing functions and triggers. Nothing to do with special chatacters T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: lol, you are not using sqlite provided by mush? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: no, he means oracle for his class, not for this T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: I am following the entry for db on nick gammon's site T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: anything written in Java is going to be massive :) T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: I put up the pastebin of the code Jedhi T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: and? T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: use -h T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: oracle is really obnoxious about a lot of things from the query side T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: what is that equipchange1 trigger, matching just any 8-item comma-separated line? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: (not part of your current issue, but while we're cleaning code ;-) T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: yeah, that needs to be tweaked as it gets the {stats} every so often T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: why do you have statmon turned on? T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: This was supposed to be a quick thing to test a concept, it is turning into a monster T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: apparently I do T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: I don't know T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: Sonet, http://laravel.io/bin/roBRe this is a small script i wrote to work with sqlite in lua T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: and this is the implementation http://laravel.io/bin/9v3k9 T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: no need to open and close the connection upon each request T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: oh, you may have actually turned that on to use my original autoquaffer T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: and then I wrote the GMCP replacement version T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: i use my own scripts T3/r7/2015-04-12.txt.gz:{chan ch=tech}No Exit Anaristos Tech: well, with a fleet-footed item database anything is possible :) T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: but do you perform your own stunts? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: yes i do :P T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: he's an esto, he drinks enough to perform his own stunts! T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: huh T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: abe is refering to estonian T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: jedhi: why did you make your own db interface? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: why? i am not saying that it is anything pretty, but at least it makes sense. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: today i would probably write something better as it was my early days of learning lua T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: jedhi when I changed everything ofer to a % it just errors on the % %-%*%)A %Glimmering %Ruby%(%*-% T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: it is much faster just to type row = DB:first("SELECT something") and get the first row T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: sorry sonet, i have nad had the need to escape these special chars before. i have only had trouble with ' T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: oh well, I will just strip them all out I guess. I was hoping to avoid that T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: oh I see. it's just doing prepare and finalize stuff with error messages T3/r7/2015-04-12.txt.gz:{chan ch=tech}Mannec Tech: its a shame you cant just redefine your escape character to something that wont appear in the mud - then you could treat all those percents like any other character :p T3/r7/2015-04-12.txt.gz:{chan ch=tech}Mye Tech: you should be enclosing string literals in ' and replacing any internal ' to '' (e.g. 'this is sonet''s string') .. you shouldn't need to escape anything else from the sql perspective .. i don't see where you're enclosing in ' in your code T3/r7/2015-04-12.txt.gz:{chan ch=tech}Mannec Tech: or that. T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: oh well, I will just strip them all out I guess. I was hoping to avoid that T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: mis T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: fiendish, it is doing a lot. opening connections, closing connections, pulling data T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: making queries.... T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: again, break it down to a single symbol rather than trying to figure it out on something more complex first...then if you really can't figure out your escape, encode the characters rather than stripping them T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: it cannot be so hard. fiendish do you know how to easily escape strings for sqlite? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: i really not a lua person or a coder at all T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I'm pretty sure there's a web page for it T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: I thought current belief was that it's not a sqlite issue T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: " A string constant is formed by enclosing the string in single quotes ('). A single quote within the string can be encoded by putting two single quotes in a row" T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: what's the problem? I haven't been paying attention T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: nod, that's what my mentioned, and it's all I see in the sql prepare in bast's T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: his is "fixsql" function T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: are you having a problem with percent signs? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: nope, Sonet has trouble with -*)A Glimmering Ruby(*- T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: he was saying ()* at first T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: and I think T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: that's why I thought blob would be fine, as it doesn't care what you put in(db) T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: takes line as is righ? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: +t T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: what's the line that errors and the error message? T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: got it T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: got what? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: got rid of the syntax error i quess http://laravel.io/bin/De3DW T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: the error he gave us was just 'near "*": syntax error' T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: which could mean that was the first it saw and bailed right? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: like my mother-in-law T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: see the difference in VALUES (]]..t.vnum..",\'".. t.flags.."\',\'".. t.desc.."\',".. t.level..",".. t.type1..",".. t.unique1..",".. t.wearloc..",".. t.timer.." ) T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: it was I needed to add \' to my text variables T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: lol T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: and now it works... not sure what i did earleir T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: Sonet http://laravel.io/bin/nQBRd this is working! T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: you probably have another implementation for the sql T3/r7/2015-04-12.txt.gz:{chan ch=tech}Jedhi Tech: afk T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: anyone know of a plugin that shows all that are in the room with you in it's own windows like the score one etc T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: yup T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: okay might I Know the name heh T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: actually there's a couple different ways to do that...there are consider miniwindow plugins available, which puts con all output into the mw...I made plugins which put roomobjs and room descs into a miniwin, as well as putting scan output into miniwin, but not that put roomchars into miniwindow T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: http://www.gammon.com.au/forum/bbshowpost.php?id=9681 for a con one T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: there's also hwua's sit-there-and-mash-a-button bot program which does it T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: that one's called "Relax&kill" T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: heh that's great ty Abe T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: trying to import complains about unescaped %%w in sPat = "[%w\-]+$" T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: okay only 1 % thought i Had to put another sorry T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: would that be \ T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: what? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: so Abelinc pointed me to a url for a consider mob window plugin T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: and when trying to import, it's complaining about the line which I pasted there T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: should I put entire thing in a pastebin? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: it's in the link from Abe T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: double the \ on the two pat lines T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: thanks abe, will do T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: if you read through the thread there, the bottom of page 3 has someone with the error, and the top of page 4 has the solution T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: oops, missed that one, sorry Abe T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: for stuff in MUSHclient forum threads, you'll usually want to skim the entire thread to see if there's updates T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: there it goes, took a couple conw's T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: relax&kill was posted this past October, so despite my inherent objection to its existence, it'll probably work better out of the box T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: rather not use with your "bot" reference T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: don't want to do borderline naughty stuff T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: and I should have read all of the pages T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: I like the git updated ones etc ;) T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: heh, the last post was an updated version used with aardmush 1802 T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: heh it's broken T3/r7/2015-04-12.txt.gz:{chan ch=tech}Bytor Tech: brb T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: heh, just did a global search/replace in my room objects miniwin plugin to make a roomchars one, if you'd like to see what the MOBs look like in the room T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Hmm... so my router throttles my connection horribly (wired to modem, I get 126 Mbps download, 12 Mbps upload, but to router, it's 21 Mbps/2 Mbps)... even wired to my router, I don't get any change. Anything I can do about that? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tigernuts Tech: QoS? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: Arcidayne sits down and thinks deeply. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: if you need on multiple devices, get your own different router T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Hadn't checked that, Tigernuts. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Abelinc: Even with nothing else connected (well, maybe a Chromecast or two), it's throttled that badly. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: right, I mean don't use that router at all T3/r7/2015-04-12.txt.gz:{chan ch=tech}Fatal FrostBite Tech: Changing my QoS settings helped me tremendously... Think it was turning off WMI. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tigernuts Tech: who on earth needs downloads that speed, anyway T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: I'll have to look into it. And Abe, it is my personal router - Belkin. I don't go through the ISP for modems or routers. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: It's more about work, Tigernuts. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: I was investigating why it took 30 seconds or more to load up my work page. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tigernuts Tech: need the bandwidth for the NSA to spy on you T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: And came across that issue. Plus, if I'm paying for those speeds, I want those speeds. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: hmm, 21/2 should still load any page in under a second T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tormat Tech: onnly if the other side is fa st T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: look for advanced features of the Belkin to turn off T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Pages like Google, etc, load up quickly. But not my work interface. It's weird. Yet pinging them shows no loss. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Oh, and Tigernuts: We stream Netflix around here constantly, as well as a media server. *shifty* T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Curious George is one of the few things that keeps my nephew from getting into TOO much trouble. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: does turning off netflix and disconnecting the media server entirely change the speeds you get when going through the router? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tigernuts Tech: can't see the fascination with streaming services T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tigernuts Tech: streaming and the cloud is just an expansion of the rent culture to me T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Not at all. When I tested it, Netflix wasn't running at all, and I closed out my media server. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tigernuts Tech: rent culture is an extension of indentured servitude T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: rent makes good fiscal sense in some environments T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: and especially in technology, "lease" makes a lot of sense in many environments T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: I'll be right back - need to switch back to router connection so that I can look for and disable anything in the router settings. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: the cloud isn't the cure-all that many try to make it seem to be, but it is a great option for a good many deployments T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tigernuts Tech: maybe so, but no for joe blogs T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: for a blog, plenty of free wordpress services...but that's the cloud :P T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tigernuts Tech: i particularly enjoy how if you buy music from itunes, you don't own it, can't pass it on or give it away T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: the music I buy from itunes comes without DRM :-) T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tigernuts Tech: so do the CDs and vinyl I own T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: for CDs...that's not always the case ;-) T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tigernuts Tech: never seen a cd where it isn't T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: people were furious with Sony a few years back for their CD DRM T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: it was bricking computer-based players T3/r7/2015-04-12.txt.gz:{chan ch=tech}Nuanse Tech: http://en.wikipedia.org/wiki/Sony_BMG_copy_protection_rootkit_scandal T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tigernuts Tech: aren't SOny dead yet? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: wikipedia says around 127 billion in assets, sounds pretty not dead to me T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tigernuts Tech: bah T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tigernuts Tech: kill it T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Heh. Disabled things, and only picked up a marginal increase... from 21 to 26, but still only 2 UL. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Fatal FrostBite Tech: you checked your QoS settings? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: I'l doublecheck them again. Really, I want DD-WRT, but it's not made for my router, apparently. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Nah, turning off QoS and WMM did nothing. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Fatal FrostBite Tech: yikes, sorry. I was stuck at 17 down and 5 up... disabling that on my linksys allowed 50 down and the full 10 up. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Fatal FrostBite Tech: then I got a new comp with MIMO antennas... I get full download speed now =P T3/r7/2015-04-12.txt.gz:{chan ch=tech}Synderella Tech: I just flashed my router and made it into a bridge. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Fatal FrostBite Tech: buying a bridge would've been cheaper =P T3/r7/2015-04-12.txt.gz:{chan ch=tech}Synderella Tech: Not really... I have a pretty good adapter and I've had it for the longest time. I have more of the same router too. :P T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: bridge doesn't allow for multiple devices (or more specifically, it relies on your ISP to recognize, accept and provision multiple devices) T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: and in so doing is also much less secure, as each device is directly findable by devices on the public Internet T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: at least the ISP probably won't argue IP address limitations anymore T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: e T3/r7/2015-04-12.txt.gz:{chan ch=tech}Swalec Tech: does anyone which plugin prints "Ready" in the aardwolf status bar? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: It's the tick timer. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Rather, it's no plugin. T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: timer.xml: SetStatus "Ready" Version_Check.xml: SetStatus "Ready" T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: When the main window doesn't have focus, it'll show Ready in it, as far as I know. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Or that. T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: according to grep T3/r7/2015-04-12.txt.gz:{chan ch=tech}Swalec Tech: Hmmmm, that's interesting -- the tick timer is disabled T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Of course, Fiendish would know better regardless. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Disable version check? T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: that's not my version check plugin anyway T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: mine is aard_package_update_checker.xml T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Speaking of - do you have a version on Git that checks Git now? T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: yes T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: the current one on github checks github, I THINK hold on let me check T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Will have to get it, then. It doesn't look like MUSH has been updated past r1805, though. T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: yup. version_url = "https://raw.githubusercontent.com/fiendish/aardwolfclientpackage/MUSHclient/MUSHclient/AardwolfPackageChanges.txt" T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Good. Thanks. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Tech: yup, board tech, note read 6689 said so anyway T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: correct. I'm about to put out a new release soon. MUSHclient got an update with a feature I asked for T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Oh, sweet. T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: in the new version when a trigger errors it will show the line it errored on T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: the mud output line T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: which is quite useful for me T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Also, looked at my settings for the wireless. It seems I'm connected only as 802.11a, even though my wifi should be able to connect to 802.11n... then again, not even sure that would make much difference. T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: also negative sequencing. I forget why I asked for that. I need to recheck the threads T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: N makes a huge difference T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Hmm. May have to opt for an external wireless adapater, then. T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: you won't get multipath error correction from A T3/r7/2015-04-12.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I'd always heard that the higher frequency band used by N vs G would hurt performance in concrete/metal environments, because it penetrates poorly. But the extra MIMO magic entirely negates that worry. So A has the higher frequency but none of the robustness T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: AC seems to be the answer to that, at any rate. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: maybe, anyway. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Daddius Tech: how do I sent a carriage return in an Echo? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: You don't. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Are you looking to trigger off something? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Daddius Tech: no just having a note pop up for me, and want it to be after the prompt T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: If so, you can do \\\Simulate("Text\n") T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Ah, hmm. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Daddius Tech: using Note displays it before prompt/desc etc T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Well, I didn't say Note. Simulate is different from note in that Simulate fires triggers. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: But it won't solve what you want anyway. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Daddius Tech: i mean, I'm using Echo because of how Note works T3/r7/2015-04-12.txt.gz:{chan ch=tech}Narhtan Tech: anyone know how to use aliases on the aardwolf android app? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Azrael Tech: is it possible to simply copy all my files and folders where mushclient is installed and just run it on another computer T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: yes T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: I did that from a windows pc to a linux one running it in wine T3/r7/2015-04-12.txt.gz:{chan ch=tech}Azrael Tech: and it will retain all my aliases and mapper info and whatnot T3/r7/2015-04-12.txt.gz:{chan ch=tech}A macabre Sonet Tech: yup T3/r7/2015-04-12.txt.gz:{chan ch=tech}Azrael Tech: awesome, thanks T3/r7/2015-04-12.txt.gz:{chan ch=tech}Daddius Tech: whats a good place to share small xml files? Anyone ever used File Pimp? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Gym Leader Mokg Tech: just pastebin it? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Daddius Tech: yeah I guess, thought it'd be easier to just download rather than copy/paste into a new file T3/r7/2015-04-12.txt.gz:{chan ch=tech}Kanmuru Kirua Tech: google drive? T3/r7/2015-04-12.txt.gz:{chan ch=tech}Daddius Tech: arg the page keeps redirecting to my work account T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Dropbox. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Arcidayne Tech: Drop it, right click, copy public link, paste. T3/r7/2015-04-12.txt.gz:{chan ch=tech}Daddius Tech: is there any way to turn off plugin warnings? I have a plugin with variables and when I reload it i get [WARNING] Line 59: overwriting existing variable contents T3/r7/2015-04-13.txt.gz:{chan ch=tech}Luxiat Tech: anyone know whats wrong with this line?: error message says Compile error T3/r7/2015-04-13.txt.gz:{chan ch=tech}Luxiat Tech: anyone know whats wrong with this line?: error message says Compile error T3/r7/2015-04-13.txt.gz:{chan ch=tech}Luxiat Tech: anyone know whats wrong with this line?: error message says Compile error Plugin: Aardwolf_Campaign_Noter (called from world: Aardwolf) Immediate execution [string "Plugin"]:152: unexpected symbol near '<' T3/r7/2015-04-13.txt.gz:{chan ch=tech}Luxiat Tech: sorry for the spam T3/r7/2015-04-13.txt.gz:{chan ch=tech}Rugrat Rauru Tech: you sure that is the line causing an error T3/r7/2015-04-13.txt.gz:{chan ch=tech}Luxiat Tech: yeah, thats the one wth the star rauru T3/r7/2015-04-13.txt.gz:{chan ch=tech}Sweetest Keliandra Tech: how do I unfreeze my mush windows? damn things moved T3/r7/2015-04-13.txt.gz:{chan ch=tech}Ohhai! Dolt Tech: aard layout unlock T3/r7/2015-04-13.txt.gz:{chan ch=tech}Sweetest Keliandra Tech: Thank you :) T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: Ohhai! Dolt gives a thumbs-up to Sweetest Keliandra. T3/r7/2015-04-13.txt.gz:{chan ch=tech}Daddius Tech: is the "exits line" standard or can it be modified/changed by some mud option? e.g. [ Exits: north east south west up down ] T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: it's standard, but other than "other" which is meant for human eyes, you should be getting that info from GMCP rather than the exits line T3/r7/2015-04-13.txt.gz:{chan ch=tech}Daddius Tech: ok thanks T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: if anyone's around the next time Luxiat's on, I'll bet that the issue was with the way they downloaded the plugin file T3/r7/2015-04-13.txt.gz:{chan ch=tech}Daddius Tech: really i was trying to find a way around my trigger firing 2x on a Room Name. It says it matched the room name, and shows my output 2x instead of 1 time T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: always either copy/paste into a text editor, or right-click and download as, rather than opening in a web browser and saving T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: how is it matching a room name? T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: that's again one of those things that I'd do from GMCP, but if not GMCP then using {rname}TheRoomName T3/r7/2015-04-13.txt.gz:{chan ch=tech}Daddius Tech: is it too much overhead though to have the gmcp checked on every room vs. just having a few names for matching trigger? T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: huh? it's still checking every room T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: how would it know that it's a room to not check, if it didn't check it first T3/r7/2015-04-13.txt.gz:{chan ch=tech}Daddius Tech: ok so the trigger is checking every line I guess as they come thru huh T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: yup, that's what triggers do T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: every line from the MUD goes through every trigger in sequence, until it hits one which matches AND is not fallthrough, or it runs out of triggers to check T3/r7/2015-04-13.txt.gz:{chan ch=tech}Arcidayne Tech: The room name only fires once in gmcp... T3/r7/2015-04-13.txt.gz:{chan ch=tech}Arcidayne Tech: But the room info fires each time you look. T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: that's also why anchoring at the beginning of a line is a good practice...without that beginning anchor, it has to "slide" the match window along the entire line, rechecking T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: GMCP sends the room info on every look as well T3/r7/2015-04-13.txt.gz:{chan ch=tech}Daddius Tech: yeah that makes sense, my concern really was calling the room name from the gmcp plugin every room... is there an easier/better way to get gmcp data? T3/r7/2015-04-13.txt.gz:{chan ch=tech}Daddius Tech: i have been doing this: any, rm = CallPlugin("3e7dedbe37e44942dd46d264", "gmcpval", "room.info.num") T3/r7/2015-04-13.txt.gz:{chan ch=tech}Madcatz Tech: The GMCP helper plugins broadcast when they change, so you can listen for the broadcast in your plugin. T3/r7/2015-04-13.txt.gz:{chan ch=tech}Madcatz Tech: But there's really not going to be that much of a difference, if your plugin already knows when the room changes T3/r7/2015-04-13.txt.gz:{chan ch=tech}Arcidayne Tech: Well, as was pointed out by me and Abelinc, it "changes" each time you look. :p T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: You nod at Madcatz. T3/r7/2015-04-13.txt.gz:{chan ch=tech}Daddius Tech: ok i didnt check for the broadcast in gmcp_helper... T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: OnPluginBroadcast is a wonderful thing T3/r7/2015-04-13.txt.gz:{chan ch=tech}Daddius Tech: yeah i just perused the 'broadcast' plugins and didnt see the room info... T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: lo atelyn :-) T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: it's the GMCP plugin T3/r7/2015-04-13.txt.gz:{chan ch=tech}Daddius Tech: yep looking now T3/r7/2015-04-13.txt.gz:{chan ch=tech}Arcidayne Tech: Looking for WHAT, exactly? T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: you want to go to the GMCP page on the wiki T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: it explains the layout/makeup of the GMCP info for everything T3/r7/2015-04-13.txt.gz:{chan ch=tech}Madcatz Tech: There's also a muschclient gmcp page on the wiki, as well, that shows how to use onpluginbroadcast T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: when you're on the wiki, the last option in the main section on the left is Client Protocols...click that, then GMCP T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: the page Madcatz is talking about is near the top of that T3/r7/2015-04-13.txt.gz:{chan ch=tech}Daddius Tech: ok if i'm understanding this right, the broadcast tells me there is data and then I have to call the plugin variable to get it? T3/r7/2015-04-13.txt.gz:{chan ch=tech}Arcidayne Tech: The broadcast tells you when a plugin has fired. You call the plugin to get the information from it. T3/r7/2015-04-13.txt.gz:{chan ch=tech}Daddius Tech: gotcha T3/r7/2015-04-13.txt.gz:{chan ch=tech}Mommas Boy Devol Tech: whats the best place to download torrents? cant find my game of thrones season 5 on pirate bay T3/r7/2015-04-13.txt.gz:{chan ch=tech}Nienna Tech: bitmetv :) T3/r7/2015-04-13.txt.gz:{chan ch=tech}Arcidayne Tech: Because we discuss illegal things on tech, right? :P T3/r7/2015-04-13.txt.gz:{chan ch=tech}Fatal FrostBite Tech: in that case, How do I bot? T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: Fatal FrostBite snickers with Arcidayne about their shared secret. T3/r7/2015-04-13.txt.gz:{chan ch=tech}Arcidayne Tech: FrostBite: Copy/paste this: board personal;note write imms;botting;I want to become a bot, please!;.p T3/r7/2015-04-13.txt.gz:{chan ch=tech}Arcidayne Tech: They'll get right back to you! T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: There goes Fatal FrostBite giggling again, and this time he's looking towards Arcidayne. T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: A macabre Sonet giggles at Arcidayne's actions. T3/r7/2015-04-13.txt.gz:{chan ch=tech}Rugrat Rauru Tech: it's not illegal until you get caught T3/r7/2015-04-13.txt.gz:{chan ch=tech}Arcidayne Tech: Got some experience there, eh? :p T3/r7/2015-04-13.txt.gz:{chan ch=tech}Rugrat Rauru Tech: im barely legal T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tech: Toxik TearNyne snickers softly. T3/r7/2015-04-13.txt.gz:{chan ch=tech}Ixle Tech: I remember hearing about a project where people were packaging educational materials onto networking hardware for "3rd world" deployment in locations without good internet access. Does anyone know any links or key phrases I can use to find this on the interwebs? T3/r7/2015-04-13.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Does it involve google? T3/r7/2015-04-13.txt.gz:{chan ch=tech}Ixle Tech: Found it: http://www.intel.com/content/www/us/en/education/solutions/content-access-point.html T3/r7/2015-04-14.txt.gz:{chan ch=tech}Empsahan Tech: hi T3/r7/2015-04-14.txt.gz:{chan ch=tech}Empsahan Tech: need help with bsp T3/r7/2015-04-14.txt.gz:{chan ch=tech}Empsahan Tech: Trigger function "spelltag_on" not found or had a previous error. i get this plz help T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bombora Tech: try reinstalling broadcast_spellskills T3/r7/2015-04-14.txt.gz:{chan ch=tech}Empsahan Tech: im f****** T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bombora Tech: success or not? if not did you open your plugins and clicl pon that one and click reinstall? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Tech: meh, hardly screwed to merely have to type "spellup" every now & then T3/r7/2015-04-14.txt.gz:{chan ch=tech}Tech: but as bombora suggested, reinstalling the broadcast plugin will probably bring it back T3/r7/2015-04-14.txt.gz:{chan ch=tech}Useful Hadar Tech: if I have a php function that displays some html, is there a way to make it always show at only the top of the page? rather then where the function was called? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Use headers T3/r7/2015-04-14.txt.gz:{chan ch=tech}Useful Hadar Tech: is that the only way? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Dexter Tech: there mush available for ubuntu btw? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Meeper Tech: how to assign two variables in the same trigger? I.e %1 to questArea variable and %2 to questRoom variable... it only allows one variable in the text area T3/r7/2015-04-14.txt.gz:{chan ch=tech}Meeper Tech: anyone on that konws about mushclient? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Most people, probably... T3/r7/2015-04-14.txt.gz:{chan ch=tech}Meeper Tech: just want to know how to send a variable to the application... ie if I "execute" areaVariable it is not sending it to the alias. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: 1) make sure you have the "expand variables" tick set T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: 2) Prepend your command with 'echo', then you'll see exactly what got sent. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: (for testing, obviously) T3/r7/2015-04-14.txt.gz:{chan ch=tech}Dzelgo Tech: 3) Put a sign before the name of the variable. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Dzelgo Tech: Make that an at sign. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Lizza Tech: @ T3/r7/2015-04-14.txt.gz:{chan ch=tech}Meeper Tech: amberstand yeah I have that... uestArea in the echo or I just send to say says "kingsholm" and I have an alias speedwalk to kingsholm but the speedwalk is not executing. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Luxiat Tech: just not @...no need for elephant walkers T3/r7/2015-04-14.txt.gz:{chan ch=tech}Meeper Tech: the mapper speedwalk T3/r7/2015-04-14.txt.gz:{chan ch=tech}Luxiat Tech: @w T3/r7/2015-04-14.txt.gz:{chan ch=tech}Luxiat Tech: hh T3/r7/2015-04-14.txt.gz:{chan ch=tech}Meeper Tech: should I send the variable output to execute? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Meeper Tech: anyone? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Meeper Tech: I have a variable uestarea that is loaded with a string, eg "kingsholm" i have it toggled to expand variables and set to execute but it is not activating my "kingsholm" alias. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bytor Tech: anyone had all their portals dissappear? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bytor Tech: mapper portal aliases I mean T3/r7/2015-04-14.txt.gz:{chan ch=tech}Zetkax Tech: never happened to me T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bytor Tech: k T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bytor Tech: just found it strange T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nuanse Tech: mapper otherwise intact? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bytor Tech: apparently yes T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bytor Tech: noticed I was doing a lot more walking heh T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nuanse Tech: you sure you didnt use mapper purge portals by accident? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bytor Tech: ya T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nuanse Tech: well, you have multiple backups I assume which you can use then :D T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bytor Tech: sure, will hae to figure out how to restore that I guess T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bytor Tech: I will just have to figure out a loop to restore T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bytor Tech: I can just do it in sed, but will play with python for S&Gs T3/r7/2015-04-14.txt.gz:{chan ch=tech}Luxiat Tech: is there a way for an alias to activate from wthin a alias? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Gorsk Tech: send to execute T3/r7/2015-04-14.txt.gz:{chan ch=tech}Luxiat Tech: thanks T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Has anyone figured out how to create max level locks? T3/r7/2015-04-14.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Not sure what you mean....or what client... T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: MUSHclient, max level locks on exits, so that I could say take this exit while under a specified level. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bombora Tech: right lick on the room and chose the lvl lock option T3/r7/2015-04-14.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Make sure the screen is clean before licking. T3/r7/2015-04-14.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: But that is correct, click on the clickable mapper - not the mini-map that comes from the MUD. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Yes, well, that creates a minimum level lock. Don't go in unless you're buffer than that. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: I want the opposite. Only use this exit if you're low-level. I mean to use it to open doors. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bombora Tech: easier to get pass door wish T3/r7/2015-04-14.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Yeah I guess I'd wonder what the utility of that would be...and could always be accomplished by doing the opposite on all the other paths... T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Well, I told the utility -- opening doors. And doing the opposite doesn't work, because doors are picked by default. T3/r7/2015-04-14.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Well post an issue on the github site with the suggestion. T3/r7/2015-04-14.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Can you use an example of what area/door you'd use this on? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Any area, any passable door, until I level up to 20, at which point I get a passdoor spell. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Maybe not worth the hassle, though. T3/r7/2015-04-14.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: and then once you get the wish, all those cexits would have to be deleted.... T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bombora Tech: not worth it - get the wish T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Sounds likely... T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bytor Tech: anyone know how to change the colour of the "ColourNote" highlight in mushclient T3/r7/2015-04-14.txt.gz:{chan ch=tech}A macabre Sonet Tech: ColourNoe("blue", "red", "foo") T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bytor Tech: thanks, but is there a way to set the default colour? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bytor Tech: most in scripts have "" for background, and it's blue by default apparently T3/r7/2015-04-14.txt.gz:{chan ch=tech}Bytor Tech: no biggie, I can work with this I guess T3/r7/2015-04-14.txt.gz:{chan ch=tech}A macabre Sonet Tech: anyone ever have the bast's spellup script not register a practiced spell? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nohadon Tech: anyone has a script that can capture the name of a mob that i'm fighting in a variable? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Mye Tech: just use gmcp to get that T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nohadon Tech: i dont know how, can you give me a link please? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Mye Tech: the aard wiki has information on gmcp .. just search gmcp and it's under clients T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nohadon Tech: thanks T3/r7/2015-04-14.txt.gz:{chan ch=tech}Mye Tech: char.status.enemy has the name of the mob you're attacking T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Mudlet exposes all GMCP data in 'gmcp' variable... super easy. MUSHclient ought to do the same. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nohadon Tech: thanks all T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nohadon Tech: i am capturing char.status.enemy into my target variable. but it is getting captured as rather than , so i cant cast spells on it. any help? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: cast manually T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: still it is fairly easy to remove single "a" or "the" T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: besides you don't have to cast when you're fighting that mob (I guess char.status.enemy contains something when you're fighting some mob) T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nohadon Tech: well i am doing it to target agro mobs fast T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: after fight has started you can just cast any spell (cast ) and it hits mob T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: do not try to create auto cast attack spell after being attacked by aggro T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nohadon Tech: yes i know that, it is on manual cast alias T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: I guess if your first cast comes from plugin that means you are bot T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: TBH I cannot really get why you need that mob name, when I walk in aggro room I just stack cast c eru; c eru; c eru T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: I mean I just have an alis ker *, that does: cast erup %1;c eru;c eru;c eru T3/r7/2015-04-14.txt.gz:{chan ch=tech}Notwalking Tech: can you alias ker (sans wild card) to cast without the name? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: yes, just ker is enough T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nohadon Tech: i have a few push buttons which ise to cast spells arget. they dont work in agro mobs , i have to manually target it then cast. so i was trying to make the proces faster :) T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: also, I've defined F1 to c forest, F2 to c tempest, F3 to c erupt T3/r7/2015-04-14.txt.gz:{chan ch=tech}Notwalking Tech: I have an alias I define in game as zz. (assuming 1 is an appropriate spell number for an attack in my range) zz aliases to "cast 1" T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: so it is enough just to press F1/F2/F3, I can even type and press F1/F2/F3 as it does not require to use command line T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: I use mush aliases T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: also using F1/F2/Fx is quite convenient as you do not have to press T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nohadon Tech: hrm thanks, i better put cast T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nohadon Tech: and cast both on my attack button then. would be much simler then name capturing. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: I usually start fight with area attack spell, so mob name is not really needed T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nohadon Tech: i dont have any area spell yet T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: you may be also interested in Aardwolf_Consider_Window from Blainer, that allows attacking monsters by clicking on their name in separate mini-win T3/r7/2015-04-14.txt.gz:{chan ch=tech}Trachx Tech: and you can use any staff with spell, like that staff from seekers if you want to use area attacks, though that is not recommended if you are not able to survive them :P T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nohadon Tech: wow thats definitely good, i am looking into it. thanks T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Is there a convenient way to display an object, whatever its type (nil, table, string)? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Synderella Tech: I'm trying to make a dual alias for the AardMUSH mapper (to deal with portals and stuff), and I seem to be having issues with invmon tags. I'm focusing right now on triggering an inv-mon tag so it records the item previously held. My dual alias will re-equip whatever I was holding last. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Synderella Tech: I'm trying to make a dual alias for the AardMUSH mapper (to deal with portals and stuff), and I seem to be having issues with invmon tags. I'm focusing right now on triggering an inv-mon tag so it records the item previously held. My dual alias will re-equip whatever I was holding last. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Synderella Tech: Sorry for the doube post, I missed my first one apparently. I also have this issue resolved. :) T3/r7/2015-04-14.txt.gz:{chan ch=tech}Synderella Tech: double * T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: How to dump the current GMCP state? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: gmcpdebug 0, 1, or 2. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: 0 is off, 1 is simple, 2 is verbose. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Nice, thanks! Pity getting this data in a script is so hard, compared to Mudlet. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: I don't find it particularly hard, to be honest. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: I mean, you could just create an alias call gmcpget, then script it to display what values you want to grab. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Can't compete with just grabbing the right thing off a global 'gmcp' table :-) But I'll stop bickering now. Thanks for the support! T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Sorry, I'm having a dumb moment right now... how DO you get GMCP data into a script? Only by listening yourself and keeping track of it? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Oh, I think I got it. I've gotta call another plugin and ask for it. Ugly. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Rugrat Rauru Tech: ye the gmcp_handler plugin T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: Yeah, I'll admit, it took me some time getting used to using the gmcp_handler plugin after I had been using zscript's %gmcp system variable for so long. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Can't get it to work: when I write gmcpval("room.info"), I get: gmcphelper.lua:18: nil parent passed to get_gmcp T3/r7/2015-04-14.txt.gz:{chan ch=tech}Rugrat Rauru Tech: have you read this http://www.aardwolf.com/wiki/index.php/Clients/MushclientGMCP T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Yes, but I'd like to avoid creating locally stored version of GMCP data. I feel the data is available somewhere. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: In other words, I'd like just to ask for the data whenever I need it, not wait with open mouth until it's fed into my OnPluginBroadcast. Am I making sense or should I just shut up and copy-paste? T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: you don't need to wait, but you do need to populate gmcpdata to use that particular function T3/r7/2015-04-14.txt.gz:{chan ch=tech}Rugrat Rauru Tech: you can request the data T3/r7/2015-04-14.txt.gz:{chan ch=tech}Daddius Tech: onpluginbroadcast just states there is new info.. you can call it whenever you want/need it T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: not sure why it's set up that way T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I suppose I will change it at some point T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nothings Defines Tech: its less memory if broadcast goes ignored... but negligible T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: IOW, I need to give you the data so that you could give me the data back? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Tech: Nothings Defines boggles at the concept. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Even my phone's got gigabytes of RAM. I'm sure we can handle a kilobyte of GMCP data. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: define "me" in this context T3/r7/2015-04-14.txt.gz:{chan ch=tech}Tech: Nothings Defines giggles. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Fiendish, the \\\ lua prompt in MUSHclient T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: the function that you're trying to use, for whatever reason, looks at the contents of a variable called gmcpdata T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: I'd like to just dump the current GMCP state here. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: if you haven't populated that variable by fetching the data from the gmcp handler plugin first, then it won't get anything T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: I'd like not to have to install a plugin handler. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: you can't get gmcp data without the gmcp plugin T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: so.....too bad T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Fine, I have it installed anyway... can I tell it to work, scrape the data and make it available for me on request? T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: of course T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: that's what all plugins do T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Sorry, I'm probably looking dumb... but could you please give a working example? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: something simple, preferably. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: yeah. this came up on the forum recently. one sec T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: read the second box in http://mushclient.com/forum/?id=12829&reply=3#reply3 T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nothings Defines Tech: not as simple an example... but you can find many in the code of other plugins T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: where it says "To test the data you want, do" T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Aha! T3/r7/2015-04-14.txt.gz:{chan ch=tech}Tech: Nothings Defines beams a smile at Cizra. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: res, gmcparg = CallPlugin("3e7dedbe37e44942dd46d264","gmcpval","char.status.level") fetches char.status.level and puts it into gmcparg AS A STRING T3/r7/2015-04-14.txt.gz:{chan ch=tech}Tech: Nothings Defines pulls out a large hankie and honks her nose at Cizra. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: that last bit is important, because res, gmcparg = CallPlugin("3e7dedbe37e44942dd46d264","gmcpval","char.status") also puts char.status into gmcparg as a string, but it's actually a serialized table which you then have to deserialize T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: which is what the loadstring("gmcpdata = " .. gmcparg) is for T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: that then sets up a variable called gmcpdata that contains the char.status table T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: you can then do gmcpdata["level"] to get the level T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: honestly, the gmcpval function is kinda useless T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: except inside the gmcp handler itself T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: It sure managed to confused me by pretending it actually does something. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: yeah well T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: nobody's perfect T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: What we do need is a function gmcp("path") that would call CallPlugin... and just spit out the relevant answer. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: Nick suggests something similar later in that thread T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: though he does it inefficiently T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: look at reply 6 http://mushclient.com/forum/?id=12829&reply=6#reply6 T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Been staring at it for a while now :-) T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: It's why I told you to create an alias, gmcpdump or whatever you want. You can call the plugin from there, then have it output whatever you need. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: gmcpdump char.status.level, for instance. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Tech: Cizra changes gmcphelper.lua, adds the function there. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: You could even check whether you've requested a table or string, and tprint if it's a table. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I accept well-formed submissions T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: Keep in mind that you'll want to share that with Fiendish - otherwise the next update may not contain it, and you'll either have to re-edit it, or lose it. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: Any files that come with Aardmush should typically not be messed with. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Erh. I feed my kids by developing software, I'll manage :-) T3/r7/2015-04-14.txt.gz:{chan ch=tech}Daddius Tech: well feed us some too then :P T3/r7/2015-04-14.txt.gz:{chan ch=tech}Zetkax Tech: kids cant eat software! T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: If it's soft enough. maybe! T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: call it community enrichment T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: giving back never hurt anyone T3/r7/2015-04-14.txt.gz:{chan ch=tech}Tech: Arcidayne nods at The Jerk Fiendish. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: except maybe that one time T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: Let's not talk about that one time, mmkay? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: OK, I've got something to work BUT it requires inputting at least the top-level category. I don't know how to make it dump ALL GMCP data. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: you can't T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: maybe... T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: hold on T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: Why are you wanting it to dump all gmcp data anyway? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Exploration, education. It's easier to see what's available than to dig through wikis. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: Eh, the wiki shows you exactly what's available... T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: At least, the Aardwiki does. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: Breaks it down per top level, too. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Yes, and it's good that it's documented. However, docs have a tendency to go out of date after a while, and ... exactly why should we place this kind of artificial restriction? That you should only get GMCP data out if you know the magic password? T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: so... T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: edit aard_GMCP_handler.xml and add function get_gmcpdata() return serialize.save_simple(gmcpdata or "") end T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: then you can \\\print(CallPlugin("3e7dedbe37e44942dd46d264","get_gmcpdata")) T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: Cizra: The gmcp information has not changed since it was implemented on the Wiki. Since the Wiki is user-maintained, it's very unlikely that a new change would go unupdated. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: unclear T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I mean...I certainly don't update it much T3/r7/2015-04-14.txt.gz:{chan ch=tech}Arcidayne Tech: You may not, but Abelinc probably would. ;) T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: abelinc muds from clay tablets T3/r7/2015-04-14.txt.gz:{chan ch=tech}Useful Hadar Tech: I thought he played on an abacus T3/r7/2015-04-14.txt.gz:{chan ch=tech}Tech: Arcidayne chuckles politely. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Orsiphantes Tech: Sundials. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: it's possible that he would, but e.g. I'm pretty sure it took a while for "request sectors" to get added to the wiki after lasher and I negotiated it. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Turie Tech: Abelinc muds from pools of water and a stick I thought. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Qadosh Tech: he takes two wires and presses them together for 1 and releases them for 0, so it's all digital T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: huh. do I really not have a confirm on mapper purgezone? interesting. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: oh well T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: be careful! T3/r7/2015-04-14.txt.gz:{chan ch=tech}Rugrat Rauru Tech: I am reading the wiki. It says I shouldn't callplugin to get a single attribute. So i should always get the table first then use gmcpval? T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: depends on how many values you want, I guess T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: and how often you want them maybe? T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: none of us really know whether there's more overhead in asking for a single value or the subsequent table storage and lookup T3/r7/2015-04-14.txt.gz:{chan ch=tech}Rugrat Rauru Tech: or can i do what this is showing http://mushclient.com/forum/?id=12829&reply=3#reply3. Or will that return an error if null. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I think you'll get can't concatenate string with nil T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: but, like, how often is an attribute not available? T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: hey cizra can you make that PR to development branch instead? T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: sorry (and thanks) T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: sec T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I'd do it myself, but then you don't get credit on github T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: and who doesn't like more internet points? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Tech: Turie raises his hand. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Cizra Tech: Better? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Tech: Turie <--- is village idiot possibly. T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: thanks T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: ok I have to go now T3/r7/2015-04-14.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: back later T3/r7/2015-04-14.txt.gz:{chan ch=tech}Daddius Tech: in Regex does: (%d+)$ match a multi/single number at the end of a line? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nican Tech: should be \d T3/r7/2015-04-14.txt.gz:{chan ch=tech}Daddius Tech: (\d+) ? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Nican Tech: Yea, everything else was good. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Daddius Tech: ok thanks T3/r7/2015-04-14.txt.gz:{chan ch=tech}Elysian Tech: and its 1 ore more digits not a single digit T3/r7/2015-04-14.txt.gz:{chan ch=tech}Daddius Tech: yeah thats what i was aiming for T3/r7/2015-04-14.txt.gz:{chan ch=tech}RedRain Tech: what is the bast command to show the moons graphic (with cycles for next number of ticks) if not on screen. T3/r7/2015-04-14.txt.gz:{chan ch=tech}Regulus Tech: Trying to make first purchase on my apple tv.....keeps giving me this crap "verification required- check payment info on itunes." done this multiple times. Anyone have similar problem? T3/r7/2015-04-14.txt.gz:{chan ch=tech}Barbafappa Pleiades Tech: it's banned in texas T3/r7/2015-04-14.txt.gz:{chan ch=tech}Regulus Tech: No, that's evolution T3/r7/2015-04-15.txt.gz:{chan ch=tech}Rugrat Rauru Tech: what regexp would i need if i wanted to capture a player name on this match: [1 Vamp M+1] Someplayername the Sorcerer T3/r7/2015-04-15.txt.gz:{chan ch=tech}Immpeded Anaristos Tech: [^]]+([^\b]+) T3/r7/2015-04-15.txt.gz:{chan ch=tech}Immpeded Anaristos Tech: [^]]+\s*([^\b]+) T3/r7/2015-04-15.txt.gz:{chan ch=tech}Rugrat Rauru Tech: that would capture just Someplayername? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Immpeded Anaristos Tech: it would stop at the first blank. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Rugrat Rauru Tech: ok thanks T3/r7/2015-04-15.txt.gz:{chan ch=tech}Immpeded Anaristos Tech: sorry, one minor error. I just tested it and this is the correct one: [^]]+\]\s*([^\b]+) T3/r7/2015-04-15.txt.gz:{chan ch=tech}Immpeded Anaristos Tech: sorry, one minor error. I just tested it and this is the correct one: [^]]+\]\s*(\w+) T3/r7/2015-04-15.txt.gz:{chan ch=tech}Rugrat Rauru Tech: how would I reference the wildcard that is capturing the name T3/r7/2015-04-15.txt.gz:{chan ch=tech}Rugrat Rauru Tech: if that makes sense T3/r7/2015-04-15.txt.gz:{chan ch=tech}Immpeded Anaristos Tech: did you get the corrected regex? I sent you a tell. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Immpeded Anaristos Tech: the name is already captured, how you process it depends on your client. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Immpeded Anaristos Tech: since it is your only capture, both cmud and mush will store it in %1. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Rugrat Rauru Tech: ah that works great thanks T3/r7/2015-04-15.txt.gz:{chan ch=tech}Immpeded Anaristos Tech: since the names have to be alphabetic this works also: [^]]+\]\s*([a-zA-Z]+) T3/r7/2015-04-15.txt.gz:{chan ch=tech}Luxiat Tech: can anyone tell me what this means T3/r7/2015-04-15.txt.gz:{chan ch=tech}Luxiat Tech: SQL error on statement: "UPDATE control SET value = '505' WHERE name = 'Tip_FilePos'"database is locked T3/r7/2015-04-15.txt.gz:{chan ch=tech}Luxiat Tech: please and thank you T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: google it? T3/r7/2015-04-15.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: it means your database is LOCKED so you can't UPDATE it. T3/r7/2015-04-15.txt.gz:{chan ch=tech}DeathFlame Kraisler Tech: how do i turn back on my hotkey echo T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: question T3/r7/2015-04-15.txt.gz:{chan ch=tech}Vost Tech: question? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: answer T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: what are some uses for a no contract cell phone, if I don't need one? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Some uses? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Same as any contract cell phone. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Vost Tech: making phone calls... T3/r7/2015-04-15.txt.gz:{chan ch=tech}Vost Tech: text messages... T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: can it be used without a plan? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Vost Tech: should I continue? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Well, you could get wifi connectivity. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: ok, so I could use it for apps without a plan? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: So you could use any phone (contracted or not) without a plan, if it can connect to wifi. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Yes. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Vost Tech: effectively like a small tablet T3/r7/2015-04-15.txt.gz:{chan ch=tech}Tech: Arcidayne nods at Vost. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Mr. Dash Tech: no contract means you can leave any time you want without worrying about incurring penalties from the carrier T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: ok, thanks:) T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Not entirely relevant, Dash. :p T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Methinks he has a phone, doesn't want to get a plan for it, and wanted to know if he could still use it. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: well I know that:) T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: I might be getting an xbox one T3/r7/2015-04-15.txt.gz:{chan ch=tech}Mr. Dash Tech: then he really wasn't asking the right question. there are services that give coverage with no contract T3/r7/2015-04-15.txt.gz:{chan ch=tech}DeathFlame Kraisler Tech: cool T3/r7/2015-04-15.txt.gz:{chan ch=tech}Vost Tech: kinda big for a phone T3/r7/2015-04-15.txt.gz:{chan ch=tech}Tech: Arcidayne nods at Mr. Dash. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: and walmart is giving away a free phone T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: The correct question to ask would have been, "Can I use a cell phone without coverage?" :p T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: with purchase T3/r7/2015-04-15.txt.gz:{chan ch=tech}Vost Tech: ah, ok T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: that's kind of where I was going T3/r7/2015-04-15.txt.gz:{chan ch=tech}Vost Tech: is it just the handset? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: but more specifically was asking in WHAT WAYS can you use a cell phone with no coverage T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Well, make sure that there's no clause stating you have to sign up for a contract. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Mr. Dash Tech: yeah, if you aren't paying for cell service, it just is a wifi handheld device T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: http://www.bestbuy.com/site/olspage.jsp?id=pcmcat372500050008&type=category T3/r7/2015-04-15.txt.gz:{chan ch=tech}Vost Tech: or is it "pay as you go"? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Vost Tech: we have that in the UK T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: oops, best buy, not wal mart T3/r7/2015-04-15.txt.gz:{chan ch=tech}Mr. Dash Tech: can play games on it, depending on the OS or browse the internet, piff T3/r7/2015-04-15.txt.gz:{chan ch=tech}Mr. Dash Tech: that's about it T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: thanks dash, that helps T3/r7/2015-04-15.txt.gz:{chan ch=tech}Mr. Dash Tech: i mean, you can also use apps that take advantage of the internet as well T3/r7/2015-04-15.txt.gz:{chan ch=tech}Mr. Dash Tech: like skype or snapchat or blowtorch for Aarding T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: that was my main point, can I still use it with wifi without having a "plan" T3/r7/2015-04-15.txt.gz:{chan ch=tech}Mr. Dash Tech: right T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: likely I would use it as a dedicated media player remote T3/r7/2015-04-15.txt.gz:{chan ch=tech}Mr. Dash Tech: that being said, if you want something that CAN be used as a phone, there are some solid prepaid options as well. where you can buy minutes or a finite number of texts T3/r7/2015-04-15.txt.gz:{chan ch=tech}Mr. Dash Tech: handy in a pinch T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: nah, I have an S5 with unlimited talk and text, provided by work T3/r7/2015-04-15.txt.gz:{chan ch=tech}Trachx Tech: you can also connect it to pc and sniff gsm communication T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: You could also get a google voice number, and use that as long as you're connected to wifi. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: there are apps that allow you to use phone with calls n text orver wifi for free T3/r7/2015-04-15.txt.gz:{chan ch=tech}Tech: Arcidayne nods at Swamptrash. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: negating contrats or plan T3/r7/2015-04-15.txt.gz:{chan ch=tech}Vost Tech: Skype? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Skype, you have to pay for minutes. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: scype costs T3/r7/2015-04-15.txt.gz:{chan ch=tech}Vost Tech: oh T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Google Voice is totally free, though. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Tormat Tech: unless its skype to skype T3/r7/2015-04-15.txt.gz:{chan ch=tech}Mr. Dash Tech: that is, if you use skype as a phone to call phones. skype to skype is free T3/r7/2015-04-15.txt.gz:{chan ch=tech}Vost Tech: which apps? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Vost Tech: ok T3/r7/2015-04-15.txt.gz:{chan ch=tech}Mr. Dash Tech: google voice for wifi phone service, i'd probably get a different browser than the default. like chrome T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: I have three or four different Google Voice numbers alone. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Shame Windows Phone doesn't install Google Voice. I could port my number over, though. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Mr. Dash Tech: Arcidayne, will Voice also handle sms? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: oddly google voice dont like to work when you get called from prision numbers T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Yes, Dash. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: I've sent more texts than I have made calls with Google Voice. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Unfortunately, the only thing it doesn't seem to handle is multimedia text messages. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: So, no sexting pics can be sent! But that's what you have SnapChat for! T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: hehe snap chat i think was created fer that T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: yeah, in short I didnt' need one, but if there's a deal that comes with a free one, I might as well:) T3/r7/2015-04-15.txt.gz:{chan ch=tech}Toxik TearNyne Tech: you know you can save pics from snapchat? lol T3/r7/2015-04-15.txt.gz:{chan ch=tech}Toxik TearNyne Tech: and arc google voice does do mms but only incoming... T3/r7/2015-04-15.txt.gz:{chan ch=tech}Toxik TearNyne Tech: they send incoming mms to your email T3/r7/2015-04-15.txt.gz:{chan ch=tech}Piffaron Tech: you can save snap pics, but the other person is notified:) T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: um with the much client is ther a way to autolog in? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Sure is. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: how? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Configure -> General -> Connecting. Put your user and password in appropriately, and change the style to diku. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Rather, hit Alt+2, and put your user and password in. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Tech: but then don't complain when your little brother sells off all of your stuff or gets your character nuked }:> T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: lol nope T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: only i use this computer T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: thanks T3/r7/2015-04-15.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Xrex Tech: is there a way to get mapper to work with the Call of Heros start area? I tried cexit, but it still shows There was 1 match which I could not find a path to within 300 rooms T3/r7/2015-04-15.txt.gz:{chan ch=tech}Qadosh Tech: there isn't a way to run to the exit of call of heroes once you are in it T3/r7/2015-04-15.txt.gz:{chan ch=tech}Xrex Tech: is there a way to get mapper to run into call of heroes area? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Yes... T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: And you are incorrect, Qadosh. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Bishoujo Raded Tech: you can set up a cexit - mapper help exits T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: As long as you have the cexits all set up properly, it'll work. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Xrex Tech: I have the 3 cexits from the start of the area. but it doesn't want to map into the area T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: You sure you set up the three exits correctly? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Xrex Tech: I think I know what's the problem. I need to do a cexit to call of heroes T3/r7/2015-04-15.txt.gz:{chan ch=tech}Arcidayne Tech: Well, yes, you need to do that. T3/r7/2015-04-15.txt.gz:{chan ch=tech}Xrex Tech: okay. working now. thanks. stupid of me to forget that the start area of call of heros is a cexit too T3/r7/2015-04-15.txt.gz:{chan ch=tech}Xrex Tech: and there's a way to run out of call of heroes? T3/r7/2015-04-15.txt.gz:{chan ch=tech}RangerLyze Tech: anyone know how to bring up the settings on galaxy tab ? T3/r7/2015-04-15.txt.gz:{chan ch=tech}RangerLyze Tech: there should be a bar that rises from the bottom T3/r7/2015-04-15.txt.gz:{chan ch=tech}Sacheverell Tech: On... blowtorch? Or the tablet itself? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: hit the button next to home T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: not back T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: i think T3/r7/2015-04-15.txt.gz:{chan ch=tech}RangerLyze Tech: dont know if im using blowtorch I just got the app for aardwolf so whatever that runs on lol T3/r7/2015-04-15.txt.gz:{chan ch=tech}RangerLyze Tech: I got a bar to rise fro the bottom of screen , (in game) but cant get it back T3/r7/2015-04-15.txt.gz:{chan ch=tech}RangerLyze Tech: swamp is there a cmd ? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: um its been a while since i did it dont use it no more T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: did you try pinching it? T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: or unpinching T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: that works for me T3/r7/2015-04-15.txt.gz:{chan ch=tech}RangerLyze Tech: whats pinchingl T3/r7/2015-04-15.txt.gz:{chan ch=tech}RangerLyze Tech: the annoying part is , iv opened the menu previously by somehow dragging it up from bottom of screen T3/r7/2015-04-15.txt.gz:{chan ch=tech}RangerLyze Tech: now it refuses T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: lol T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: toch screen with thumb and index... while keeping fingers together pinch the screen T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: should shrink T3/r7/2015-04-15.txt.gz:{chan ch=tech}Swamptrash Tech: do opp will grow T3/r7/2015-04-15.txt.gz:{chan ch=tech}RangerLyze Tech: it dosent shrink or expand it just closes whenci dk that lol T3/r7/2015-04-15.txt.gz:{chan ch=tech}RangerLyze Tech: dw ill look online thx anyway T3/r7/2015-04-16.txt.gz:{chan ch=tech}RangerLyze Tech: Sry to beat a dead horse but, anyone know to open the ingame tab for androids/handheld to change settings, triggers etc T3/r7/2015-04-16.txt.gz:{chan ch=tech}Narhtan Tech: on mine you just press the menu button on the phone T3/r7/2015-04-16.txt.gz:{chan ch=tech}RangerLyze Tech: yea mine dosent have that button I think, I got it to raise from botom of screen once ..never again... lol T3/r7/2015-04-16.txt.gz:{chan ch=tech}Narhtan Tech: does anyone know how to use wildcards on android app T3/r7/2015-04-16.txt.gz:{chan ch=tech}RangerLyze Tech: Awesome! I figuree it out somehow , fixed my options .. noe to find out how I did that T3/r7/2015-04-16.txt.gz:{chan ch=tech}Visionaire Tech: sento: what are numeric destinations for variable / execute/ world T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: tech question:) T3/r7/2015-04-16.txt.gz:{chan ch=tech}Swamptrash Tech: tech answer T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: if an employer has a wifi, and you are connected to that wifi on your personal phone, can they see messages you send or content you access? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: or can they just see if you are connected or not T3/r7/2015-04-16.txt.gz:{chan ch=tech}Swamptrash Tech: yes T3/r7/2015-04-16.txt.gz:{chan ch=tech}Visionaire Tech: yes T3/r7/2015-04-16.txt.gz:{chan ch=tech}Vorpal Vorpes Tech: sure T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: yes what? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: they can see your messages? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Vorpal Vorpes Tech: they can see them T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: the actual content? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Vorpal Vorpes Tech: with a little doing yes T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: legally? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Swamptrash Tech: sites everything yes] T3/r7/2015-04-16.txt.gz:{chan ch=tech}Visionaire Tech: messages. probably no, content you access probably yes T3/r7/2015-04-16.txt.gz:{chan ch=tech}Visionaire Tech: legally. since you broadcast that info :P T3/r7/2015-04-16.txt.gz:{chan ch=tech}Swamptrash Tech: yes T3/r7/2015-04-16.txt.gz:{chan ch=tech}Vorpal Vorpes Tech: legally since you are on their network as well T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: ok, so, in this scenario, someone received a picture on google hangouts T3/r7/2015-04-16.txt.gz:{chan ch=tech}Swamptrash Tech: i do same thing at home T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: could they see that picture? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Cizra Tech: Depends on the messages. What kind of messaging are you talking about? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: semi nude:) T3/r7/2015-04-16.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Partly depends on whether google hangouts uses SSL T3/r7/2015-04-16.txt.gz:{chan ch=tech}Cizra Tech: Hangouts? Most likely can't see, unless they've installed custom root certs on your phone. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Cizra Tech: which doesn't sound likely. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: no, personal phone T3/r7/2015-04-16.txt.gz:{chan ch=tech}Elchanan Tech: why just not do personaly crap on your employers wifi T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: well, it wasn't me:) T3/r7/2015-04-16.txt.gz:{chan ch=tech}Swamptrash Tech: right.. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: it was a girl I'm seeing:) T3/r7/2015-04-16.txt.gz:{chan ch=tech}Cizra Tech: SSL MitM attacks depend on installing a custom root cert on the client device. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Cizra Tech: So you SHOULD be good, on an unmolested phone. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Visionaire Tech: main question: who cares as long as its not employers ceo wife? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Elchanan Tech: well tell her not to waste company time/resources or she might possibly get fired T3/r7/2015-04-16.txt.gz:{chan ch=tech}Cizra Tech: But.. http://imgur.com -- paste thy images and our experts will tell if they'll be visible. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: she said IT was coming around looking for a specific wifi signal T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: and she turned off her phone T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: and they said it was gone T3/r7/2015-04-16.txt.gz:{chan ch=tech}Cizra Tech: Yeah, they can see a new client. Perhaps they have a policy of not allowing personal devices there? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Cizra Tech: In that case, they can tell you to bugger off, but not eavesdrop on SSL. Hopefully. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Vorpal Vorpes Tech: SQL question. So i have 75 compliance reports that go out everyday. I want to create a 'master' report that just has all of these listed in it. Columns stay the same. Can anyone point me towards a way to do this? T3/r7/2015-04-16.txt.gz:{chan ch=tech}A macabre Sonet Tech: I read all of this and I can't help but wonder. If you at work and worried about them seeing your naked girlfriend... are you equally worried they will see you mudding and fire you? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: I told you it is not me! :) T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: I work from home:) T3/r7/2015-04-16.txt.gz:{chan ch=tech}Cizra Tech: Vorpes, what's the schema like? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Elchanan Tech: so your worried about her employer seeing naked pics of you then? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Swamptrash Tech: easy fix T3/r7/2015-04-16.txt.gz:{chan ch=tech}Swamptrash Tech: dont send naked pix T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: half naked:) T3/r7/2015-04-16.txt.gz:{chan ch=tech}Swamptrash Tech: dont send junk yu dont want others to see T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: she just called me and freaked out T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: I don't give a crap if anyone sees it T3/r7/2015-04-16.txt.gz:{chan ch=tech}Elchanan Tech: which half ? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Swamptrash Tech: can i see lol T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: top, so not even that dirty T3/r7/2015-04-16.txt.gz:{chan ch=tech}A macabre Sonet Tech: The left half T3/r7/2015-04-16.txt.gz:{chan ch=tech}Chimeishio Tech: the fish half, mermaids are the best T3/r7/2015-04-16.txt.gz:{chan ch=tech}Mahasamatman Tech: i'm a half mermaid T3/r7/2015-04-16.txt.gz:{chan ch=tech}A macabre Sonet Tech: I am half computer chair T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: so in short, you don't think they could see actual messages/content, correct T3/r7/2015-04-16.txt.gz:{chan ch=tech}Elchanan Tech: q i T3/r7/2015-04-16.txt.gz:{chan ch=tech}Tech: Elchanan blushes. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Visionaire Tech: a question: is there way to use alternate cexit routines if one doesnt work on certain circumstances. if cexit route includes same start room and same destination room T3/r7/2015-04-16.txt.gz:{chan ch=tech}Cizra Tech: https://productforums.google.com/forum/#!topic/hangouts/j8UwjFaBsdo says "Yes, all Hangouts connections are secure." T3/r7/2015-04-16.txt.gz:{chan ch=tech}Visionaire Tech: basically if i have 2 cexits from room xxx to room xxx which should be used? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Cizra Tech: so quit worrying, UNLESS they have installed a custom root cert. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Visionaire Tech: by default T3/r7/2015-04-16.txt.gz:{chan ch=tech}Visionaire Tech: andx sm T3/r7/2015-04-16.txt.gz:{chan ch=tech}Visionaire Tech: andx sm T3/r7/2015-04-16.txt.gz:{chan ch=tech}Visionaire Tech: sorry :P T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: thanks Cizra:) T3/r7/2015-04-16.txt.gz:{chan ch=tech}Visionaire Tech: probably can call a script by cexit. hmm. well sometimes talking with oneself helps... T3/r7/2015-04-16.txt.gz:{chan ch=tech}A macabre Sonet Tech: Piffaron, it is likely that her workplace installed those to be able to connect properly to thier network. Many schools and buisnesses do.. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: installed what, Sonet? T3/r7/2015-04-16.txt.gz:{chan ch=tech}A macabre Sonet Tech: When you goto connect to someone's wifi and they ask if you accept their terms and dl a small program from the redirect site, then that means they have full access to all material you send and recieve. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: but you can't access SSL, right? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Nican Tech: -n 10 T3/r7/2015-04-16.txt.gz:{chan ch=tech}Vorpal Vorpes Tech: not with out a cert T3/r7/2015-04-16.txt.gz:{chan ch=tech}Piffaron Tech: cool, all I needed:) T3/r7/2015-04-16.txt.gz:{chan ch=tech}A macabre Sonet Tech: if you dled their file they can access anything sent T3/r7/2015-04-16.txt.gz:{chan ch=tech}Nican Tech: Is there a way to connect to Aardwolf through SSL? Obviously this account's password doesn't really meet the level of super sensitive info, but it'd be nice nonetheless. T3/r7/2015-04-16.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Nope. T3/r7/2015-04-16.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Well - you can connect through encrypted connection at some point - but the final connection to Aard will be plain text... T3/r7/2015-04-16.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: I.e. on phone I use SSH to connect to my home computer, then that connects to Aard. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Nican Tech: Yea, I'm going to be travelling and I'm looking at setting up an EC2 vpn, but I was just curious. T3/r7/2015-04-16.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: well if your concern is someone locally where you are travelling - that will help. T3/r7/2015-04-16.txt.gz:{chan ch=tech}SirCanada Tech: are there any stat scripts for mushclient that show exp stats after a monster instead of after every level? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Arcidayne Tech: Why would you need it when it's always displayed? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Tech: I think he means like an efficiency...exp/second T3/r7/2015-04-16.txt.gz:{chan ch=tech}Arcidayne Tech: You can modify Bast's combat tracker for that,t hen. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Tech: I do that in tf, pretty sure some of the trackers, maybe opo's sharptracker does for mush T3/r7/2015-04-16.txt.gz:{chan ch=tech}Arcidayne Tech: His combat tracker will tell you how fast you killed the mob, so you can just add in a variable saving total exp and then report it at the end. T3/r7/2015-04-16.txt.gz:{chan ch=tech}.... Hwuaijijal Tech: i cant check myself right now. can any android touch thingy use html's standard checkboxes and sliders and whatnot on a web page? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Bishoujo Raded Tech: I'm like 99% sure yes. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Bishoujo Raded Tech: but I use iphone mostly, so T3/r7/2015-04-16.txt.gz:{chan ch=tech}.... Hwuaijijal Tech: hm. ok T3/r7/2015-04-16.txt.gz:{chan ch=tech}Synderella Tech: Is there anyone around that knows LUA? I'm looking for a quick rundown on math. T3/r7/2015-04-16.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Hi I know Lua, but not math. T3/r7/2015-04-16.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: better to ask the question though. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Turie Tech: I r math T3/r7/2015-04-16.txt.gz:{chan ch=tech}Synderella Tech: Awesome guys, thanks. If I have a variable that stores numbers, how could I multiply by that number by percents? Say, 15%, and then set that number to be the new variable? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Tech: what kinda rundown? +, -, * and / are math :P T3/r7/2015-04-16.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: var_num = var_num * .15 T3/r7/2015-04-16.txt.gz:{chan ch=tech}Synderella Tech: Sweet! Thanks guys, I appreciate it. :) T3/r7/2015-04-16.txt.gz:{chan ch=tech}Mannec Tech: i suppose this might be a good time to ask ... does lua care about integer/float types, or does it just use whats appropriate? T3/r7/2015-04-16.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: It only has one point type I believe...floating... T3/r7/2015-04-16.txt.gz:{chan ch=tech}Mannec Tech: 'point type'? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Synderella Tech: I finally have another question as well. What is the ?: for when it comes to scripting? For example, fi(?:ll)? Does that mean it would accept fi, fil, and fill? T3/r7/2015-04-16.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: http://lua-users.org/wiki/NumbersTutorial T3/r7/2015-04-16.txt.gz:{chan ch=tech}Mannec Tech: tl T3/r7/2015-04-16.txt.gz:{chan ch=tech}Mannec Tech: dr T3/r7/2015-04-16.txt.gz:{chan ch=tech}Synderella Tech: The mapper for the AardMUSH bundle doesn't have some areas mapped. Is there a better one publicly available? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Rugrat Rauru Tech: probably not T3/r7/2015-04-16.txt.gz:{chan ch=tech}Dzelgo Tech: I think the idea is that you yourself map the areas. It mapps them as you explore. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Tech: #YOLO Dolt nods at Dzelgo. T3/r7/2015-04-16.txt.gz:{chan ch=tech}#YOLO Dolt Tech: It's not supposed to be a complete map, it's a mapper. It only comes with some newbie areas prepopulated. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Synderella Tech: I didn't know this, thank you very much. Would it be possible to offer three TPs for a backup of a good mapper.db? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Arcidayne Tech: With the amount of rooms in Aardwolf, 3 tp isn't going to be near enough, really. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Rugrat Rauru Tech: Most people have cexits, portals, notes etc. tied to their mapper. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Arcidayne Tech: You have to remember, someone, at some point, had to visit every room in the maps. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Arcidayne Tech: There are over 30k rooms to explore. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Synderella Tech: Hmm. True. What would be a fair price then? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Dzelgo Tech: There's also the fact that players who have 100% explored are not very likely to be selling mapper data. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Tech: Nothings Defines throws back her head and cackles with insane glee! T3/r7/2015-04-16.txt.gz:{chan ch=tech}Nohadon Tech: the consider window plugin crashes upon entering some rooms. anyone knows how to fix it? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Synderella Tech: Where could I find a plugin that features an introduction into the world of tables? A lot of the ones I find seem dreadfully too complicated. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Luxiat Tech: "an introduction into the world of tables?" ? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Synderella Tech: Yeah. I'm looking at plugins to learn teach myself what I can do with LUA. Triggers and such, a little regex here and there. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Leonassan Tech: I read a really great guide to tables. It was pretty flat at first, but by the time I got to the bottom of it, it really stood up on its own. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Tech: Synderella is agreeing with that Leonassan person again... T3/r7/2015-04-16.txt.gz:{chan ch=tech}Tech: Nothings Defines starts slamming her head into a drum repeatedly. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Luxiat Tech: actually, ynd, I was wondering what tables are... T3/r7/2015-04-16.txt.gz:{chan ch=tech}Luxiat Tech: synd* T3/r7/2015-04-16.txt.gz:{chan ch=tech}Synderella Tech: I wish I could give you a decent answer. Without looking it up, I would think they're just really wonderful variables. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Luxiat Tech: Hmm, i'll look it up then, sounds intriguing. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Luxiat Tech: what would the search parameters be? as I'm pretty sure 'tables' alone won't give me what I'm looking for. T3/r7/2015-04-16.txt.gz:{chan ch=tech}Synderella Tech: "LUA - introduction to tables"? T3/r7/2015-04-16.txt.gz:{chan ch=tech}Tech: Nothings Defines points excitedly at Synderella! T3/r7/2015-04-16.txt.gz:{chan ch=tech}Tech: Synderella blinks innocently. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Cizra Tech: Why is that "compare portal all containers" also compares held items? :-( I thought I'd discovered a convenient way to enumerate all my portals. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: hmm T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: os i added cexit via sql. long one. how to make it show on cexits in mush w/o running it manually first? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Cizra Tech: Try restarting the mapper plugin? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Tech: Visionaire goes, "Hmmmm." T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: it wiped it. ohwell. had to backup :P T3/r7/2015-04-17.txt.gz:{chan ch=tech}Rugrat Rauru Tech: i alias my long cexits in a plugin. easier to manage/edit if need be. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: well im still losing myself in synthax sometimes. hmm. it shoud do a few mapper goto's cleared by a few waits. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: hmm will try to send to execute and see what happends :P T3/r7/2015-04-17.txt.gz:{chan ch=tech}Cizra Tech: Is there a way to make mapper portal indices stable? Or make mapper portallevel take keywords, not indices? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Rugrat Rauru Tech: don't think so T3/r7/2015-04-17.txt.gz:{chan ch=tech}Cizra Tech: I guess I'll have to write a plugin for that then. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Rugrat Rauru Tech: how often are you changing portal's levels T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: what was number to send to execute? :P T3/r7/2015-04-17.txt.gz:{chan ch=tech}Cizra Tech: Rauru, I'd like to turn off my non-golden chaos portals on demand. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: Cizra: alias xxx mapper fullportal xxx, mapper fullportal xxx, mapper fullportal xxx, alias yyy, mapper delete portal xxx, mapper delete portal xxx ? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Rugrat Rauru Tech: yeah youll have to do that custom T3/r7/2015-04-17.txt.gz:{chan ch=tech}Cizra Tech: Visionaire, that won't work as mapper delete takes indices, not names T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: so put an alias that removes all your nongoldens when hit, and another that adds em back T3/r7/2015-04-17.txt.gz:{chan ch=tech}Rugrat Rauru Tech: maybe ask fiendish to add it T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: it takes names T3/r7/2015-04-17.txt.gz:{chan ch=tech}A macabre Sonet Tech: Cizra if you want a portal to be able to be turned off use mapper cexit /// then put all of your logic in there T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: mapper delete poral alias works T3/r7/2015-04-17.txt.gz:{chan ch=tech}Thunderax Tech: make an excel list of ur portals then generate strings u can put into aliases T3/r7/2015-04-17.txt.gz:{chan ch=tech}Cizra Tech: Sonet, cexits won't work as they work FROM a given room. I want portals to be usable anywhere. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Cizra Tech: Thunderax, that won't work for long if indices are not stable. Unless I sort 'em manually first. T3/r7/2015-04-17.txt.gz:{chan ch=tech}A macabre Sonet Tech: sorry not ncexits put it in your mapper portals, no coffee yet, making me not be able to brain this morning T3/r7/2015-04-17.txt.gz:{chan ch=tech}Cizra Tech: BUT Visionaire seems to be right T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: ive got a running example : alias gqin {mapper delete portal pobaz1, ......} alias gqout {mapper fullportal pobaz1 34557 0.....} T3/r7/2015-04-17.txt.gz:{chan ch=tech}Gorsk Tech: you can do that...? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: why else anyone want non-goldens? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Cizra Tech: Thanks, that helps a lot! T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: woo hoo for 4 lines cexit :P T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: thanks all, see you soon ) T3/r7/2015-04-17.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Which area? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Cizra Tech: Knossos, I bet? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: hehe T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: actually was over-cautious. removed a bit from there :P T3/r7/2015-04-17.txt.gz:{chan ch=tech}A macabre Sonet Tech: Man, this is crappy. I use clear 4gwifi/max cellular internet in home. Sprint is buying them and they are shutting my service down. I called them and they forwarded me to sprint and they told me its more expensive and can only do 30GB a month, where I was unlimited before. T3/r7/2015-04-17.txt.gz:{chan ch=tech}A macabre Sonet Tech: It was costing me 55 a month, now I have to go back to one of the big names for double that a month :( T3/r7/2015-04-17.txt.gz:{chan ch=tech}Hyggs Lambo Tech: is it possible to change the picture of the back of mush(the fox) to another picture?? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Tech: Visionaire buries his face in his hand and sighs, shaking his head. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: the fox T3/r7/2015-04-17.txt.gz:{chan ch=tech}Vorpal Vorpes Tech: yes aardfox T3/r7/2015-04-17.txt.gz:{chan ch=tech}Hyggs Lambo Tech: wait this isnt aardfox?? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Hyggs Lambo Tech: dam logged onto the wrong mud for the third time T3/r7/2015-04-17.txt.gz:{chan ch=tech}Hyggs Lambo Tech: anyway , regardless is there a way to change the wolf ? to one of my own imagines ?? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: well somehow they got him into. means should be a way, yes :P idk sorry T3/r7/2015-04-17.txt.gz:{chan ch=tech}Thunderous Norton Tech: the background is referenced in aardwolf_layout plugin file T3/r7/2015-04-17.txt.gz:{chan ch=tech}Thunderous Norton Tech: just change it. but, every time you update, it'll reappear T3/r7/2015-04-17.txt.gz:{chan ch=tech}Visionaire Tech: damn i never notice it. now that you ve mentioned it i cant see text, only wolf. damn you! ) T3/r7/2015-04-17.txt.gz:{chan ch=tech}Sweetest Keliandra Tech: I would think that since this client was designed for Aardwolf, that the background logo is intended to remain T3/r7/2015-04-17.txt.gz:{chan ch=tech}A macabre Sonet Tech: you can switch the .png file to another with same dimensions and name and the client wouldn't know the difference... but it would be the new image T3/r7/2015-04-17.txt.gz:{chan ch=tech}A macabre Sonet Tech: aardbg13.png T3/r7/2015-04-17.txt.gz:{chan ch=tech}A macabre Sonet Tech: in your worlds/plugins/images folder T3/r7/2015-04-17.txt.gz:{chan ch=tech}Hyggs Lambo Tech: so if put the new image with the same name in the old ones place it should work ??? once the wolf is moved right T3/r7/2015-04-17.txt.gz:{chan ch=tech}A macabre Sonet Tech: Won't know until you try it :p T3/r7/2015-04-17.txt.gz:{chan ch=tech}A macabre Sonet Tech: also I don't advise doing it while the client is running T3/r7/2015-04-17.txt.gz:{chan ch=tech}Swamptrash Tech: aww that would of ben epic T3/r7/2015-04-17.txt.gz:{chan ch=tech}Synderella Tech: Can someone explain what ?: does for matching? For example, does fi(?:ll) match fi, fil, and fill? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: No. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Bishoujo Raded Tech: you'd want fi(l(l)?)?) T3/r7/2015-04-17.txt.gz:{chan ch=tech}Gorsk Tech: it makes the field a non-capturing one T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: (?:) is to allow for different options: fi(?:re|ll|st), etc. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Gorsk Tech: no T3/r7/2015-04-17.txt.gz:{chan ch=tech}Bishoujo Raded Tech: er, (fi(l(l)?)?)) is what'd I'd do, but I suck. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Gorsk Tech: it makes the field non-capturing so you can't reference it with %1 or whatever it is T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: If you're looking to match fi, fil, and fill, you can do: fil?l? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Synderella Tech: Okay, I understand. Thanks guys. I'm looking into recording some data, how would I be able to match the string "Current bid on this item is (/d) gold (no bid yet|player_name)."? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Synderella Tech: Or maybe (.+) and use if statements to trigger once "no bid yet" or the player's name is matched? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Synderella Tech: Can someone assist me in creating a table for my directions? I am having trouble understanding the lua-users.org wiki. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: if you could be more specific, possibly. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: Tables are simple, to be honest. You have either indexed tables, or dictionary tables. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: Index tables are the ones that use the index (1, 2, 3, 4, 5...) as its key, so table[1] returns index 1, etc. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: Dictionary tables use named keys, like keyone, keytwo, keythree, so that table["keyone"] returns the value for keyone. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Synderella Tech: This will be for directions, but I want it to be the opposite direction. I want my cexit alias do close doors as well. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: The easiest way to create an indexed table is: table = {"value1", "value2", "value3", "value4"}. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: Ah, for opposites, you can do: directions = { n = "s", e = "w", s = "n", w = "e", u = "d", d = "u"} T3/r7/2015-04-17.txt.gz:{chan ch=tech}Synderella Tech: dir_table = {n = "s", e = "w", [etc]}? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: Then you can execute the opposite direction by calling: directions[""], so say you wanted the opposite for south, you'd do: directions["s"], which would return "n" T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: Yes. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Cizra Tech: ... Or you can filch the same code from the mapper plugin. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: Keep in mind that only takes into account single letter directions. If you're used to typing "no" or "nor" or "nort" or "north", then you'll need to base your tables off that. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Synderella Tech: Would I need to use an IF statement for calling it? They will be single letter directions. :) T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: Why would you need to use an if statement? T3/r7/2015-04-17.txt.gz:{chan ch=tech}Synderella Tech: Nevermind, yeah, I realized that was silly. Sorry. :P T3/r7/2015-04-17.txt.gz:{chan ch=tech}Tech: Arcidayne chuckles politely. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Synderella Tech: What's the best way to go about pulling information from auction items? I can't find any plugins that do anything with bids and auctions, otherwise I'd take a peek at them. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: Using a trigger. :p T3/r7/2015-04-17.txt.gz:{chan ch=tech}Mr. Robbo Tech: Got a friend trying to play on a tablet (aard blowtorch)... he's got an issue where he's not able to see what he types until he completes a word. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Mr. Robbo Tech: I know I've seen it before, but can't recall what I've done to fix it. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Mr. Robbo Tech: Suggestions? T3/r7/2015-04-17.txt.gz:{chan ch=tech}RangerLyze Tech: I dont think theirs a fix T3/r7/2015-04-17.txt.gz:{chan ch=tech}Mr. Dash Tech: i think there is T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: Dude, your name has "lies" in it. I don't believe you, RangerLyze. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Mr. Dash Tech: let me check the settings really quick T3/r7/2015-04-17.txt.gz:{chan ch=tech}Tech: try local echo in the service section of options page T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: I don't think that's what it is. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: I think he's talking about when he types a word, he can't see it until he presses space. T3/r7/2015-04-17.txt.gz:{chan ch=tech}RangerLyze Tech: um no, its a common complaint of the blowtorch client T3/r7/2015-04-17.txt.gz:{chan ch=tech}Tech: Mr. Robbo nods at Arcidayne. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Mr. Dash Tech: go to options menu, input, then check 'enable compatibility mode' T3/r7/2015-04-17.txt.gz:{chan ch=tech}Sacheverell Tech: ^ T3/r7/2015-04-17.txt.gz:{chan ch=tech}Mr. Dash Tech: pretty sure that fixes the word problem T3/r7/2015-04-17.txt.gz:{chan ch=tech}Tech: Arcidayne nods at Mr. Dash. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: See, Lyze? Lies!!! Dash knew how to fix it. *blink* T3/r7/2015-04-17.txt.gz:{chan ch=tech}Mr. Dash Tech: does other things, but i think i had the same problem and that solved it T3/r7/2015-04-17.txt.gz:{chan ch=tech}Tech: Arcidayne tickles RangerLyze. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Mr. Robbo Tech: Thanks, I'll have him try that. T3/r7/2015-04-17.txt.gz:{chan ch=tech}Tech: hmm, it says that's just for backspace, interesting if it helps with words T3/r7/2015-04-17.txt.gz:{chan ch=tech}RangerLyze Tech: he didint say it works yet T3/r7/2015-04-17.txt.gz:{chan ch=tech}RangerLyze Tech: hold ur tongue u vile creature T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: NEVER! T3/r7/2015-04-17.txt.gz:{chan ch=tech}Tech: Arcidayne throws back his head and cackles with insane glee! T3/r7/2015-04-17.txt.gz:{chan ch=tech}RangerLyze Tech: lol T3/r7/2015-04-17.txt.gz:{chan ch=tech}Arcidayne Tech: You hold your LIES! T3/r7/2015-04-18.txt.gz:{chan ch=tech}RangerLyze Tech: ugh * crawls back into the aylor sewers* T3/r7/2015-04-18.txt.gz:{chan ch=tech}Tech: Arcidayne snickers softly. T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: anyone know where the default background colour is for colournote. I am seeing most plugins use "" so assuming tha means default, as it's not setting one T3/r7/2015-04-18.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: black? T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: it's showing up as some type of blue, so green isn't readable T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: black is the normal background, but not the one for the colournote T3/r7/2015-04-18.txt.gz:{chan ch=tech}Arcidayne Tech: It's default for me. T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: is blue default for you? T3/r7/2015-04-18.txt.gz:{chan ch=tech}Arcidayne Tech: No, black is default for me. T3/r7/2015-04-18.txt.gz:{chan ch=tech}Arcidayne Tech: Maybe it's something in one of your settings? T3/r7/2015-04-18.txt.gz:{chan ch=tech}Arcidayne Tech: Do you maybe have "black" custom changed to blue? T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: ya, just not sure, black is the background for all text, not sure if I messd something up T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: could have screwed that up ya T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: will check htanks T3/r7/2015-04-18.txt.gz:{chan ch=tech}Arcidayne Tech: Go to Game -> Configure -> ANSI Color, check that black is black, not blue. T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: ty T3/r7/2015-04-18.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: I reset all ansi colours T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: but black appeared black T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: still T3/r7/2015-04-18.txt.gz:{chan ch=tech}Arcidayne Tech: Hmm. T3/r7/2015-04-18.txt.gz:{chan ch=tech}Arcidayne Tech: Oo, maybe check the ColourNote.lua file, make sure it defaults to black there? T3/r7/2015-04-18.txt.gz:{chan ch=tech}Arcidayne Tech: Or whatever the file is that has colournote. T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: ya, was looking for the colournote plugin, but don't see one, I'll search for one T3/r7/2015-04-18.txt.gz:{chan ch=tech}Arcidayne Tech: It's ColourNote.xml T3/r7/2015-04-18.txt.gz:{chan ch=tech}Arcidayne Tech: What do you get when you type \\\print(GetNoteColourBack()) T3/r7/2015-04-18.txt.gz:{chan ch=tech}Arcidayne Tech: ? T3/r7/2015-04-18.txt.gz:{chan ch=tech}Tech: Arcidayne found your answer. :p T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: sorry, was reading, but yes, that works, not sure where I goofed that up T3/r7/2015-04-18.txt.gz:{chan ch=tech}Tech: Arcidayne snickers softly. T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: not seeing anything when typing \\\print(GetNoteColourBack()) T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: but the set command fixed my bigges isue T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: biggest issue besides typing T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: now to try to figure out a trigger regex for the output of eqlu type=20 so I can auto create mapper portals for portals T3/r7/2015-04-18.txt.gz:{chan ch=tech}Bytor Tech: so just tried to do plugin wizard, left remove aliases checked, not knowing that was for existing aliases, now all in the new plugin that doesn't do anything heh T3/r7/2015-04-19.txt.gz:{chan ch=tech}Jedhi Tech: lol@appname https://github.com/nvbn/thefuck T3/r7/2015-04-19.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: classy T3/r7/2015-04-19.txt.gz:{chan ch=tech}Evil Imm Rumour Tech: is a non curse channel T3/r7/2015-04-19.txt.gz:{chan ch=tech}Jedhi Tech: yeah, sorry about that. pasted before i realized it T3/r7/2015-04-19.txt.gz:{chan ch=tech}Tech: Evil Imm Rumour goes, "Hmmmm." T3/r7/2015-04-19.txt.gz:{chan ch=tech}Jedhi Tech: but you have admit, it is cool, 3k+ stars on github T3/r7/2015-04-19.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: seems a shame to MIT licence such a thing. I would have used the WTFPL (obviously do not google that if you don't like the F-bomb) T3/r7/2015-04-19.txt.gz:{chan ch=tech}Jedhi Tech: or http://www.dbad-license.org/ T3/r7/2015-04-19.txt.gz:{chan ch=tech}Tech: Lackluster Lachdanan crosses his arms and nods slowly and sagely to Jedhi. T3/r7/2015-04-19.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: but that's so restrictive :D T3/r7/2015-04-19.txt.gz:{chan ch=tech}Jedhi Tech: better than gpl3 T3/r7/2015-04-19.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: gpl is intentionally restrictive T3/r7/2015-04-19.txt.gz:{chan ch=tech}Jedhi Tech: ver 2 and 3 are not compara ble T3/r7/2015-04-19.txt.gz:{chan ch=tech}Tigernuts Tech: what's different? T3/r7/2015-04-19.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: sure they are T3/r7/2015-04-19.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: v3 is more restrictive :D T3/r7/2015-04-19.txt.gz:{chan ch=tech}Tigernuts Tech: how so? T3/r7/2015-04-19.txt.gz:{chan ch=tech}Jedhi Tech: google gpl2 vs gpl3... lot of articles T3/r7/2015-04-19.txt.gz:{chan ch=tech}A macabre Sonet Tech: well this is strange, while trying to move files to a flashdrive windows 7 is telling me it can't copy some properties and it won't copy the file T3/r7/2015-04-19.txt.gz:{chan ch=tech}Zexe Tech: how do you change the background image in mush client? T3/r7/2015-04-19.txt.gz:{chan ch=tech}Daddius Tech: blasphemy T3/r7/2015-04-19.txt.gz:{chan ch=tech}Tech: abelinc.me/aardclientfaq T3/r7/2015-04-19.txt.gz:{chan ch=tech}Tech: Zexe thanks you heartily. T3/r7/2015-04-19.txt.gz:{chan ch=tech}Bardis Tech: how do I make a new line after a hyperlink in mushclient T3/r7/2015-04-19.txt.gz:{chan ch=tech}Thaed Tech: hey, i've got a problem T3/r7/2015-04-19.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: ok T3/r7/2015-04-19.txt.gz:{chan ch=tech}Draeand Tech: How do I make the score command and other commands not use ASCII colors? T3/r7/2015-04-19.txt.gz:{chan ch=tech}Thaed Tech: i cant seem to place my own buttons anywhere T3/r7/2015-04-19.txt.gz:{chan ch=tech}Draeand Tech: Like, just print out in normal text and not use any special characters? T3/r7/2015-04-19.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Type color will turn all color off. T3/r7/2015-04-19.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: You can't as far as I know, why is it an issue? T3/r7/2015-04-19.txt.gz:{chan ch=tech}Thaed Tech: im playing on the android variant T3/r7/2015-04-19.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Find another client I'd say - I've used all sorts of clients, including very basic telnet - and I've never had any issues with standard ASCII chars... T3/r7/2015-04-19.txt.gz:{chan ch=tech}Draeand Tech: Colors are off. T3/r7/2015-04-19.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: There is an aardwolf client for Android I believ.e T3/r7/2015-04-19.txt.gz:{chan ch=tech}Thaed Tech: find a new client? T3/r7/2015-04-19.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: That advice was more towards Draeand... T3/r7/2015-04-19.txt.gz:{chan ch=tech}Thaed Tech: oh,sorry T3/r7/2015-04-19.txt.gz:{chan ch=tech}Arcidayne Tech: Why? T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: Thaed: long-press T3/r7/2015-04-19.txt.gz:{chan ch=tech}Thaed Tech: some of the buttons are unresponsive T3/r7/2015-04-19.txt.gz:{chan ch=tech}Arcidayne Tech: Hey, Fiendish, any chance you could add "mapper favorites" or "mapper bookmarks" in a future update? I'm using a basic code to bookmark rooms I want to easily go to, but figure it'd be something you could add to MUSH, too. T3/r7/2015-04-19.txt.gz:{chan ch=tech}Draeand Tech: How does the game monitor the forum like that? T3/r7/2015-04-19.txt.gz:{chan ch=tech}Daddius Tech: I was just starting to write a plugin for favorite rooms as well T3/r7/2015-04-19.txt.gz:{chan ch=tech}Tech: The Jerk Fiendish sits down and thinks deeply. T3/r7/2015-04-19.txt.gz:{chan ch=tech}Arcidayne Tech: I have a basic for it, but it doesn't do anything other than store bookmarks in a table, which I call up with 'mark list', and then I type 'mark go #', where # is the index of the bookmark. T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: what happens when you have 100 bookmarks? T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: or do you not plan to go that high? T3/r7/2015-04-19.txt.gz:{chan ch=tech}Daddius Tech: i was thinking exact same thing, with an alias to mapper goto # T3/r7/2015-04-19.txt.gz:{chan ch=tech}Arcidayne Tech: For instance, mark list -> 1: Above the Cube (31912) --> mark go 1 --> executes mapper goto 31912 T3/r7/2015-04-19.txt.gz:{chan ch=tech}Arcidayne Tech: Could add in a search functionality, too. T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I have a search functionality T3/r7/2015-04-19.txt.gz:{chan ch=tech}Arcidayne Tech: I mean for bookmarks, like "mapper bookmark search " T3/r7/2015-04-19.txt.gz:{chan ch=tech}Arcidayne Tech: Or mapper bookmark search T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: hmm T3/r7/2015-04-19.txt.gz:{chan ch=tech}Daddius Tech: the search could look for any keyword, as long as its in the room name, area, or notes about the bookmark/favorite T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: and you want this distinct from room notes? T3/r7/2015-04-19.txt.gz:{chan ch=tech}Arcidayne Tech: Room notes, I use specifically for things like, "Key is on this mob" T3/r7/2015-04-19.txt.gz:{chan ch=tech}Tech: The Jerk Fiendish nods. T3/r7/2015-04-19.txt.gz:{chan ch=tech}Arcidayne Tech: Or other helpful bits of information. T3/r7/2015-04-19.txt.gz:{chan ch=tech}Arcidayne Tech: (Like which type of golem is in which room in DunDoom) T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: isn't this what xrunto does? T3/r7/2015-04-19.txt.gz:{chan ch=tech}Arcidayne Tech: No, at most, it sets whatever room you want to be "first" in that area. T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: hmm T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: maybe. in the meantime, don't wait for me to do it if you're already making a plugin. make it and share T3/r7/2015-04-19.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-19.txt.gz:{chan ch=tech}Arcidayne Tech: Just figured it might be better to incorporate it into the mapper itself. T3/r7/2015-04-19.txt.gz:{chan ch=tech}Arcidayne Tech: Once I've prettied up the code, I'm going to release it. T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: hmm..unclear T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: all you're doing is keeping a list of favorite IDs and then issuing a goto command. you don't really need to be inside the plugin for that T3/r7/2015-04-19.txt.gz:{chan ch=tech}Arcidayne Tech: Eh, I just mean that right now, the output could use some reformatting. It's something I just threw together in a matter of minutes. T3/r7/2015-04-19.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-19.txt.gz:{chan ch=tech}Kerno Tech: what would you recoget seekers100mana satchel T3/r7/2015-04-19.txt.gz:{chan ch=tech}Kerno Tech: what sorry... would you recommend as android client for aard? T3/r7/2015-04-19.txt.gz:{chan ch=tech}Daddius Tech: blowtorch is usable T3/r7/2015-04-19.txt.gz:{chan ch=tech}Daddius Tech: ideally, use VNC with a remote machine T3/r7/2015-04-19.txt.gz:{chan ch=tech}Nuanse Tech: https://play.google.com/store/apps/details?id=com.happygoatstudios.aardwolf that works T3/r7/2015-04-19.txt.gz:{chan ch=tech}Kerno Tech: yes, but vnc has it's own faults (bandwidth) T3/r7/2015-04-19.txt.gz:{chan ch=tech}Kerno Tech: thanks for all clues. i'll give these a try T3/r7/2015-04-19.txt.gz:{chan ch=tech}Keldevar Tech: Hmmm, my mapper notes are color bleeding into room descriptions now. T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: room descriptions may not start with T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: @w T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I think I noticed that recently with gmcp debugging enabled T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I'll add @w to the end of note output T3/r7/2015-04-19.txt.gz:{chan ch=tech}Keldevar Tech: Awesome. Thanks Fiendish. T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: anyone know when this color bleeding thing started happening? T3/r7/2015-04-19.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: With the reboot I'd assume, didn't Lash change the order of room descriptions and GMCP? T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: interesting T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: that would mean that GMCP affects color resets though T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: which I wouldn't have guessed T3/r7/2015-04-19.txt.gz:{chan ch=tech}Mr. Robbo Tech: I haven't noticed any bleeding... T3/r7/2015-04-19.txt.gz:{chan ch=tech}Gorsk Tech: my mapper notes bleed into the first line of the room desc T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: only since the reboot? T3/r7/2015-04-19.txt.gz:{chan ch=tech}Tech: Gorsk nods. T3/r7/2015-04-19.txt.gz:{chan ch=tech}Mr. Robbo Tech: Ah, I wouldn't know about that, being a CMUD user. T3/r7/2015-04-19.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: I'd guess it has to do with the data coming together at the same time as a Note...I've noticed it from time to time myself with other stuff - but enver been able to isolate it well enough to post a bug.... T3/r7/2015-04-19.txt.gz:{chan ch=tech}Gorsk Tech: cause they used to come after the desc, and now they come before. might have to add color codes to the ends of all my mapper notes, i guess... T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: adding color codes to your notes won't work T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: the note printer doesn't interpret codes T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I suppose I could add that too though T3/r7/2015-04-19.txt.gz:{chan ch=tech}Daddius Tech: odd, I changed it to colournote and it still does 1st line of room in blue T3/r7/2015-04-19.txt.gz:{chan ch=tech}Mique Tech: gremlins T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: ColourNote (RGBColourToName(GetNoteColourFore()), RGBColourToName(GetNoteColourBack()), "*** MAPPER NOTE *** -> "..room.notes, RGBColourToName(GetNormalColour(8)), RGBColourToName(GetNoteColourBack()), "") will do it T3/r7/2015-04-19.txt.gz:{chan ch=tech}Daddius Tech: excellent, thanks T3/r7/2015-04-19.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: the next release will also allow color codes in mapper notes T3/r7/2015-04-19.txt.gz:{chan ch=tech}Keldevar Tech: -20 T3/r7/2015-04-19.txt.gz:{chan ch=tech}Rixxa Tech: nummy T3/r7/2015-04-19.txt.gz:{chan ch=tech}Keldevar Tech: typo sorry T3/r7/2015-04-19.txt.gz:{chan ch=tech}Groox Tech: print("Hello, Tech World!") T3/r7/2015-04-19.txt.gz:{chan ch=tech}Glosso Tech: Howdy, again. T3/r7/2015-04-19.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Compile error: Expected ';' in line 1 T3/r7/2015-04-19.txt.gz:{chan ch=tech}Groox Tech: Eeeeep!@w T3/r7/2015-04-19.txt.gz:{chan ch=tech}Groox Tech: Query. Wondering if I could have anothert window in the aardwolf client ((which ROX) that would allow me to review printlogs of the help files? T3/r7/2015-04-19.txt.gz:{chan ch=tech}Hoid Tech: did you mean something like bast's miniwin help? T3/r7/2015-04-19.txt.gz:{chan ch=tech}Groox Tech: -10 T3/r7/2015-04-19.txt.gz:{chan ch=tech}Groox Tech: dunno what that is, but sounds maybe like what I seek, it a dongle plugin thing? T3/r7/2015-04-19.txt.gz:{chan ch=tech}Hoid Tech: google bastmush, it is a pack of miniwin plugins T3/r7/2015-04-19.txt.gz:{chan ch=tech}Ozu Tech: or you can "finger bast" to get the url T3/r7/2015-04-19.txt.gz:{chan ch=tech}Groox Tech: https://github.com/endavis T3/r7/2015-04-19.txt.gz:{chan ch=tech}Groox Tech: fingered alreeady, love thast command, lol T3/r7/2015-04-19.txt.gz:{chan ch=tech}Synderella Tech: How does Bast's area_db and area_db_lookup work? Is it just a different mapper? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Ice Ice Kilfer Tech: Anyone know where I can find a plugin that shows me how many kills/pups I get while dbl is running? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Daddius Tech: bast statmon does show bonus exp T3/r7/2015-04-20.txt.gz:{chan ch=tech}Ice Ice Kilfer Tech: I am meaning it gives me a report of what I killed while dbl was running right after dbl ends T3/r7/2015-04-20.txt.gz:{chan ch=tech}Daddius Tech: sounds like a good idea for a plugin, can utilize bast database for it and trigger off of bonus exp expired T3/r7/2015-04-20.txt.gz:{chan ch=tech}Daddius Tech: are you using bast statmon already? T3/r7/2015-04-20.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: sharptracker does that iirc T3/r7/2015-04-20.txt.gz:{chan ch=tech}Ice Ice Kilfer Tech: I am not familiar with plugins after I found and installed a sharptracker I got Line 7066: Tag not used:
() and it doesn't work I keep getting runtime errors any ideas on how to fix this? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Daddius Tech: haven't tried it - which site did you download it from? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Ice Ice Kilfer Tech: I got it lined out sorry T3/r7/2015-04-20.txt.gz:{chan ch=tech}DoubleShot Veata Tech: What is the command to reset windows in Mush? T3/r7/2015-04-20.txt.gz:{chan ch=tech}#YOLO Dolt Tech: I think 'resetaard' T3/r7/2015-04-20.txt.gz:{chan ch=tech}Tsunwu Tech: Hi everyone. For some reason, I cannot resize my main window in MushClient (where combat information flies through, etc). I just input resetaard and it reset all my other windows (mini-map, etc), but not the main window which currently fills my whole screen. Anyone know whats up with this? Thanks. T3/r7/2015-04-20.txt.gz:{chan ch=tech}Synderella Tech: Does anyone use Bast's EQ_DB? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Verminar Tech: i update mush client and forget save map db. where can i find backup for this? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Arcidayne Tech: In the backups file. T3/r7/2015-04-20.txt.gz:{chan ch=tech}Arcidayne Tech: folder, rather. T3/r7/2015-04-20.txt.gz:{chan ch=tech}Verminar Tech: i must delet *.db and rename backup files from forders and then copy renemed db file back? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Arcidayne Tech: you chould just copy over, as long as it's named Aardwolf.db T3/r7/2015-04-20.txt.gz:{chan ch=tech}Verminar Tech: ty T3/r7/2015-04-20.txt.gz:{chan ch=tech}Verminar Tech: it work! ty ) T3/r7/2015-04-20.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-20.txt.gz:{chan ch=tech}Glorph Tech: nooooo T3/r7/2015-04-20.txt.gz:{chan ch=tech}Glorph Tech: i tried to update the client and it overwrote everything T3/r7/2015-04-20.txt.gz:{chan ch=tech}Glorph Tech: lost all my mapper info T3/r7/2015-04-20.txt.gz:{chan ch=tech}#YOLO Dolt Tech: get your old Aardwolf.db, there should also be copies of it in the backup folder T3/r7/2015-04-20.txt.gz:{chan ch=tech}Glorph Tech: oh thank god T3/r7/2015-04-20.txt.gz:{chan ch=tech}Glorph Tech: brb T3/r7/2015-04-20.txt.gz:{chan ch=tech}Glorph Tech: I don't think it's working T3/r7/2015-04-20.txt.gz:{chan ch=tech}Glorph Tech: oh it did work T3/r7/2015-04-20.txt.gz:{chan ch=tech}Glorph Tech: thank goodness! T3/r7/2015-04-20.txt.gz:{chan ch=tech}Tech: #YOLO Dolt holds her thumb up at nothing in particular. T3/r7/2015-04-20.txt.gz:{chan ch=tech}Glorph Tech: lost my triggers and aliases though, but thats not nearly as bad as losing the mapper db T3/r7/2015-04-20.txt.gz:{chan ch=tech}#YOLO Dolt Tech: next time there's an article on how to upgrade, with instructions on what to back up/export etc T3/r7/2015-04-20.txt.gz:{chan ch=tech}Glorph Tech: i love dropbox T3/r7/2015-04-20.txt.gz:{chan ch=tech}Glorph Tech: it let me restore my aardwolf.mcl file T3/r7/2015-04-20.txt.gz:{chan ch=tech}Tech: Lackluster Lachdanan crosses his arms and nods slowly and sagely to Glorph. T3/r7/2015-04-20.txt.gz:{chan ch=tech}A macabre Sonet Tech: Anyone have any ideas for a new shiny raspberry pi 2? I have a b+ running a file server and one for a media server. I am looking for a new side project T3/r7/2015-04-20.txt.gz:{chan ch=tech}Swamptrash Tech: how do i reset the window layout on the aard much? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Gorsk Tech: resetaard T3/r7/2015-04-20.txt.gz:{chan ch=tech}Swamptrash Tech: thanks T3/r7/2015-04-20.txt.gz:{chan ch=tech}Swamptrash Tech: damn gui how do i reset this T3/r7/2015-04-20.txt.gz:{chan ch=tech}Nican Tech: xset reset gui T3/r7/2015-04-20.txt.gz:{chan ch=tech}Swamptrash Tech: thanks T3/r7/2015-04-20.txt.gz:{chan ch=tech}A macabre Sonet Tech: I am really suprised that no one had any ideas for the pi project T3/r7/2015-04-20.txt.gz:{chan ch=tech}Bishoujo Raded Tech: key lime? T3/r7/2015-04-20.txt.gz:{chan ch=tech}A macabre Sonet Tech: raspberry, lol T3/r7/2015-04-20.txt.gz:{chan ch=tech}Byzandula Tech: coconut cream? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Sweetest Keliandra Tech: apricot T3/r7/2015-04-20.txt.gz:{chan ch=tech}A macabre Sonet Tech: yeah should have guessed at a response like this T3/r7/2015-04-20.txt.gz:{chan ch=tech}Arcidayne Tech: Sonet: google this: site:lifehacker.com "raspberry pi" T3/r7/2015-04-20.txt.gz:{chan ch=tech} Forestseer Tech: Sonet - build a hand-held emulator T3/r7/2015-04-20.txt.gz:{chan ch=tech} Forestseer Tech: easy to get TFT screens and batteries T3/r7/2015-04-20.txt.gz:{chan ch=tech} Forestseer Tech: trickier to get the screen to play nice with all the eulators T3/r7/2015-04-20.txt.gz:{chan ch=tech} Forestseer Tech: but it is possible :) T3/r7/2015-04-20.txt.gz:{chan ch=tech}A macabre Sonet Tech: I was thinking that, but I already build a mame arcade out of an old laptop, I don't really need a hand held emulator T3/r7/2015-04-20.txt.gz:{chan ch=tech}A macabre Sonet Tech: I had already built* T3/r7/2015-04-20.txt.gz:{chan ch=tech} Forestseer Tech: yeah, but did you wrestle with a TFT to get it going :P T3/r7/2015-04-20.txt.gz:{chan ch=tech} Forestseer Tech: that's half the fun! T3/r7/2015-04-20.txt.gz:{chan ch=tech}Synderella Tech: Can someone please help me fix this? I am trying to install Bast's EQ DB and the EQ DB lookup plugins, and they both give me this error: Line 32: Attribute name 'data-pjax-transient' not followed by '=' (Cannot load). T3/r7/2015-04-20.txt.gz:{chan ch=tech}Quadrapus Tech: Quick question: anyone know how to make a button that I can attach to the taskbar in Windows 8 that will shrink/expand the taskbar? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Arcidayne Tech: What do you mean "shrink/expand"? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Quadrapus Tech: You know if you go into the taskbar properties, you can make the taskbar small or large? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Quadrapus Tech: I want a button to do that with one click T3/r7/2015-04-20.txt.gz:{chan ch=tech}Arcidayne Tech: Oh, you mean using small icons vs regular icons? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Glorph Tech: is there a good plugin that notifies me of my quest timer. I tried setting up a trigger to play a sound, but it just doesn't catch my attention enough T3/r7/2015-04-20.txt.gz:{chan ch=tech}Hoid Tech: i use bast's miniwin quest plugin T3/r7/2015-04-20.txt.gz:{chan ch=tech}Arcidayne Tech: Glorph: Set the trigger to display text for you. You can do something like: Note("+-----------------------------+\n| |\n| QUEST TIME!!!! |\n+-------------------------------------------+")... or something similar. T3/r7/2015-04-20.txt.gz:{chan ch=tech}Arcidayne Tech: Note that it's not to scale. T3/r7/2015-04-20.txt.gz:{chan ch=tech}Sithium Tech: How would I go about finding out where my plugin databases are stored? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Arcidayne Tech: They're stored in the state folder. T3/r7/2015-04-20.txt.gz:{chan ch=tech}Daddius Tech: open the plugin, look for ".db" ? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Arcidayne Tech: The names are corresponding to each plugin's ID. T3/r7/2015-04-20.txt.gz:{chan ch=tech}Daddius Tech: well bast uses the Log folder for statmon T3/r7/2015-04-20.txt.gz:{chan ch=tech}Tech: Arcidayne nods at Daddius. T3/r7/2015-04-20.txt.gz:{chan ch=tech}Sithium Tech: okay and if I wanted to save those I would just copy and paste em in a new folder (sorry extremely computer "dumb") T3/r7/2015-04-20.txt.gz:{chan ch=tech}Daddius Tech: my State folder is full of plugin ID XMLs T3/r7/2015-04-20.txt.gz:{chan ch=tech}Daddius Tech: i'd just double click the plugin in Plugins list, and search for the .db file name - you want to save the .db file which is the database T3/r7/2015-04-20.txt.gz:{chan ch=tech}Sithium Tech: Alrighty, thank you :) T3/r7/2015-04-20.txt.gz:{chan ch=tech}Sithium Tech: Where would I find my mapper database? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Rugrat Rauru Tech: mushclient folder T3/r7/2015-04-20.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: aardwolf.db T3/r7/2015-04-20.txt.gz:{chan ch=tech}Arcidayne Tech: Depends on where you last put it. T3/r7/2015-04-20.txt.gz:{chan ch=tech}Tech: Arcidayne's shifty eyes dart back and forth. T3/r7/2015-04-20.txt.gz:{chan ch=tech}Sithium Tech: Hmm, thought I copied and pasted but for some reason my mapper is blank... maybe am doing it wrong? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Daddius Tech: did you overwrite your existing db? whereever you are launching mushclient.exe from, its in the same folder T3/r7/2015-04-20.txt.gz:{chan ch=tech}Daddius Tech: maybe have to close Mush to do the paste? T3/r7/2015-04-20.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: oh, most certainly T3/r7/2015-04-20.txt.gz:{chan ch=tech}Sithium Tech: well maybe I will try that :) T3/r7/2015-04-21.txt.gz:{chan ch=tech}Glorph Tech: I keep getting a "Unable to create a plugin save state file" box T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rugrat Rauru Tech: http://www.gammon.com.au/forum/bbshowpost.php?bbsubject_id=8141 T3/r7/2015-04-21.txt.gz:{chan ch=tech}Glorph Tech: ty T3/r7/2015-04-21.txt.gz:{chan ch=tech}Quadrapus Tech: Does anyone know how to modify the windows taskbar size setting using a script? (To see what I mean, right click taskbar, properties, select/deselect "Use small icons") T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rugrat Rauru Tech: maybe a registry tweak T3/r7/2015-04-21.txt.gz:{chan ch=tech}Quadrapus Tech: meh, think i'd need to reboot explorer then T3/r7/2015-04-21.txt.gz:{chan ch=tech}Quadrapus Tech: i have a cool new touchscreen laptop, but i like using small icons... but sometimes i want to make them bigger so they're easier to touch T3/r7/2015-04-21.txt.gz:{chan ch=tech}Glorph Tech: for some reason the whole state folder was set to read-only T3/r7/2015-04-21.txt.gz:{chan ch=tech}Glorph Tech: that might have been the problem T3/r7/2015-04-21.txt.gz:{chan ch=tech}Glorph Tech: I don't understand whats going, I have write access T3/r7/2015-04-21.txt.gz:{chan ch=tech}Glorph Tech: It's happening with Basts plugins T3/r7/2015-04-21.txt.gz:{chan ch=tech}Dillon Tech: is there any autospellup script in blowtorch? T3/r7/2015-04-21.txt.gz:{chan ch=tech}RedRain Tech: create a button that does spellup learned silent T3/r7/2015-04-21.txt.gz:{chan ch=tech}Dillon Tech: aha gotcha thanks :) T3/r7/2015-04-21.txt.gz:{chan ch=tech}Wraiff Tech: You can create a trigger to re-cast the spell, using the spell number, when the MUD reports it has worn off. T3/r7/2015-04-21.txt.gz:{chan ch=tech}Glorph Tech: I can't connect on port 23 T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: test T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: ping T3/r7/2015-04-21.txt.gz:{chan ch=tech}Cizra Tech: Huh, how's that possible. The mapper made a mistake.. Log says: run w4e3n4e, however the path actually is run wn4e2n4e T3/r7/2015-04-21.txt.gz:{chan ch=tech}Sorvez Tech: do you have a cexit on the path T3/r7/2015-04-21.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: maybe it mapped a room incorrectly? you can unmap the specific room where it breaks, and let the mapper recreate it. T3/r7/2015-04-21.txt.gz:{chan ch=tech}Cizra Tech: Dunno. Can't reproduce. T3/r7/2015-04-21.txt.gz:{chan ch=tech}Tech: Tricksy Bamboo goes, "Heh." T3/r7/2015-04-21.txt.gz:{chan ch=tech}Glorph Tech: lol T3/r7/2015-04-21.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: EWONTFIX T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: ahahahah T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: why wwont script load into progggy T3/r7/2015-04-21.txt.gz:{chan ch=tech}Tech: Rixxa gets that "Hentai" Look T3/r7/2015-04-21.txt.gz:{chan ch=tech}Glorph Tech: hmm T3/r7/2015-04-21.txt.gz:{chan ch=tech}Tech: Rixxa goes, "Hmmmm." T3/r7/2015-04-21.txt.gz:{chan ch=tech}Glorph Tech: dropbox didn't save anuything from work T3/r7/2015-04-21.txt.gz:{chan ch=tech}Tech: Rixxa is doing the rounds again. Better hide your wallet. T3/r7/2015-04-21.txt.gz:{chan ch=tech}Glorph Tech: something fishy is going on, and I don't know whats up with it T3/r7/2015-04-21.txt.gz:{chan ch=tech}Bode Tech: did it not sync before you turned off the computer? T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: gitbeethub T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: gitbeerhub T3/r7/2015-04-21.txt.gz:{chan ch=tech}Glorph Tech: There wasn't an issue until the update T3/r7/2015-04-21.txt.gz:{chan ch=tech}Glorph Tech: i also keep getting "cant save plugin state" windows popping up T3/r7/2015-04-21.txt.gz:{chan ch=tech}Glorph Tech: which is super annoying T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: ick T3/r7/2015-04-21.txt.gz:{chan ch=tech}Glorph Tech: I can't figure out what the issue is, I'm the admin, i run it ad adminstrator, it's not read-only T3/r7/2015-04-21.txt.gz:{chan ch=tech}Ullin Tech: I got the annoying can't save plugin state when I run a backup tool...aardmush really doesnt like that. not sure that's relevant T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: hope easy question... how to utilize these scripts I grabbed bast files ?? T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: **feels greener then a thumb of a irish tatter farmer* T3/r7/2015-04-21.txt.gz:{chan ch=tech}Tech: step 1: read the installation page on bast's site T3/r7/2015-04-21.txt.gz:{chan ch=tech}Tech: step 2: read the page on the particular plugin you're trying to use on bast's site T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: #1 I got form github whoops? T3/r7/2015-04-21.txt.gz:{chan ch=tech}Tech: yes, on github T3/r7/2015-04-21.txt.gz:{chan ch=tech}Tech: Rixxa goes, "Hmmmm." T3/r7/2015-04-21.txt.gz:{chan ch=tech}Tech: Rixxa feels completely lost without her special someone. T3/r7/2015-04-21.txt.gz:{chan ch=tech}Tech: when you go to the github site, scroll down T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: yessir, sorry T3/r7/2015-04-21.txt.gz:{chan ch=tech}Tech: to the part where it says "Documentation is currently at" T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: thank you for your patience T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: whoami T3/r7/2015-04-21.txt.gz:{chan ch=tech}Tech: ur rixxa T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: man T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: man man LOL T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: man finger T3/r7/2015-04-21.txt.gz:{chan ch=tech}Tech: Rixxa tells everyone she is sorry. T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: https://code.google.com/p/bastmush/wiki/Installation T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: yey! T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: BRB T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rixxa Tech: quit check T3/r7/2015-04-21.txt.gz:{chan ch=tech}Vorpal Vorpes Tech: anyone feel like troubleshooting some SQL with me? i have a stored procedure http://pastebin.com/1XFzexu3 and a query that calls it http://pastebin.com/JFtRYFw9 T3/r7/2015-04-21.txt.gz:{chan ch=tech}Vorpal Vorpes Tech: basically i am stuck at the fact the MyPreciousReport table is never populated T3/r7/2015-04-21.txt.gz:{chan ch=tech}Vorpal Vorpes Tech: if i run it as posted it goes into an infinite loop. if i edit the set @current_MSD = just the select statement (no concatenating) then it will run and finish but just gives me an empty table T3/r7/2015-04-21.txt.gz:{chan ch=tech}Swamptrash Tech: anyone know about tvs? T3/r7/2015-04-21.txt.gz:{chan ch=tech}Swamptrash Tech: the reason i ask is cause my screen just went black today T3/r7/2015-04-21.txt.gz:{chan ch=tech}Gym Leader Mokg Tech: sounds broken T3/r7/2015-04-21.txt.gz:{chan ch=tech}Om Nom Nom Cheezburger Tech: Be more specific. T3/r7/2015-04-21.txt.gz:{chan ch=tech}Om Nom Nom Cheezburger Tech: Lots of people know about different parts of TVs. T3/r7/2015-04-21.txt.gz:{chan ch=tech}Om Nom Nom Cheezburger Tech: Screen black, check...what else. T3/r7/2015-04-21.txt.gz:{chan ch=tech}#YOLO Dolt Tech: remote T3/r7/2015-04-21.txt.gz:{chan ch=tech}Tech: Om Nom Nom Cheezburger slaps #YOLO Dolt. T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rabann Tech: what type it is might indicate something. T3/r7/2015-04-21.txt.gz:{chan ch=tech}Om Nom Nom Cheezburger Tech: Also the circumstances leading up to it's death T3/r7/2015-04-21.txt.gz:{chan ch=tech}#YOLO Dolt Tech: you know what they say about going black T3/r7/2015-04-21.txt.gz:{chan ch=tech}Gym Leader Mokg Tech: is it plugged in? T3/r7/2015-04-21.txt.gz:{chan ch=tech}Swamptrash Tech: yes it is T3/r7/2015-04-21.txt.gz:{chan ch=tech}Swamptrash Tech: and irts already black lol T3/r7/2015-04-21.txt.gz:{chan ch=tech}Swamptrash Tech: als ther is sound some times T3/r7/2015-04-21.txt.gz:{chan ch=tech}Swamptrash Tech: tech samsung flat screen dont know model T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rabann Tech: have you tried another video input? T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rabann Tech: if changing the source does not display a menu at all, then perhaps the backlight or power supply is busted T3/r7/2015-04-21.txt.gz:{chan ch=tech}Swamptrash Tech: hmm T3/r7/2015-04-21.txt.gz:{chan ch=tech}Swamptrash Tech: let me see T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rabann Tech: not that I know anything about televisions. just guessing. T3/r7/2015-04-21.txt.gz:{chan ch=tech}Swamptrash Tech: i should still get a blue screen though right? T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rabann Tech: a blue screen? T3/r7/2015-04-21.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: you tell us. is it normal for you to have a blue screen? T3/r7/2015-04-21.txt.gz:{chan ch=tech}Swamptrash Tech: if i turn it on with out my x box there is a blue screen T3/r7/2015-04-21.txt.gz:{chan ch=tech}Swamptrash Tech: untill i turn on the xbox T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rabann Tech: that sounds like a loose cable T3/r7/2015-04-21.txt.gz:{chan ch=tech}Rabann Tech: check all cable connections from your t.v. to your xbox. whatever you are using to transmit video may be loose. T3/r7/2015-04-21.txt.gz:{chan ch=tech}Swamptrash Tech: hmm ok thanks to be continued T3/r7/2015-04-22.txt.gz:{chan ch=tech}Glorph Tech: why does my mapper want to run to the lower planes instead of the amusement park T3/r7/2015-04-22.txt.gz:{chan ch=tech}Mannec Tech: because the amusement park is on the path to the lower planes? T3/r7/2015-04-22.txt.gz:{chan ch=tech}Glorph Tech: the low level amusement park? I can runto it just fine T3/r7/2015-04-22.txt.gz:{chan ch=tech}Glorph Tech: just not with the mapper T3/r7/2015-04-22.txt.gz:{chan ch=tech}Mannec Tech: due to historical reasons, the entrances to the planes are in the low-level amusment park. sortof. T3/r7/2015-04-22.txt.gz:{chan ch=tech}#YOLO Dolt Tech: are you using mapper extender? if so, runto amusement, xset mark T3/r7/2015-04-22.txt.gz:{chan ch=tech}Glorph Tech: that worked, thank you :D T3/r7/2015-04-22.txt.gz:{chan ch=tech}FairyTail Tech: is there anyway to color a Hyperlink? T3/r7/2015-04-22.txt.gz:{chan ch=tech}Glorph Tech: hmm interesting T3/r7/2015-04-22.txt.gz:{chan ch=tech}Glorph Tech: the problem i had yesterday with the unable to save plugin state thing has fixed itself T3/r7/2015-04-22.txt.gz:{chan ch=tech}Glorph Tech: I didn't do anything T3/r7/2015-04-22.txt.gz:{chan ch=tech}Veck Tech: all variables in lua are global unless you specifiy it as local right? T3/r7/2015-04-22.txt.gz:{chan ch=tech}Arcidayne Tech: Yes. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Rhavage Tech: Any cmud experts handy? T3/r7/2015-04-22.txt.gz:{chan ch=tech}.... Hwuaijijal Tech: "Uncaught TypeError: Cannot read property 'checked' of null" - its 21th century and the machines are still talking back so stupidly. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Nican Tech: What would be a better response? T3/r7/2015-04-22.txt.gz:{chan ch=tech}.... Hwuaijijal Tech: almost anything else T3/r7/2015-04-22.txt.gz:{chan ch=tech}.... Hwuaijijal Tech: in correct english T3/r7/2015-04-22.txt.gz:{chan ch=tech}Nican Tech: That's correct english though, just a bit curt. Would you prefer "hey man, you tried to call a key on this object but the object is null and that doesn't make sense what are you doing?" T3/r7/2015-04-22.txt.gz:{chan ch=tech}.... Hwuaijijal Tech: yes T3/r7/2015-04-22.txt.gz:{chan ch=tech}Nican Tech: Oh, okay. T3/r7/2015-04-22.txt.gz:{chan ch=tech}.... Hwuaijijal Tech: "the object is null" is also a bit too geeky T3/r7/2015-04-22.txt.gz:{chan ch=tech}Nican Tech: Well, since that looks like a JS error, and it would normally be undefined unless you or one of your libraries set it to null, that geekiness came from you. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Arcidayne Tech: So decompile the program, change it to say what you want it to say, then recompile it and stop complaining. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Arcidayne Tech: Or reverse-engineer it. :p T3/r7/2015-04-22.txt.gz:{chan ch=tech}.... Hwuaijijal Tech: yes. yes.. listen geeks! numbers start from 1! not 0. i hope the person who made people to start counting from 0 died all alone. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Arcidayne Tech: Numbers start from 0. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Arcidayne Tech: Not 1. T3/r7/2015-04-22.txt.gz:{chan ch=tech}.... Hwuaijijal Tech: ! T3/r7/2015-04-22.txt.gz:{chan ch=tech}Arcidayne Tech: You just count 1 as the first because it's the first number after 0. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Pietrava Tech: 0 was invented in Cambodia. Go take it out on them. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Nican Tech: Numbers don't start, any idea of ordinality is an arbitrary construct. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: is there a good quest plugin T3/r7/2015-04-22.txt.gz:{chan ch=tech}Arcidayne Tech: Depends on what you want it to do. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: everything lol T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: no really T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: idk whats avalible T3/r7/2015-04-22.txt.gz:{chan ch=tech}Arcidayne Tech: Doesn't tell much. Finger Bast. He has quest plugins. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: do i go to his page? T3/r7/2015-04-22.txt.gz:{chan ch=tech}Fatal FrostBite Tech: what features are you looking for? T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: um well stuff to remind me to quest... and to make it easier idk what exactly i want just know i want something T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: cant you just walk lol T3/r7/2015-04-22.txt.gz:{chan ch=tech}Orsiphantes Tech: You could, but a portal is a shorter walk. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: oops wrong channel T3/r7/2015-04-22.txt.gz:{chan ch=tech}Fatal FrostBite Tech: I rewrote Nick Gammon's quest tracker that does that. Keeps track of quest time and shows the quest info in Target/Room/Area form. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Fatal FrostBite Tech: will make gmcp quest tracker when I have time. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: what does basts plugin do? T3/r7/2015-04-22.txt.gz:{chan ch=tech}Tech: depends on which plugin T3/r7/2015-04-22.txt.gz:{chan ch=tech}Tech: he has dozens T3/r7/2015-04-22.txt.gz:{chan ch=tech}Arcidayne Tech: He's talking specifically about the Quest one, Abe. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Sithium Tech: Which plugin is the miniwindor that tracks levels/quest/cp/ etc on one window? T3/r7/2015-04-22.txt.gz:{chan ch=tech}Tech: he has a lot of docs available on his plugins, though...when you go to his website, scroll down to the docs link T3/r7/2015-04-22.txt.gz:{chan ch=tech}Arcidayne Tech: I'm working, or I'd answer directly, but yeah, that's what he's looking for, quest plugins. T3/r7/2015-04-22.txt.gz:{chan ch=tech}Tech: bast has many plugins which cover quests T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: tech lol damn im lost sorry T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: im a bit special today it seems T3/r7/2015-04-22.txt.gz:{chan ch=tech}Tech: today? :P T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: yea more so than normal T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: um some one wanna walk em through this? T3/r7/2015-04-22.txt.gz:{chan ch=tech}Tech: when you're on bast's wiki, click "bast's plugins" to see a list T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: https://github.com/endavis here? T3/r7/2015-04-22.txt.gz:{chan ch=tech}Tech: as I said, scroll down to the documentation link T3/r7/2015-04-22.txt.gz:{chan ch=tech}Tech: click on the name of the plugin you're interested in... T3/r7/2015-04-22.txt.gz:{chan ch=tech}Tech: plugins to look at include miniwin_events, miniwin_quest, statmonitor, statdb T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: ah ok thanks T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: woot T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: last thing its one down load for all his stuff right? T3/r7/2015-04-22.txt.gz:{chan ch=tech}Tech: click the "installation" link on the left to see how to get/install :-) T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: his download page wont show doownloads? T3/r7/2015-04-22.txt.gz:{chan ch=tech}Tech: for the download, go to the original site T3/r7/2015-04-22.txt.gz:{chan ch=tech}Zombinynjah Tech: um ok what ones you sugest i download? T3/r7/2015-04-22.txt.gz:{chan ch=tech}Tech: you download the zipfile T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: so i dont think i should have a compute T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: r T3/r7/2015-04-23.txt.gz:{chan ch=tech}Gym Leader Mokg Tech: so... anyones internet out besides this game? T3/r7/2015-04-23.txt.gz:{chan ch=tech}Nothings Defines Tech: nope T3/r7/2015-04-23.txt.gz:{chan ch=tech}Mannec Tech: umm, what? T3/r7/2015-04-23.txt.gz:{chan ch=tech}Tech: Nothings Defines snickers with Mannec about their shared secret. T3/r7/2015-04-23.txt.gz:{chan ch=tech}Gym Leader Mokg Tech: only this game and twitch will load for me. everyone on twitch complaining about same thing T3/r7/2015-04-23.txt.gz:{chan ch=tech}Mannec Tech: smells like a dns issue maybe? T3/r7/2015-04-23.txt.gz:{chan ch=tech}Gym Leader Mokg Tech: I switched to google dns last night, do I have to reboot for it to take effect? T3/r7/2015-04-23.txt.gz:{chan ch=tech}Nothings Defines Tech: flush your dns cache T3/r7/2015-04-23.txt.gz:{chan ch=tech}Gym Leader Mokg Tech: still nada T3/r7/2015-04-23.txt.gz:{chan ch=tech}A macabre Sonet Tech: Anyone on good with regex? T3/r7/2015-04-23.txt.gz:{chan ch=tech}Dzelgo Tech: Oh yes. Regular expressions are fun! T3/r7/2015-04-23.txt.gz:{chan ch=tech}A macabre Sonet Tech: sweet, wanna help me debug a section for the train command? T3/r7/2015-04-23.txt.gz:{chan ch=tech}Dzelgo Tech: Sure! Via tells? T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: um basts plugins is it all in one file? T3/r7/2015-04-23.txt.gz:{chan ch=tech}Ocho Ocho Ocho Tech: how do I copy/paste in color in mush client? T3/r7/2015-04-23.txt.gz:{chan ch=tech}Mommas Boy Devol Tech: crtl+d T3/r7/2015-04-23.txt.gz:{chan ch=tech}Ocho Ocho Ocho Tech: thats it thanks! T3/r7/2015-04-23.txt.gz:{chan ch=tech}Nothings Defines Tech: theres a plugin to copy color codes T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: so i cant see anything from my main screen T3/r7/2015-04-23.txt.gz:{chan ch=tech}Nothings Defines Tech: mush output window? T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: yep T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: i downloaded abunch of bast plugin T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: what one gor rid of the window lol T3/r7/2015-04-23.txt.gz:{chan ch=tech}Nothings Defines Tech: did you enable tons of them all at once? T3/r7/2015-04-23.txt.gz:{chan ch=tech}Nothings Defines Tech: you should know which one caused it :p T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: i enabled all of them then was slowly getting rid of ones i did not like T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: um im trying to make a trigger where i automaticly drink/eat when i need to.... i cant seem to get it right.... if i use my trigger as a say like You say "food T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: it works T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: but i dont want to have to type in T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: any ideas what im doing wrong? T3/r7/2015-04-23.txt.gz:{chan ch=tech}Rugrat Rauru Tech: send to execute T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: thaks ill try that T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: um question what does it mean when i try to open a zip file and it sez its n archive? T3/r7/2015-04-23.txt.gz:{chan ch=tech}Arcidayne Tech: It means it's an archive and you need an archiving tool to open it. T3/r7/2015-04-23.txt.gz:{chan ch=tech}Arcidayne Tech: Most popular one is 7z, though Windows Explorer can open it, too. T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: oh ok thanks T3/r7/2015-04-23.txt.gz:{chan ch=tech}Tech: when you double-click the zipfile and it opens up what looks like a normal Windows Explorer window, you can just drag the folder from that window over to a new folder and that will extract it from the archive T3/r7/2015-04-23.txt.gz:{chan ch=tech}Tech: or you can right-click the zipfile and say "extract all" T3/r7/2015-04-23.txt.gz:{chan ch=tech}Tech: Nothings Defines sighs. T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: sez its empty T3/r7/2015-04-23.txt.gz:{chan ch=tech}Bishoujo Raded Tech: alright, vaguely Windows 7 question because my network admin isn't here right now: T3/r7/2015-04-23.txt.gz:{chan ch=tech}Bishoujo Raded Tech: is it possible to do a one time change to the default Windows theme on all of a network's computers through group policy (switching from an Aero theme to Basic)? T3/r7/2015-04-23.txt.gz:{chan ch=tech}Rugrat Rauru Tech: if gmcpval() cant get an item from a table what does it return T3/r7/2015-04-23.txt.gz:{chan ch=tech}Arcidayne Tech: Probably blank or nil. T3/r7/2015-04-23.txt.gz:{chan ch=tech}Rugrat Rauru Tech: ye wondering if its nil or "" T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: to i am trying to add plugins buy it wont let me T3/r7/2015-04-23.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Hey Zombin, what plugin? What client? What does it say? How are you adding them? T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: its saying line one zero length xml file T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: the S&D T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: sorry and the much T3/r7/2015-04-23.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Copy the entire error and put it on pastebin, put a link here. Someone might be able to help, if not contact the author or post on tech board :) T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: its doing it with bast T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: too T3/r7/2015-04-23.txt.gz:{chan ch=tech}Zombinynjah Tech: Line 1: Zero length XML file T3/r7/2015-04-23.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: A zero length xml file is completely blank. I've never seen that issue, but I'd guess your download didn't work or you have some other file issues... T3/r7/2015-04-23.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: You followed install directions on the site and didn't install mushclient in program files folder or something? T3/r7/2015-04-24.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: Anyone here know how to set up ssl in mac os x? T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: ok techs...question T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: I' T3/r7/2015-04-24.txt.gz:{chan ch=tech}Nuanse Tech: I question your tech! T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: I'm moving, and I just got internet T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: I need to set up a home office T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: but the office will be downstairs, modem is upstairs T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: I have wifi, but my work requires video conferencing, so I prefer hardline T3/r7/2015-04-24.txt.gz:{chan ch=tech}Cizra Tech: Good WiFi can handle that easily. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: but I don't own the place, so I can't drop a line T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: ok, so maybe just better wireless router? T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: or is there another workaround T3/r7/2015-04-24.txt.gz:{chan ch=tech}#YOLO Dolt Tech: you can probably do ethernet over power T3/r7/2015-04-24.txt.gz:{chan ch=tech}Mye Tech: very long ethernet cables or switches T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: like isn't there a plug that runs through the power outlets? T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: well, I know there is, I had one when I had directtv T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: but does it slow speed T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: or is it comparable to hardline, or at least better than wifi T3/r7/2015-04-24.txt.gz:{chan ch=tech}#YOLO Dolt Tech: new ones say they do something like 500Mbps T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: wow, ok. Do you know price offhand? Probably need 2 right? T3/r7/2015-04-24.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: somewhere between $50 and $200 T3/r7/2015-04-24.txt.gz:{chan ch=tech}#YOLO Dolt Tech: they usually sell them in pairs, and not sure of prices offhand T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: no worries, I will look up now T3/r7/2015-04-24.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: yeah, you'll get at least 2 stations in a pack (kinda pointless otherwise) T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: $60 at best buy (claims 500), not bad T3/r7/2015-04-24.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: yeah. but it's similar tech to wireless, so you're not going to see anywhere near 500 outside a lab T3/r7/2015-04-24.txt.gz:{chan ch=tech}#YOLO Dolt Tech: yeah, it won't be as high as they say. But mine's stable as a rock, and it was just a cheap tp-link or something one T3/r7/2015-04-24.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: for simple point-to-point it's great T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: well, but my internet maxes at 50 down T3/r7/2015-04-24.txt.gz:{chan ch=tech}#YOLO Dolt Tech: yeah, so it won't be a bottleneck at least T3/r7/2015-04-24.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: sure, you should get that :P T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: well, and my video conferencing draws from upload, which is much more limited (5 up), so I notice issues on wireless T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: but it could just be I need a better router... T3/r7/2015-04-24.txt.gz:{chan ch=tech}Dzelgo Tech: Wouldn't upload speed be limited by your wireless card, usually? T3/r7/2015-04-24.txt.gz:{chan ch=tech}Cizra Tech: Have you tried wired videoconferencing? T3/r7/2015-04-24.txt.gz:{chan ch=tech}Cizra Tech: Is it any better? T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: oh, possibly...work laptop T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: yes, I do that now T3/r7/2015-04-24.txt.gz:{chan ch=tech}Cizra Tech: I think just about ANY wireless would be much faster than 5 Mb. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: well, I also need my desktop wired in my office, so I can Aard as well:) T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: very important T3/r7/2015-04-24.txt.gz:{chan ch=tech}Cizra Tech: Can't aard on your work lappy? T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: they can technically monitor it T3/r7/2015-04-24.txt.gz:{chan ch=tech}#YOLO Dolt Tech: I'd say try the power adapters. I video conference with them daily because I had the same issue T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: but I work from home, so I have a separate pc and monitor for aard T3/r7/2015-04-24.txt.gz:{chan ch=tech}Cizra Tech: I videoconference all the time with WiFi and it works very well. Well, at least not worse than wired. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: hmmm, my wifi here is in a basement (under ground) would that hinder? T3/r7/2015-04-24.txt.gz:{chan ch=tech}#YOLO Dolt Tech: possibly T3/r7/2015-04-24.txt.gz:{chan ch=tech}Cizra Tech: Whatever you do, first try videoconferencing when connected over wire T3/r7/2015-04-24.txt.gz:{chan ch=tech}Piffaron Tech: nod, compare T3/r7/2015-04-24.txt.gz:{chan ch=tech}Cizra Tech: Piffaron, mine is in the attic, works. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Ralyn Tech: does anybody know how swap works on a linux machine, in the case of say if the machine is only running a bunch of VSFTP processes? T3/r7/2015-04-24.txt.gz:{chan ch=tech}Lackluster Lachdanan Tech: on default swappiness, unused pages will sometimes be flushed to disk. if you're certain that this server should not swap under normal circumstances, set vm.swappiness to 0 to avoid hitting the disk unnecessarily. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Zombinynjah Tech: um my S&D wont let me quick link to mobs i redownloaded the mud n stuff after i messed up my plugins T3/r7/2015-04-24.txt.gz:{chan ch=tech}Vespar Tech: can anyone help me with mushclient mapper T3/r7/2015-04-24.txt.gz:{chan ch=tech}Zombinynjah Tech: what ya need i can try T3/r7/2015-04-24.txt.gz:{chan ch=tech}Vespar Tech: im just wondering if it is possible that i turned mapping off later and how i can turn it back on to start remembering room IDs T3/r7/2015-04-24.txt.gz:{chan ch=tech}Zombinynjah Tech: the same way T3/r7/2015-04-24.txt.gz:{chan ch=tech}Vespar Tech: i just checked the mapper box and it said it was enabled but doesnt seem to be recording my steps T3/r7/2015-04-24.txt.gz:{chan ch=tech}Zombinynjah Tech: read it if all else fails T3/r7/2015-04-24.txt.gz:{chan ch=tech}Zombinynjah Tech: reinstall i mean T3/r7/2015-04-24.txt.gz:{chan ch=tech}Zombinynjah Tech: any one know anything about the S&D? T3/r7/2015-04-24.txt.gz:{chan ch=tech}Jedhi Tech: yeah, install and use T3/r7/2015-04-24.txt.gz:{chan ch=tech}Zombinynjah Tech: it wont refresh or do the hunt trick T3/r7/2015-04-24.txt.gz:{chan ch=tech}Glosso Tech: What is S&D? T3/r7/2015-04-24.txt.gz:{chan ch=tech}Zombinynjah Tech: search and destroy T3/r7/2015-04-24.txt.gz:{chan ch=tech}Kanmuru Kirua Tech: the search and destory plugin, saves a lot of effort when questing or doing campaigns T3/r7/2015-04-24.txt.gz:{chan ch=tech}Glosso Tech: Ok. Cool. Thanks. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Zombinynjah Tech: mine seems broken T3/r7/2015-04-24.txt.gz:{chan ch=tech}Ayasinda Tech: ahh that semi bot thing T3/r7/2015-04-24.txt.gz:{chan ch=tech}Nothings Defines Tech: its slower than doing it manually but its takes the effort out i guess T3/r7/2015-04-24.txt.gz:{chan ch=tech}.... Hwuaijijal Tech: i think google is a bunch of incredibly wealthy amateurs. their products are flawed. always. its ridiculous. they should be shut down. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Arcidayne Tech: No, please, tell us how you REALLY feel! T3/r7/2015-04-24.txt.gz:{chan ch=tech}.... Hwuaijijal Tech: i feel i've been fed unfinished products for 10 years. thats a long time. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Nican Tech: I too hate it how I'm being forced to use free Google products. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Nican Tech: It's so frustrating. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Arcidayne Tech: Maybe they're not amateurs, but rather people with severe ADHD? T3/r7/2015-04-24.txt.gz:{chan ch=tech}.... Hwuaijijal Tech: thats.. "enthusiastic wealthy and free amateurs" T3/r7/2015-04-24.txt.gz:{chan ch=tech}Pablo Escobar Tech: Is tech channel just Aard-related questions or outside of the game, too? T3/r7/2015-04-24.txt.gz:{chan ch=tech}Ayasinda Tech: all questions T3/r7/2015-04-24.txt.gz:{chan ch=tech}Ayasinda Tech: all tech questions T3/r7/2015-04-24.txt.gz:{chan ch=tech}Pablo Escobar Tech: Ok, this might sound silly but... I wanna set up another gpu into my pc. 1) Can I use the same one? 2) If not, I have an AMD mobo & Radeon gpu, can I use another brand? T3/r7/2015-04-24.txt.gz:{chan ch=tech}Pablo Escobar Tech: The one I currently have is set up for crossfire. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Mye Tech: make sure both are the same brand -- i.e. both crossfire or both sli (nvidia) .. make sure your mobo has enough pcie lanes (nowadays most say their compatible to 2 or 3 or however many gpus for sli/crossfire/etc) T3/r7/2015-04-24.txt.gz:{chan ch=tech}Pablo Escobar Tech: I know the mobo has 2 PCI slots for GPUs, I know the gpu I have currently is crossfire-compatible. I thought about just buying another of the same. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Daddius Tech: sounds like a safe bet to buy the same one T3/r7/2015-04-24.txt.gz:{chan ch=tech}Mye Tech: i don't see any reason why that wouldn't work .. probably just check the manual to make sure T3/r7/2015-04-24.txt.gz:{chan ch=tech}Pablo Escobar Tech: I just wasn't certain if you could do that, hahaha. I've never hooked up 2 gpus into a desktop before. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Pablo Escobar Tech: I'll check, thanks again :) T3/r7/2015-04-24.txt.gz:{chan ch=tech}Mye Tech: it will probably require a little bit of setup to configure them to act as a single unit, but manual would have that T3/r7/2015-04-24.txt.gz:{chan ch=tech}Pablo Escobar Tech: The one I currently have is the Radeon R9 270x. Cost me $189 before taxes & s&h. I'm thinking about maybe going for something a bit stronger. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Mye Tech: http://support.amd.com/en-us/kb-articles/Pages/Crossfire-Chart.aspx T3/r7/2015-04-24.txt.gz:{chan ch=tech}Pablo Escobar Tech: Thanks, super helpful! T3/r7/2015-04-24.txt.gz:{chan ch=tech}Mye Tech: the bridge it refers to will be a connection between the two cards when they're seated in the slots .. it *should* come with the gpus T3/r7/2015-04-24.txt.gz:{chan ch=tech}Pablo Escobar Tech: I might have tossed it from the original, I hope not. But I think going with the same is prolly the best option. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Mye Tech: you should only need one, so if it came with original, it should come with new one T3/r7/2015-04-24.txt.gz:{chan ch=tech}Pablo Escobar Tech: Ok :) If not, I'll just find it somewhere. T3/r7/2015-04-24.txt.gz:{chan ch=tech}Useful Hadar Tech: whats a good program with windows to see all wireless networks and the channels they are on? T3/r7/2015-04-24.txt.gz:{chan ch=tech}Jurus Tech: try inSSIDer it shows channels in the neighborhood that are being used. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: If i want to capture the name of a mob I've killed, what is a good line to match on? (other than gold from corpse/consume msg) T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: using a trigger* T3/r7/2015-04-25.txt.gz:{chan ch=tech}Bode Tech: the he is dead line? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Daddius Tech: yeah It is DEAD! T3/r7/2015-04-25.txt.gz:{chan ch=tech}Daddius Tech: but hard to distinguish what was killed and how with that... it varies based on spell/attack used for kill T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: yeah that message isnt consistent T3/r7/2015-04-25.txt.gz:{chan ch=tech}Daddius Tech: you could query char.status.enemy in script? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: unfortunately if you one hit a mob that doesnt register =p T3/r7/2015-04-25.txt.gz:{chan ch=tech}Quadrapus Tech: Okay, I hate this new "high density" pixel laptop screen I bought T3/r7/2015-04-25.txt.gz:{chan ch=tech}Quadrapus Tech: Don't ever buy one of these POSs for windows T3/r7/2015-04-25.txt.gz:{chan ch=tech}Quadrapus Tech: I just had to resize all of my excel cells when moving to a "normal" screen T3/r7/2015-04-25.txt.gz:{chan ch=tech}Quadrapus Tech: because the size of each cell is pixel based T3/r7/2015-04-25.txt.gz:{chan ch=tech}Stanislav Tech: anyone know how to turn off and when running? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: maptags off maybe T3/r7/2015-04-25.txt.gz:{chan ch=tech}Nuanse Tech: you can turn map off while running with maprun T3/r7/2015-04-25.txt.gz:{chan ch=tech}Stanislav Tech: i dont want tu turn off map, just these weird messeges which appear here and there T3/r7/2015-04-25.txt.gz:{chan ch=tech}Stanislav Tech: is there a way to make 'escape' button to clear input on mushclient? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Cizra Tech: Yes, there's a setting for that T3/r7/2015-04-25.txt.gz:{chan ch=tech}Stanislav Tech: hint me :)? couldnt find myself T3/r7/2015-04-25.txt.gz:{chan ch=tech}Cizra Tech: Input -> Commands -> Keyboard preferences T3/r7/2015-04-25.txt.gz:{chan ch=tech}Stanislav Tech: thanks a ton T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: is a difference in regex syntax between: ^Some text|Some other text$ and ^Some text$|^Some other text$ T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: is there* T3/r7/2015-04-25.txt.gz:{chan ch=tech}Jedhi Tech: the second match should fail T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: does mapper have a reverse room search T3/r7/2015-04-25.txt.gz:{chan ch=tech}Gorsk Tech: define reverse room search T3/r7/2015-04-25.txt.gz:{chan ch=tech}Gym Leader Mokg Tech: room searches for you T3/r7/2015-04-25.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: what do mea? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: search by roomid T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: also lol @ mokg T3/r7/2015-04-25.txt.gz:{chan ch=tech}Gorsk Tech: mapper where 12345 T3/r7/2015-04-25.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: you can use mapper goto uid too T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: that gets a speedwalk T3/r7/2015-04-25.txt.gz:{chan ch=tech}Gorsk Tech: or mapper showroom 12345 T3/r7/2015-04-25.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: would help if you tell us exactly what info you want search to return. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: room name i suppose. showroom does that T3/r7/2015-04-25.txt.gz:{chan ch=tech}Stanislav Tech: is it possible to set up winkle plugins for gquests? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: yes T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: just add the relevant triggers/aliases. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Madcatz Tech: Sure, if you're friends with him and he trusts you enough to not tell the imms that a gquest version exists. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Madcatz Tech: I mean...what Rauru said. T3/r7/2015-04-25.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: ehh - if its not illegal for cps - cant be illegal for gqs. even if there are better ways to win gquests :) T3/r7/2015-04-25.txt.gz:{chan ch=tech}Stanislav Tech: oh, i had no idea it was illegal to use it for gquests. sorry T3/r7/2015-04-25.txt.gz:{chan ch=tech}Madcatz Tech: Never said it was or wasn't T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: he just means you cant beat quadrapus with winkle T3/r7/2015-04-25.txt.gz:{chan ch=tech}Stanislav Tech: im not trying to beat anyone or do them faster than others :p im just too slow to fin in 3 min extra time T3/r7/2015-04-25.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: and in fact - winkle might cause you to be worse at the fundemntals that, once you get really good at, you might win a lot more. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: http://pastebin.com/u/EnvenomedThorne ... you can find gq versions on there T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: woops meant that for a tell T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: =p T3/r7/2015-04-25.txt.gz:{chan ch=tech}Stanislav Tech: thanks :p T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: anyone know how the aard_gmcp_mapper gets the full area name of new zones? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Bugsy Tech: is there a way to gag the room names from showing in a speedwalk or rt? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Vespar Tech: hmm so everything my cursor is going over is zooming in i accidentally hit a button and cant figure out how to stop it T3/r7/2015-04-25.txt.gz:{chan ch=tech}Vespar Tech: anyone help maybe? :) T3/r7/2015-04-25.txt.gz:{chan ch=tech}Legendary Gruagach Tech: grampa.dat T3/r7/2015-04-25.txt.gz:{chan ch=tech}Legendary Gruagach Tech: .bat T3/r7/2015-04-25.txt.gz:{chan ch=tech}Vespar Tech: dunno what that means T3/r7/2015-04-25.txt.gz:{chan ch=tech}Swalec Tech: turn it offtauran i T3/r7/2015-04-25.txt.gz:{chan ch=tech}Trachx Tech: Press Windows logo key? Windows logo key+ "+" (plus sign). T3/r7/2015-04-25.txt.gz:{chan ch=tech}Vespar Tech: thanks!! T3/r7/2015-04-25.txt.gz:{chan ch=tech}Tech: Vespar twirls. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Trachx Tech: to exit windows logo + esc T3/r7/2015-04-25.txt.gz:{chan ch=tech}Trachx Tech: not sure whether you have accidentaly turned it on ot it is other thing T3/r7/2015-04-25.txt.gz:{chan ch=tech}Trachx Tech: but it is good idea to remap windows key to something more useful T3/r7/2015-04-25.txt.gz:{chan ch=tech}Vespar Tech: yeah that helped its gone now thanks trachx T3/r7/2015-04-25.txt.gz:{chan ch=tech}Trachx Tech: at least I've remapped windows logo key to caps lock and caps lock to control T3/r7/2015-04-25.txt.gz:{chan ch=tech}Vespar Tech: you can change what the keyboard does? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Trachx Tech: it's windows feature, but you need to use some keyboard remapper tool to modify registry T3/r7/2015-04-25.txt.gz:{chan ch=tech}Vespar Tech: oh, im not sure i understood that ill just leave my keyboard as is but i do appreciate the help with getting that stupid zoom in gone :) T3/r7/2015-04-25.txt.gz:{chan ch=tech}Quadrapus Tech: Anyone know of a good program to monitor a set of web pages for updates, and then alert you when a change is detected? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Fatal FrostBite Tech: Yeah, called your eyes =P T3/r7/2015-04-25.txt.gz:{chan ch=tech}A macabre Sonet Tech: I was thinking the same thing T3/r7/2015-04-25.txt.gz:{chan ch=tech}Quadrapus Tech: Yes, because I have time to check hundreds of web pages for updates every hour T3/r7/2015-04-25.txt.gz:{chan ch=tech}Tech: Fatal FrostBite called JINX before A macabre Sonet. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Nican Tech: Generally speaking, that can be difficult, since CDNs and other things might update and flip the switch. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Tech: Quadrapus nods at Nican. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Nican Tech: So you're probably going to want to write a targetted scraper. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Quadrapus Tech: Okay, I figured that, but I was just trying to save myself some time T3/r7/2015-04-25.txt.gz:{chan ch=tech}Crej Tech: sorry i thing there is a paid websives i seem to remeber somewhere but I cant remember the name T3/r7/2015-04-25.txt.gz:{chan ch=tech}Negader Tech: you would think there would be some type of spider program that does that. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Nican Tech: To that end, casper's pretty straightforward if you know JS. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Tech: Fatal FrostBite nods at Nican and says, "I concur." Why didn't you?! T3/r7/2015-04-25.txt.gz:{chan ch=tech}Nican Tech: And Phantom finally updated to the new QT, so it should be less janky than it used to be. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Quadrapus Tech: Hmm... don't know JS, do know .NET though, if you have any other recommendations T3/r7/2015-04-25.txt.gz:{chan ch=tech}Nican Tech: Well with .net, can't you just call an IE window to do it for you? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Quadrapus Tech: Im sure, I was trying to avoid coding much if possible... time crunch :/ T3/r7/2015-04-25.txt.gz:{chan ch=tech}Quadrapus Tech: Well thanks for the input, I appreciate it T3/r7/2015-04-25.txt.gz:{chan ch=tech}Nican Tech: Well, I'd still look at casper, as long as you can do async, it'd take you maybe 5 minutes to put together something that would grab a targeted
or whatever from a given site. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Tech: Quadrapus nods. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Quadrapus Tech: Looking at it now, thanks buddy :) T3/r7/2015-04-25.txt.gz:{chan ch=tech}Nican Tech: And if you can code in any of the more advanced .net languages, JS is easy as pie. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Nican Tech: No problem, big fan of your GQ exploits, glad to be of some small help. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Fatal FrostBite Tech: Think that counts as a marriage proposal... =P T3/r7/2015-04-25.txt.gz:{chan ch=tech}Tech: Fatal FrostBite tosses Nican up in the air, he loves it! T3/r7/2015-04-25.txt.gz:{chan ch=tech}Tech: Nican blushes. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Daddius Tech: anyone know of an area repop plugin for mush? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Arcidayne Tech: Depends on what you want it to do. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Arcidayne Tech: Mendaloth has one on his site. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Daddius Tech: just want to send it to a channel T3/r7/2015-04-25.txt.gz:{chan ch=tech}Arcidayne Tech: Basically outputs repop on your channel of choice. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Daddius Tech: ok thanks T3/r7/2015-04-25.txt.gz:{chan ch=tech}Arcidayne Tech: Then use Mendaloth's. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: it uses colortell so it writes it clientside not mud (echo). echo has lag. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Rugrat Rauru Tech: mis T3/r7/2015-04-25.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: why do you want to send things to a channel? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Tech: The Jerk Fiendish stretches luxuriously. Kinda makes you want to, doesn't it? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Legendary Gruagach Tech: anyone got a 3moons timer? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Negader Tech: 6 ticks. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Elysian Tech: bast has one 3 moons in 6 ticks for 2 ticks T3/r7/2015-04-25.txt.gz:{chan ch=tech}Negader Tech: for 2 ticks T3/r7/2015-04-25.txt.gz:{chan ch=tech}Legendary Gruagach Tech: how often does it cycle? where can i get the plugin? T3/r7/2015-04-25.txt.gz:{chan ch=tech}Hoid Tech: finger bast, install the moon plugin T3/r7/2015-04-25.txt.gz:{chan ch=tech}Elysian Tech: finger bast. It works well once all moons have risen/fallen... and then works indefinately til you log off T3/r7/2015-04-25.txt.gz:{chan ch=tech}Ralyn Tech: that's what she said T3/r7/2015-04-25.txt.gz:{chan ch=tech}Legendary Gruagach Tech: k thx T3/r7/2015-04-25.txt.gz:{chan ch=tech}Arcidayne Tech: [Melvin]: I forsee the moons uniting in 3 ticks (1m:30s) and lasting 2 ticks (1m). T3/r7/2015-04-25.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: and the cycle is every 4290 ticks T3/r7/2015-04-25.txt.gz:{chan ch=tech}Tech: Arcidayne nods at The Reaper Myrkul. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Legendary Gruagach Tech: you math'd so hard right there..thank you T3/r7/2015-04-25.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: not really, i used a calculator :P T3/r7/2015-04-25.txt.gz:{chan ch=tech}Legendary Gruagach Tech: so.. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Legendary Gruagach Tech: Line 32: Attribute name 'data-pjax-transient' not followed by '=' (Cannot load) T3/r7/2015-04-25.txt.gz:{chan ch=tech}Legendary Gruagach Tech: loading bast mooner..any clue wtf i'm reading T3/r7/2015-04-25.txt.gz:{chan ch=tech}Hoid Tech: did you follow the instructions (extracted whole folder into the location it said?). kit installs alright for me. T3/r7/2015-04-25.txt.gz:{chan ch=tech}Legendary Gruagach Tech: naw i just downloaded that one thing..lemmie do some reading T3/r7/2015-04-25.txt.gz:{chan ch=tech}Hoid Tech: they are a pack of interconnected plugins, it pulls whatever else it needs from the pack. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Loktar Tech: Daughter pushed like a zillion keys, seperated my info bar into a new window, and half my screen is solid. Using MUSH, any suggestions? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Negader Tech: resetaard T3/r7/2015-04-26.txt.gz:{chan ch=tech}Negader Tech: if for s&d, xset reset gui T3/r7/2015-04-26.txt.gz:{chan ch=tech}Loktar Tech: ya didnt work, got the half to go away, it was the info bar T3/r7/2015-04-26.txt.gz:{chan ch=tech}Loktar Tech: just dont know how to put the info bar, back where its usually at. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Negader Tech: info bar, meaning health? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Loktar Tech: Nope the one you can use for extra info, its right above where you type T3/r7/2015-04-26.txt.gz:{chan ch=tech}Legendary Gruagach Tech: i'd cntl alt delete, and close program from the process..hopefully doesnt save any changes T3/r7/2015-04-26.txt.gz:{chan ch=tech}RedRain Tech: menu, view, reset toolbar locations? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Loktar Tech: ahh that did it, Red, thanks man. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Zexe Tech: does anyone know of a script to record and output damage of group members? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Toxik TearNyne Tech: yeah T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: hi T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: âââââ âââââ T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: ... T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: English only, please. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: im getting that error on my map T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Tell your map English only, please. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Legendary Gruagach Tech: lol T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: You may not have the correct font installed. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Using MUSH? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: âââââ âââââ T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: â{+} {!} {+}â T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: âââââ´ââââ ââââ⤠T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: +{+} {+} â T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: âââââââââ âââââ T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: [?] <*} [?] T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: âââââ T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: [?] <#> < . [?] T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: âââââ T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: [?] <*> [?] T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: âââââââââ âââââââââ T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: - - -!- < > -!- -!- T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: âââââââââ âââââââââ T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: â. .â T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: â â T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: Evil Imm Rumour frowns. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: i am using mush T3/r7/2015-04-26.txt.gz:{chan ch=tech}Askani Tech: -_- T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Do you have Dina font installed? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Legendary Gruagach Tech: I FEEL IT T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Also, there was no need to post the entire thing, haha. T3/r7/2015-04-26.txt.gz:{chan ch=tech}SirMixalot Tech: What the grok? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Roidrage Tech: im using windows 8 what fonts man T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Oh wait. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: It's not fonts at all. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Type maptype 0 T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Do you still have the issue when you do maptype 0? T3/r7/2015-04-26.txt.gz:{chan ch=tech}ShadowDragon Tech: now my map isnt showing up T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Wait, I was talking to Roidrage. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Oak Tender Arnica Tech: another problem solved T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: Arcidayne grins evilly at Oak Tender Arnica. T3/r7/2015-04-26.txt.gz:{chan ch=tech}ShadowDragon Tech: now my map is gone T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Well, the instructions weren't for you, were they? T3/r7/2015-04-26.txt.gz:{chan ch=tech}ShadowDragon Tech: were they? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Unless you're Roidrage... T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: Arcidayne is very confused now. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Did you rename in the middle of our conversation? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: I guess so... T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Okay, so your map isn't showing. T3/r7/2015-04-26.txt.gz:{chan ch=tech}ShadowDragon Tech: I cant see my map anymore T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: try maptype 1 T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Or don't, you know. Trying to help you out while I'm working. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: But I'll be happy to stop diagnosing your problem for my actual job. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: Does anyone currently track the GQ cycle order? T3/r7/2015-04-26.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: you can gq board notes if you want a history T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: Its hard to tell when the cycle starts/ends, though T3/r7/2015-04-26.txt.gz:{chan ch=tech}Post Order Anaristos Tech: gq history works T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: For example, a reboot will mess that up T3/r7/2015-04-26.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: hmm T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Eh, gq ranges is also a good tool. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: As long as you know the timers. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: 5 gqs left in this cycle. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: er... i'm interested in seeing what order GQs are called in a given cycle T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: that means tracking that order for complete cycles many times T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Ah. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Post Order Anaristos Tech: I am sure it is subject to stochiastic analysis :> T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Also, since there are 5 gqs left, you can count the remainder down on gq history to find the start. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: yeah, i want to model it probabilistically, but need to make sure its random first T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: otherwise not good :P T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: also T3/r7/2015-04-26.txt.gz:{chan ch=tech}Post Order Anaristos Tech: well, it's never ending, but the more samples you have the more you will converge :) T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: my gqs have been the last in the cycle for the last 2 cycles ive been online T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: which is very very unlucky T3/r7/2015-04-26.txt.gz:{chan ch=tech}Post Order Anaristos Tech: so one year from now your predictions will really accurate :) T3/r7/2015-04-26.txt.gz:{chan ch=tech}Elysian Tech: there is an ex-imm subroutine?! T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: er... will be pretty easy to tell if they're random or not T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: thats all i need to model the system T3/r7/2015-04-26.txt.gz:{chan ch=tech}Ullin Tech: if ISONLINE(Quadrapus) then SetLastinGQRange(GQRANGE(Quadrapus)) T3/r7/2015-04-26.txt.gz:{chan ch=tech}Post Order Anaristos Tech: well, randomness is just a different kind of order. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Post Order Anaristos Tech: besides you are not looking for what the next gq will be, but which within a narrow set. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: yeah T3/r7/2015-04-26.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: check ardstats on twitter for a history of ice age times T3/r7/2015-04-26.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: umm, @aardstats T3/r7/2015-04-26.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: then the first gq board note after that will be the start of a new cycle T3/r7/2015-04-26.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: count groups of 50 from there T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: oo T3/r7/2015-04-26.txt.gz:{chan ch=tech}Post Order Anaristos Tech: why not 48? T3/r7/2015-04-26.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: abe's logs have all the note posted info lines T3/r7/2015-04-26.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: aren't there 50 gqs per cycle? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Post Order Anaristos Tech: I thought it was 48, but I am just guessing. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Post Order Anaristos Tech: 50 seems odd, it would throw the symmetry away. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: There are 50. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Post Order Anaristos Tech: well, how about that :) T3/r7/2015-04-26.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: i think there used to be 48 T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: GQ ranges even says as much. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: There did. T3/r7/2015-04-26.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: two more were added a few years ago T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: But 200-201 was added separately. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Post Order Anaristos Tech: should read help files more :) T3/r7/2015-04-26.txt.gz:{chan ch=tech}Nothings Defines Tech: bah! reading. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Post Order Anaristos Tech: well, 50 makes it very interesting then. It means that the cycles will drift. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: What, that gives it... 3.04*10^64 different permutations of cycles... T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Or possible, anyway. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Ullin Tech: gq used to be also clan sponsored? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Ullin Tech: things you learn by reading help files T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: Imms used to be able to start GQs (not sure if they still can) T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: Which would also reset the cycle :P T3/r7/2015-04-26.txt.gz:{chan ch=tech}Dexter Tech: which was why imms held those at end of cycle. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Damn, Dexter got his name back. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Dexter Tech: (well, or atleast did for me, once or twice) T3/r7/2015-04-26.txt.gz:{chan ch=tech}Post Order Anaristos Tech: the name is a clerical error. I am sure it well be corrected in due time. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Dexter Tech: used to be fun to hold those during hour(s) of dbl exp and then pack range with exp area mobs T3/r7/2015-04-26.txt.gz:{chan ch=tech}Dexter Tech: plus put mobs like partroxis room 40+ and something else which would take a while T3/r7/2015-04-26.txt.gz:{chan ch=tech}Ullin Tech: what's the original name? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Post Order Anaristos Tech: hey, some docking glyphs have appeared on my mush windows, how do I get read of those? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Hold on a minute while I decal my whore. She loves them decals! T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: ... T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Disregard that message. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Legendary Gruagach Tech: i will try, but i dont think i can T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: If i have tags mapexits on, how do I see those tags T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: they aren't showing when I type exits, not sure what exits it is refering to T3/r7/2015-04-26.txt.gz:{chan ch=tech}Toxik TearNyne Tech: anyone know of a good/fair priced ssd location online? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Endymion Tech: i would go with amazon unless tigerdirect or newegg are >= $20 cheaper, i like prime 2 day shipping T3/r7/2015-04-26.txt.gz:{chan ch=tech}Useful Hadar Tech: I like newegg because their warehouse is like a 20 minute drive from me lol T3/r7/2015-04-26.txt.gz:{chan ch=tech}Endymion Tech: yeah if you're west coast newegg is great huh T3/r7/2015-04-26.txt.gz:{chan ch=tech}Toxik TearNyne Tech: Im central us T3/r7/2015-04-26.txt.gz:{chan ch=tech}Endymion Tech: any Frys near you? they have retail stores and online, sometimes great deals T3/r7/2015-04-26.txt.gz:{chan ch=tech}Useful Hadar Tech: anyways, my wireless card keeps randomly dropping, should i just get a new one, or are there things i can try to avoid buying a new one? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: new drivers, change settings T3/r7/2015-04-26.txt.gz:{chan ch=tech}Useful Hadar Tech: i checked for new drivers could not find any T3/r7/2015-04-26.txt.gz:{chan ch=tech}Endymion Tech: is there a way to add line break in 'mapper addnote' ? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Oak Tender Arnica Tech: I do not know, but did you try alt-enter T3/r7/2015-04-26.txt.gz:{chan ch=tech}Gorsk Tech: that won't help the bleed T3/r7/2015-04-26.txt.gz:{chan ch=tech}Endymion Tech: alt enter just dings on the input dialog T3/r7/2015-04-26.txt.gz:{chan ch=tech}Endymion Tech: i just wanted to add 3 separate lines in note T3/r7/2015-04-26.txt.gz:{chan ch=tech}Endymion Tech: bleed has a work around already T3/r7/2015-04-26.txt.gz:{chan ch=tech}Vespar Tech: one of my mini windows managed to go too high and now i cant grab it and move it T3/r7/2015-04-26.txt.gz:{chan ch=tech}Vespar Tech: is there a way for me to move it so it isnt stuck at the top of my screen T3/r7/2015-04-26.txt.gz:{chan ch=tech}Legendary Gruagach Tech: RIP screen region T3/r7/2015-04-26.txt.gz:{chan ch=tech}Legendary Gruagach Tech: j/k, some kinda gui reset T3/r7/2015-04-26.txt.gz:{chan ch=tech}Vespar Tech: lol whew :p how do i do that T3/r7/2015-04-26.txt.gz:{chan ch=tech}Mrs. Zoot Tech: xset reset gui! T3/r7/2015-04-26.txt.gz:{chan ch=tech}Nican Tech: If it's S&D it's xset reset gui T3/r7/2015-04-26.txt.gz:{chan ch=tech}Vespar Tech: so sick thank you T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: how can i send a carriage return with SendNoEcho() T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: SendNoEcho("") T3/r7/2015-04-26.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: "\n" ? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: dunno why you'd really do SendNoEcho, though...there's nothing to echo...just Send("") is fine for just sending a carriage return, it's what I used for the action of a 10-minute timer as an anti-idle, about the only use of sending a CR that I know of T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: sorry i meant a semi colon* T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: i have it set as my command stack character T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: sendnoecho doesnt recognize it as that i think T3/r7/2015-04-26.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: SendNoEcho shouldn't parse anything T3/r7/2015-04-26.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: oh, you mean you want it to separate? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: I want to SendNoEcho("run west T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: I want to SendNoEcho("run west;east") T3/r7/2015-04-26.txt.gz:{chan ch=tech}The Reaper Myrkul Tech: use separate SendNoEcho's T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: or just be able to send a speedwalk like that without it echoing T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: do you want it to end up sendingnoecho run west, then sendingnoecho east...or do you want it to literally send run west;east? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: you can embed newlines into the sendnoecho T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: SendNoEcho("run west\neast") would work, is what Abelinc is saying. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Endymion Tech: if you use first letter you can just do 'run we' T3/r7/2015-04-26.txt.gz:{chan ch=tech}Endymion Tech: not sure if that applies though I guess T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Not really, Endymion. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: where are you trying to do this, though? if in an alias or similar, you could just tick the checkbox for omit from output rather than using sendnoecho T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: I guess I'm wondering if sending two seperate commands has more lag than a command stack T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Why would it? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: The only lag that would be created is any you create. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: note that sending "e" 100 times gets you there at the same speed as "run 100e" T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: ok that was what i was wondering T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: vidblain is a great place to test stuff like that ;-) T3/r7/2015-04-26.txt.gz:{chan ch=tech}Ylar Tech: does it really not go any faster? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: you'll note that the mapper does not condense directions into runs, and instead sends individual commands T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: it does not, ylar...easy to test using "gtell start"...stack..."gtell end"...then gtell -h to see the times T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: if you turn on echocommands, it seems like "run 10e" is just a series of T3/r7/2015-04-26.txt.gz:{chan ch=tech}Ylar Tech: help file should be updated, lol >_< T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: what helpfile? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Quadrapus Tech: er... series of "e" T3/r7/2015-04-26.txt.gz:{chan ch=tech}Ylar Tech: "help run" T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Updated with what? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: ahh, yeah, third bullet point is wrong T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Ah, yes. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: Ylar nods. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Hasn't that been out of date for a long time, though? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: probably since v3 in 2008 T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Endymion Tech: so there's no difference between your client sending 10 directions, vs sending the mud a run command 1 time? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Right. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: correct endy T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: The MUD processes the commands at the same speed, client-sent or manually sent. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Endymion Tech: well lets say my ISP has a 500ms delay, then would the run command end up being faster than repeated comms? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: no T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: because your stacking isn't limited by your ISP's latency T3/r7/2015-04-26.txt.gz:{chan ch=tech}Ylar Tech: ^ T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: It's still based on MUD processing. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: your PC isn't waiting for the MUD to respond before sending commands 2-50 T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: Arcidayne nods at you in agreement. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Endymion Tech: aah ok, that makes sense then Abe T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: now if you were doing an autohunt which is trigger-based, then your latency would make a large difference T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Now, your client can limit the speed it sends command stacks, but that's usually a user-set configuration. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Endymion Tech: yep, gotcha T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: but just lobbing the command bomb over the wall doesn't care T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: But by default, sending e;w;n;w;n;e;n;w and sending run ewnwnenw, it's the same difference. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Or same thing, rather. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Cizra Tech: Really? What about maprun ETC? Showing room descs? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: truly, though, I suggest testing for yourself in vidblain T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: Arcidayne nods at you in agreement. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: again, those aren't waiting for round-trip delays T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: the MUD will spam you with all of the room descs (actually brief command will prevent most of the descs), but it'll be sent en masse T3/r7/2015-04-26.txt.gz:{chan ch=tech}Bishoujo Raded Tech: mapper lockexit thing looks to be calling a non-existant alias or something: T3/r7/2015-04-26.txt.gz:{chan ch=tech}Bishoujo Raded Tech: Reason: processing alias "" T3/r7/2015-04-26.txt.gz:{chan ch=tech}Bishoujo Raded Tech: [string "Plugin"]:3030: bad argument #1 to 'insert' (table expected, got nil) T3/r7/2015-04-26.txt.gz:{chan ch=tech}Bishoujo Raded Tech: that was with me a T4 level 162 with a level 201 lockexit. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: where at T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: is there a viable route which does not involve recall or a portal? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Bishoujo Raded Tech: no, not from where I was playing with it T3/r7/2015-04-26.txt.gz:{chan ch=tech}Bishoujo Raded Tech: I was going a mapper goto my clan hall T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: I'd try something which doesn't require one or the other, to take bounceportal and bouncerecall settings out of the equation T3/r7/2015-04-26.txt.gz:{chan ch=tech}Madcatz Tech: when do you get that error? After clicking OK in the exit lock menu? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Bishoujo Raded Tech: error comes up when executing a speedwalk whose shortest route hits the lockexit T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: when he tries to do mapper goto xxx which would otherwise try to use the locked exit T3/r7/2015-04-26.txt.gz:{chan ch=tech}Bishoujo Raded Tech: it does look like the portal/recall is a factor T3/r7/2015-04-26.txt.gz:{chan ch=tech}Bishoujo Raded Tech: if I try a mapper goto where it would just have me go 2s, it just rejects it saying no route, which it should T3/r7/2015-04-26.txt.gz:{chan ch=tech}Bishoujo Raded Tech: yeah any mapper goto route involving a portal where the level range is within my actual level and my tier level crashes the plugin T3/r7/2015-04-26.txt.gz:{chan ch=tech}Madcatz Tech: Do you have an old version? I'm not seeing an insert anywhere close to that line in the new version. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: thats why im never updaying! bwahaha. Unless we get a 3D mapper. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: updating, even T3/r7/2015-04-26.txt.gz:{chan ch=tech}Bishoujo Raded Tech: I'm sure I'm using an older version, but when I was playing with it in the past I tested it with the most up to date stuff T3/r7/2015-04-26.txt.gz:{chan ch=tech}Negader Tech: i feel the same as rauru, why fix that's not broken. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: tons of new features is why ;-) T3/r7/2015-04-26.txt.gz:{chan ch=tech}Bishoujo Raded Tech: I can send you the full error, but I don't really want to get fully into troubleshoot mode right now :p T3/r7/2015-04-26.txt.gz:{chan ch=tech}Madcatz Tech: Nods, np. just curiousity T3/r7/2015-04-26.txt.gz:{chan ch=tech}Madcatz Tech: and because stuff was broken, Negader :P T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: can send the error, as well as your bouncerecall and bounceportal settings, to Fiendish on github T3/r7/2015-04-26.txt.gz:{chan ch=tech}Negader Tech: until i run into the broken part, which i haven't discovered, not updating. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Madcatz Tech: 53 bug fixes, and 126 enchancements completed. And those are just the ones that had issues opened in github for them T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: I believe everything carried over from google T3/r7/2015-04-26.txt.gz:{chan ch=tech}Madcatz Tech: well, nods T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: if i have a lua array and want to iterate over some n element to the end, how would i do that? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: for i = 1, #tablename T3/r7/2015-04-26.txt.gz:{chan ch=tech}Rugrat Rauru Tech: thx T3/r7/2015-04-26.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Anyone her use my tracker channel plugin and on the latest version of mushclient? Any issues.... T3/r7/2015-04-26.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: HERE T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Well, besides me, of course. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: [Outlaw] Mendaloth crosses his arms and nods slowly and sagely to Arcidayne. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: heh, so when're you migrating over to github, mendy? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Or anyone NOT using it, but is using the latest version, care to install it real quick to test? T3/r7/2015-04-26.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: I don't know - before end of August? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Might be some TP involved for the first person who does. T3/r7/2015-04-26.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: I hate the non-incremental commit numbers....offends my OCD> T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: You grin evilly. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: could use bitbucket instead T3/r7/2015-04-26.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: I liked oracle for doing CPs.... T3/r7/2015-04-26.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Mis! T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: So the bug is Fiendish's fault. T3/r7/2015-04-26.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Arcidayne figured it out, StopEvaluatingTriggers(true) is a Mushclient uses in one of the stock plugins now - seems un-American to me, another plugin telling other plugins what to do! T3/r7/2015-04-26.txt.gz:{chan ch=tech}Legendary Gruagach Tech: is there a way to install bast 3 moon timer without installed all the extra stuff? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Yes. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Install only the moons miniwindow... T3/r7/2015-04-26.txt.gz:{chan ch=tech}Endymion Tech: it is standalone right T3/r7/2015-04-26.txt.gz:{chan ch=tech}Legendary Gruagach Tech: threw a bunch of errors, someone said i needed to install a bunch of crap T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: That someone lied. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: you should never need to install more than the plugin that you want...you should, however, have the entire Bast folder within the plugins folder T3/r7/2015-04-26.txt.gz:{chan ch=tech}Oak Tender Arnica Tech: Or were very poor T3/r7/2015-04-26.txt.gz:{chan ch=tech}Arcidayne Tech: Bast's plugins are standalones. If there's extra that NEEDS to be installed, it automatically does it. T3/r7/2015-04-26.txt.gz:{chan ch=tech}Oak Tender Arnica Tech: Or were very poorly informed T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: so they're not standalone as in "just put one xml file there and install", but they're self-contained in that, as long as the entire folder is there, installing an "end-user" plugin will install all prerequisites T3/r7/2015-04-26.txt.gz:{chan ch=tech}Oak Tender Arnica Tech: It will install all of its own dependencies, yes T3/r7/2015-04-26.txt.gz:{chan ch=tech}Legendary Gruagach Tech: alright thats what i did, i'll try it again..thx T3/r7/2015-04-26.txt.gz:{chan ch=tech}Oak Tender Arnica Tech: Report the errors if any, this time T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: grua: how old is your aard package and how old is your bast folder? T3/r7/2015-04-26.txt.gz:{chan ch=tech}Legendary Gruagach Tech: old, didnt have one <--ding ding ding T3/r7/2015-04-26.txt.gz:{chan ch=tech}Oak Tender Arnica Tech: all new is always best T3/r7/2015-04-26.txt.gz:{chan ch=tech}Tech: they should be kept roughly in sync T3/r7/2015-04-26.txt.gz:{chan ch=tech}Oak Tender Arnica Tech: Now that we are aon the subject, the Bast Moon Miniwin is one of my favorite plugins. But it constantly loses synch and disappears when I get disconnected or whatever. What is the right way to restore it? T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tech: I'd imagine just staying outdoors so that it sees the weather T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: It loses sync because it can't tell how many ticks have passed while you were disconnected. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tech: You nod at Arcidayne. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Oak Tender Arnica Tech: Yes, and the state file gets messed up T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: How so? T3/r7/2015-04-27.txt.gz:{chan ch=tech}Jurus Tech: would be nice if moon info can be inputted by user somehow, to estimate the 3 moons. and that info can be received from other users. the plug-in could make correction if it sees the moons first or if the input has errors. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Oak Tender Arnica Tech: So the window never appears on restart T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tech: that's something which is part of some other moon scripts, jurus T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: Used to be a zMUD script that would do moons refresh. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: Really, it's no problem adding it to Bast's plugin. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Jurus Tech: i don't code.. so problem for me. :( T3/r7/2015-04-27.txt.gz:{chan ch=tech}Oak Tender Arnica Tech: learn Lua, it is very simple to learn, no problem T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tech: just being online for a bit will quickly get it to know the status T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tech: most players don't need to know anything about the moons, though...it's not even important for most enchanting T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tech: Arcidayne nods at you in agreement. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: 3 moons is a placebo. :P T3/r7/2015-04-27.txt.gz:{chan ch=tech}Oak Tender Arnica Tech: Just interesting and fun T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tech: it's neat that the zmud script is just 15 lines (granted, one of those lines is 3,093 characters long) T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tech: Arcidayne snickers softly. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: Well, technically, with Lua, you can make it all one line. You can do print("This thing sucks") if a==b then print("We're equal!") else print("We're not twins!") end function phw() print("Hello, world!") end -- and it would all be parsed correctly. :p T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tech: yes, these were function-based lines... T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: But don't expect to be able to debug or read it properly. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tech: a trig for rising, a trig for falling, a trig for another player telling you the current moon status, 2 user aliases, 5 function aliases, 2 vars, class start and end, and a #stat (statusbar I'm guessing?) T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: Status bar is correct, yes. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Ayon Tech: anyone have experience with Mush sqlite? T3/r7/2015-04-27.txt.gz:{chan ch=tech}Ayon Tech: when I execute(with db:exec) an INSERT, it returns 0 (all good) but the record doesn't show up in the table? T3/r7/2015-04-27.txt.gz:{chan ch=tech}Ayon Tech: butdrink carafe T3/r7/2015-04-27.txt.gz:{chan ch=tech}Ayon Tech: mis T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: anyway to avoid infinite loop with speedwalks using wait breaker and mapper goto? ie it stacks action, wait, mapper goto 1, and mapper goto 2 getting into infinite T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: I really did not understand a word you just said. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Keldevar Tech: Well, I understand that he is having an issue with an infinite speedwalk loop. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: That's about all I got out of it, too. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: ok. for example : xyl. to get directly to rose ether from gardens we can use a cexit like... say gardens, wait(), mapper goto 455 T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: oh wait i got it! forgot second breaker T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tech: Keldevar beams a smile at Visionaire. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: nah :P getting same infinite loop T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: That's because you aren't doing it properly. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: so if i have cexit like that. but it tries to run to... room 456. what do we get? we get infinite loop T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: You don't put the mapper alias in it. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: why do you need a wait? T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: oh? T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: It drops you off in the same place each time, does it not? T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: beacuse after say gardens it drops you to random point? idk. i use wait to break 2 mapper gotos if i need T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: yes T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: not random T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: you enter each section of xyl at the same place each time. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: random it is not same room every time definitely. or cexit say gardens would suffice. but it doesnt. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: So instead, you just do 'say gardens;run swsw;pull rock' or whatever. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tech: Arcidayne sits down and thinks deeply. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: no. just tested. it drops to random room. 2 tries: 1: 461, 2: 469 T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: I've been going to xyl for years, I have a (cmud) custome exit, bofore gmcp I used the sw corner as the nominal entrace, after gcmp, I changed it to the actual entrance. Since the gardens are topologically a ball, it doesn't matter what room you choose as the entrance. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tech: Arcidayne sits down and thinks deeply. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: unless you use mapper goto. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: it really doesn't matter, but if you have the actual contact room, that's fine. There is only one way to get to the rock garden, so you can choose what room is the entry point. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: whatever way you choose to mark the entrance, it will be the same each time you enter. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: ok problem is - i use mapper goto 455. from anywhere in the mud. i want to get to that ether room. random drop point in gardens breaks speedwalk T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: wasnt so before i had portal to that gardens room though ( T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: you have the advantage of gcmp positioning, so I don't see how you can have a problem. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: so portal has some priority over cexits and essentially messes something.. its like extra cexit T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: because once client issues mapper goto speedwalk is set. it runs directions calculated beforehead. unless you do breakpoints T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: Essentially, Anaristos, he's trying to get the cexit to pause long enough to get the gmcp value, but you cannot use the plugin command for what he wants to do. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: if you treated portals and cexits the same way you wouldn't have a conflict :) T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: from the client's point of view they are the same. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: let me test T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: or at least that's how I handle them with cmud. I am not going to claim that for mush. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: though I don't understand your use of a timer... it doesn't make sense. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: use of timer - you cant stack 2 mapper gotos :P w/o timer T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: sorry for late answer still testing that. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: my point, the cexit is just part of the walking stream. you send it as run xxxx;cexit string;some more run xxxx T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: the only place I've ever needed at timing delay was in laby, before I found a better way, so I moved into the room that transported me,the client executed a #NOOP T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: this is my speedwalk from recall to the rock garden: run 8s2e2s15e;say gardens T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: Yes, but he wants from the gardens to Rose Ether. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: the rock is a at fixed location also. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: not from the gardens. from any room in the mud T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: that used to work before i had portal. now i have to understand portal handling T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: pretty sure it messes it up T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: you go through a tunnel, the same tunnel every time. You enter the rock garden in room 459 T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: if i could put a breakpoint like wait? let me try in in sql maybe T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: sorry, 466 T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: nod, they seem to be represented as cexits with start room * (any) and destination room T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: the rock is in room 456, so you want to go to the ether garden, you sws to 456 and lift rock T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: and stacking it in sql: portal name,wait(0.1) adds breakpoint T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: the portal is an alias, mush will execute whatever you configure to get the portal out of a bag, hold the portal, enter it and put it back in the bag, all those are mud commands that get send in the same stack along with the run commands, and they 'say gardens' (which you can treat as a portal) then you walk to room 456 and lift rock. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: you are now in the ether garden, without using the timer T3/r7/2015-04-27.txt.gz:{chan ch=tech}Post Order Anaristos Tech: you are sending the mud an complete speedwalk to the room, the only thing you worry client side showing yourself in the correct room on the map. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: well i still dont get a result. let me see T3/r7/2015-04-27.txt.gz:{chan ch=tech}Droer Tech: make another seperate cexit at the start room say gardens,mapper goto 455 should work T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: well. its the way it handles portals for sure. see its a cexit from anywhere * to specific room 472. i think, those cexits with * have top priority. it will mess any mapper goto they are a part of. hmm. ie stacking it is literally stacking * >(goes) 472, (472, say gardens, goes, mapper goto 455) goes 455. but its where our top prioriry cexit jumps in - withing string mapper goto 455... so it kicks infinite loop. it will use cexit *>472 as a part for mapper goto 455... meh something like that. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: on the other hand i can... use string of actions. let me try. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Droer Tech: sorry it will need the wait(.1) in there to work T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: it will work IF you have no portal added that leads directly to garends room. used to work for me T3/r7/2015-04-27.txt.gz:{chan ch=tech}Visionaire Tech: great... T3/r7/2015-04-27.txt.gz:{chan ch=tech}Bardis Tech: is there a way to see how many room I have mapped in a area in mushclient T3/r7/2015-04-27.txt.gz:{chan ch=tech}Rugrat Rauru Tech: mapper area %% T3/r7/2015-04-27.txt.gz:{chan ch=tech}Bardis Tech: thanks T3/r7/2015-04-27.txt.gz:{chan ch=tech}Hoid Tech: in there way to hide empty prompts after the line has been gagged by a plugin? T3/r7/2015-04-27.txt.gz:{chan ch=tech}A macabre Sonet Tech: anyone know a good resource for nginx commands? T3/r7/2015-04-27.txt.gz:{chan ch=tech}Ayon Tech: for the config file? T3/r7/2015-04-27.txt.gz:{chan ch=tech}Byzandula Tech: you mean like: http://nginx.org/en/docs/ T3/r7/2015-04-27.txt.gz:{chan ch=tech}Ayon Tech: I was gonna say, it's pretty extensive nah? T3/r7/2015-04-27.txt.gz:{chan ch=tech}A macabre Sonet Tech: I already had that one up, I was hoping something with a little more oganization and less confusing :) T3/r7/2015-04-27.txt.gz:{chan ch=tech}Ayon Tech: what are you trying to do? T3/r7/2015-04-27.txt.gz:{chan ch=tech}A macabre Sonet Tech: most of that is for either the config file or embedded scripting I was hoping for command line stuff T3/r7/2015-04-27.txt.gz:{chan ch=tech}A macabre Sonet Tech: I was trying to see if you could modify it on the fly with command line commands T3/r7/2015-04-27.txt.gz:{chan ch=tech}Ayon Tech: yeah, reload :) but nginx isn't awk, or gcc, as far as I know anyway, there's book, but it's mostly config stuff too... T3/r7/2015-04-27.txt.gz:{chan ch=tech}A macabre Sonet Tech: darn, oh well. T3/r7/2015-04-27.txt.gz:{chan ch=tech}A macabre Sonet Tech: thank you T3/r7/2015-04-27.txt.gz:{chan ch=tech}Ayon Tech: while I'm here, anyone have experience with Mush and sqlite3? T3/r7/2015-04-27.txt.gz:{chan ch=tech}A macabre Sonet Tech: yeah whats up T3/r7/2015-04-27.txt.gz:{chan ch=tech}Ayon Tech: my INSERTs aren't taking effect, even though db:exec returns ok, and when I manually run the insert it works fine T3/r7/2015-04-27.txt.gz:{chan ch=tech}Ayon Tech: I can query the db fine, but just inserting doesn't take...am I missing something? T3/r7/2015-04-27.txt.gz:{chan ch=tech}A macabre Sonet Tech: note the line to me so I can see it T3/r7/2015-04-27.txt.gz:{chan ch=tech}Ayon Tech: one sec T3/r7/2015-04-27.txt.gz:{chan ch=tech}Qbano Tech: Why cant my mapper find a path to Art of Melody? T3/r7/2015-04-27.txt.gz:{chan ch=tech}Mannec Tech: is there one from your current location? T3/r7/2015-04-27.txt.gz:{chan ch=tech}RangerLyze Tech: its in the city T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tormat Tech: there is a cexit you need to enter T3/r7/2015-04-27.txt.gz:{chan ch=tech}Nuanse Tech: have you set up cexit for it? T3/r7/2015-04-27.txt.gz:{chan ch=tech}Qbano Tech: ooh. no. where is that? T3/r7/2015-04-27.txt.gz:{chan ch=tech}Nuanse Tech: recall, runto melody T3/r7/2015-04-27.txt.gz:{chan ch=tech}Rugrat Rauru Tech: how do i pass a variable as a pattern in string.find? this isnt working as i thought it might string.find(variable1, variable2) T3/r7/2015-04-27.txt.gz:{chan ch=tech}In Order Anaristos Tech: string:find(lua_type_regex) T3/r7/2015-04-27.txt.gz:{chan ch=tech}In Order Anaristos Tech: where "string" is the string to be searched. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Rugrat Rauru Tech: heh thanks T3/r7/2015-04-27.txt.gz:{chan ch=tech}Vellius Tech: Is there a command of some kind to force the GMCP mapper to the center of the screen? Mine seems to have disappeared on my laptop, but shows up fine on my desktop. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Vellius Tech: The plugin is otherwise loaded, the window just doesn't seem to be visible. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Vellius Tech: And 'mapper show' isn't doing anything T3/r7/2015-04-27.txt.gz:{chan ch=tech}#YOLO Dolt Tech: you could reset all the standard miniwins with 'resetaard'. Not sure how to do just that one T3/r7/2015-04-27.txt.gz:{chan ch=tech}Vellius Tech: Huh, that seems to have done it T3/r7/2015-04-27.txt.gz:{chan ch=tech}Vellius Tech: THanks T3/r7/2015-04-27.txt.gz:{chan ch=tech}#YOLO Dolt Tech: np T3/r7/2015-04-27.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: tech has been busy today T3/r7/2015-04-27.txt.gz:{chan ch=tech}Tech: The Jerk Fiendish whistles appreciatively. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Rugrat Rauru Tech: what does an optional wildcard look like in "lua regex" T3/r7/2015-04-27.txt.gz:{chan ch=tech}In Order Anaristos Tech: what are you trying to parse? T3/r7/2015-04-27.txt.gz:{chan ch=tech}Rugrat Rauru Tech: i was using "." but it seems to have to match on something T3/r7/2015-04-27.txt.gz:{chan ch=tech}Endymion Tech: (.*?) T3/r7/2015-04-27.txt.gz:{chan ch=tech}Endymion Tech: or maybe not? T3/r7/2015-04-27.txt.gz:{chan ch=tech}In Order Anaristos Tech: the pattern is very closely related to C regex. If it works in C it will work with Lua. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Dzelgo Tech: (.*?) is a non-greedy version of (.*). (.*)? would match an optional string of any length. T3/r7/2015-04-27.txt.gz:{chan ch=tech}In Order Anaristos Tech: though, I don't think Lua supports lazy quantifiers, you can give them a try. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Dzelgo Tech: Although now that I think about it, (.*)? is superfluous, since .* matches a zero-length string, too. T3/r7/2015-04-27.txt.gz:{chan ch=tech}In Order Anaristos Tech: .* says, get anything you can from here until you run out of string. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Endymion Tech: yes without a space, (.*?) will work for optional second string T3/r7/2015-04-27.txt.gz:{chan ch=tech}Rugrat Rauru Tech: ok here is example. str = "Big Black Dragon" str:find(".Big.") won't return true. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Rugrat Rauru Tech: basically im trying to find substring T3/r7/2015-04-27.txt.gz:{chan ch=tech}Dzelgo Tech: Wouldn't str:find("Big") return true? T3/r7/2015-04-27.txt.gz:{chan ch=tech}Rugrat Rauru Tech: oh so its easier than i thought T3/r7/2015-04-27.txt.gz:{chan ch=tech}Dzelgo Tech: . matches exactly one character, .? matches optionally one character, and .* matches any number of characters, 0-inf if you need them. T3/r7/2015-04-27.txt.gz:{chan ch=tech}In Order Anaristos Tech: well, it doesn't return true, it returns the position where it found "Big" T3/r7/2015-04-27.txt.gz:{chan ch=tech}Rugrat Rauru Tech: long as it doesnt return nil or false im good T3/r7/2015-04-27.txt.gz:{chan ch=tech}In Order Anaristos Tech: you can do: if str:find("Big") then do something end, because a 1 is not nil. T3/r7/2015-04-27.txt.gz:{chan ch=tech}In Order Anaristos Tech: if str:find("Big") fails to find a match it will return nil. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: It returns false, not nil. T3/r7/2015-04-27.txt.gz:{chan ch=tech}In Order Anaristos Tech: test it T3/r7/2015-04-27.txt.gz:{chan ch=tech}In Order Anaristos Tech: string:find returns the position of the match. False is a boolean so it won't return that, if the match fails, it fails to return anything, so you get nil. T3/r7/2015-04-27.txt.gz:{chan ch=tech}Arcidayne Tech: Hmm. You're right. Could've sworn it returned 0, but just tried... T3/r7/2015-04-27.txt.gz:{chan ch=tech}In Order Anaristos Tech: ah, the problem is that 0 is a position also :) T3/r7/2015-04-28.txt.gz:{chan ch=tech}Your Daddy DjDoodles Tech: isn't it better to have a wired connection than be connected to a wireless? i moved my wire from the router to the modem and my connection seems to be horrible. (lag and disconnects) when I try to ping my pc it says i'm using wireless. argwtf! T3/r7/2015-04-28.txt.gz:{chan ch=tech}Arcidayne Tech: Wired is generally better, yes. T3/r7/2015-04-28.txt.gz:{chan ch=tech}Your Daddy DjDoodles Tech: does it matter if the wire is in a router or directly in the modem, performance wise? T3/r7/2015-04-28.txt.gz:{chan ch=tech}Your Daddy DjDoodles Tech: though it'd be better in the modem, but only seems worse T3/r7/2015-04-28.txt.gz:{chan ch=tech}Arcidayne Tech: It can, depending on the router. T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: you won't be behind a firewall if you are directly connecting to the modem T3/r7/2015-04-28.txt.gz:{chan ch=tech}Arcidayne Tech: For instance, with my router, if I'm wired to it, download/upload speeds are 20/2-3. Wired to modem, it's 100/30 or whatever. T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: your computer will hold the public ip address T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: really depends on your provider and what equipment you have.. but there isnt much of a performance difference.. you can try ping the router/modem from your machine and see T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: it will be under 1ms.. i would bet with both connected T3/r7/2015-04-28.txt.gz:{chan ch=tech}Your Daddy DjDoodles Tech: so being plugged to the modem is less secure and possibly slower? doesn't make sense as to why someone told me to do it then. T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: who is your isp T3/r7/2015-04-28.txt.gz:{chan ch=tech}Your Daddy DjDoodles Tech: my isp is frontier i believe T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: what modem do you have T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: westell 7500? T3/r7/2015-04-28.txt.gz:{chan ch=tech}Your Daddy DjDoodles Tech: frontier provided, i'd have to look at it. it might be uverse internet too actually T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: or netgear 7550 T3/r7/2015-04-28.txt.gz:{chan ch=tech}Your Daddy DjDoodles Tech: the router is netgear, know that much T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: normally those are modem/router combos T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: so you dont need the other router T3/r7/2015-04-28.txt.gz:{chan ch=tech}Your Daddy DjDoodles Tech: so unplug everything from the router and put it into the modem? what about firewalls etc like someone else mentioned? T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: so ya (router/modem combo) --> ethernet going into the computer (lan 1 or whatever its labeled) T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: on the back of the router it will say like port 1 or lan 1.. etc T3/r7/2015-04-28.txt.gz:{chan ch=tech}Your Daddy DjDoodles Tech: that's how its set up afaik T3/r7/2015-04-28.txt.gz:{chan ch=tech}Your Daddy DjDoodles Tech: the wire goes from my computer upstairs to the modem downstairs. it was in the router earlier. a friend suggested i put it in the modem, but was unclear as to why. T3/r7/2015-04-28.txt.gz:{chan ch=tech}Your Daddy DjDoodles Tech: he suggested it sunday night, just got around to it now, sacc'ing some sleep for this unfortunately. T3/r7/2015-04-28.txt.gz:{chan ch=tech}Your Daddy DjDoodles Tech: I guess my question is really, how can I make sure I'm using my wired connection.. and not using the wireless connection, for internet purposes on pc. I'm ok with needing to use wi-fi on my phone.. but why would the pc say it's using wireless when it has a wire? T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: you can hit windows key + r type ncpa.cpl T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: disable the wireless adaptor, by right clicking on it and disable T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: make sure local area connection 1 is enabled T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: and as long as you have a ethernet cable going from your computer to the back of your modem/router into LAN 1 or whatever its called you are good T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: you can also open up command prompt, windows key + r. cmd then in the black box type ipconfig /all T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: to make sure your adaptor is getting a local ip address T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: should be like 192.168.1.1 or 10.0.0.1 depending on the dhcp setup of your router T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: er..will now 192.168.1.1 more like 192.168.1.10 etc.. T3/r7/2015-04-28.txt.gz:{chan ch=tech}Veck Tech: not i mean T3/r7/2015-04-28.txt.gz:{chan ch=tech}Lakf Tech: How to flag a room with norecall and noportal? T3/r7/2015-04-28.txt.gz:{chan ch=tech}Zetkax Tech: without using a portal or "cast word"? T3/r7/2015-04-28.txt.gz:{chan ch=tech}Lakf Tech: Yes.. Its sort of time consuming this way :P T3/r7/2015-04-28.txt.gz:{chan ch=tech}Tech: try to go somewhere that would require recall or portal and iterate the trying... T3/r7/2015-04-28.txt.gz:{chan ch=tech}Tech: also try recon if you have it...I wrote my mapper to pay attention to room flags in recon, dunno if Fiendish put that into MUSH's T3/r7/2015-04-28.txt.gz:{chan ch=tech}Lakf Tech: It is not possible to set up an alias that execute something to flag the room? T3/r7/2015-04-28.txt.gz:{chan ch=tech}Madcatz Tech: The new version has it T3/r7/2015-04-28.txt.gz:{chan ch=tech}Madcatz Tech: as in, like, released 2 days ago T3/r7/2015-04-28.txt.gz:{chan ch=tech}Madcatz Tech: the alias, that is T3/r7/2015-04-28.txt.gz:{chan ch=tech}Lakf Tech: Really? I downloaded but did not installed it yet! T3/r7/2015-04-28.txt.gz:{chan ch=tech}Tech: oh nice, he did that for your feature request? T3/r7/2015-04-28.txt.gz:{chan ch=tech}Zetkax Tech: madcatz, what does it have? an alias or it ... nvm :) T3/r7/2015-04-28.txt.gz:{chan ch=tech}Madcatz Tech: for someone else's feature request after I reopened the bug, yeah :P T3/r7/2015-04-28.txt.gz:{chan ch=tech}Tech: heh, I was going to write a plugin that gave an alias, but when I saw your github request for it I didn't bother ;-) T3/r7/2015-04-28.txt.gz:{chan ch=tech}Lakf Tech: By new version you mean r1810? :p T3/r7/2015-04-28.txt.gz:{chan ch=tech}Lakf Tech: I found nothing on mapper help all.. Am I missing something? T3/r7/2015-04-28.txt.gz:{chan ch=tech}Nokfah Tech: did the alias for manually setting noportal/norecall actually make it to the main branch already? I thought I saw it still in the dev branch just yesterday. T3/r7/2015-04-28.txt.gz:{chan ch=tech}Lakf Tech: So.. Not implemented yet? :P T3/r7/2015-04-28.txt.gz:{chan ch=tech}Nokfah Tech: Yep, just checked. It is still only in the dev branch. T3/r7/2015-04-28.txt.gz:{chan ch=tech}Lakf Tech: Aw.. I'll continue to spam quest complete alias to flag areas :P T3/r7/2015-04-28.txt.gz:{chan ch=tech}Madcatz Tech: You could always help test the dev branch ;) T3/r7/2015-04-28.txt.gz:{chan ch=tech}Tech: Nokfah is agreeing with that Madcatz person again... T3/r7/2015-04-28.txt.gz:{chan ch=tech}Lakf Tech: I'm code illiterate :P T3/r7/2015-04-28.txt.gz:{chan ch=tech}Nokfah Tech: Don't need to code. Just try and break things :P T3/r7/2015-04-28.txt.gz:{chan ch=tech}Lakf Tech: I know how to break things :P Where do I get it? T3/r7/2015-04-28.txt.gz:{chan ch=tech}Madcatz Tech: go to the github page, click on branches, click on development, click on download zip T3/r7/2015-04-28.txt.gz:{chan ch=tech}Nokfah Tech: url: https://github.com/fiendish/aardwolfclientpackage/ T3/r7/2015-04-28.txt.gz:{chan ch=tech}Lakf Tech: 404 on dev :( T3/r7/2015-04-28.txt.gz:{chan ch=tech}Lakf Tech: Experiments works T3/r7/2015-04-28.txt.gz:{chan ch=tech}Madcatz Tech: https://github.com/fiendish/aardwolfclientpackage/tree/development T3/r7/2015-04-28.txt.gz:{chan ch=tech}Madcatz Tech: that page works for me T3/r7/2015-04-28.txt.gz:{chan ch=tech}Lakf Tech: Found it :) T3/r7/2015-04-28.txt.gz:{chan ch=tech}Lakf Tech: Neat! T3/r7/2015-04-28.txt.gz:{chan ch=tech}.... Hwuaijijal Tech: whats a real good hex editor? T3/r7/2015-04-28.txt.gz:{chan ch=tech}Nican Tech: Emacs T3/r7/2015-04-28.txt.gz:{chan ch=tech}Bishoujo Raded Tech: notepad T3/r7/2015-04-28.txt.gz:{chan ch=tech}.... Hwuaijijal Tech: not notepad T3/r7/2015-04-28.txt.gz:{chan ch=tech}.... Hwuaijijal Tech: jesus christ this emacs looks like boing 965 doin a cessna's job for me. T3/r7/2015-04-28.txt.gz:{chan ch=tech}Legendary Gruagach Tech: have aardmush, my main window isn't showing the game only my commands i type..did some login script fail? i logged in and out a few times still error T3/r7/2015-04-28.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: That happens when a plugin is capturing all and gagging. T3/r7/2015-04-28.txt.gz:{chan ch=tech}Legendary Gruagach Tech: i can see my chatwindow but my main box here where i play isnt the game, its just all my commands..i think maybe it failed indexing area levels T3/r7/2015-04-28.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Did you install something recently? Try reloading the offending plugin. T3/r7/2015-04-28.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: I know this because sometimes my plugins do this :) T3/r7/2015-04-28.txt.gz:{chan ch=tech}Legendary Gruagach Tech: no, just log out last night, log in today T3/r7/2015-04-28.txt.gz:{chan ch=tech}Legendary Gruagach Tech: lemmie look T3/r7/2015-04-28.txt.gz:{chan ch=tech}Madcatz Tech: It sounds like you're gagging everything T3/r7/2015-04-28.txt.gz:{chan ch=tech}Madcatz Tech: or rather, a plugin/script is T3/r7/2015-04-28.txt.gz:{chan ch=tech}Legendary Gruagach Tech: yah maybe T3/r7/2015-04-28.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: I agree with Madcatz! :P T3/r7/2015-04-28.txt.gz:{chan ch=tech}Madcatz Tech: try closing/reopening mush, not just logging in/out? T3/r7/2015-04-28.txt.gz:{chan ch=tech}Legendary Gruagach Tech: that sounds about right. where i play my game useally, it is just keeping every command i type T3/r7/2015-04-28.txt.gz:{chan ch=tech}Legendary Gruagach Tech: yah did that a few times T3/r7/2015-04-28.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: I think I've heard of that happening with S&D... T3/r7/2015-04-28.txt.gz:{chan ch=tech}Madcatz Tech: but yeah, probably some plugin, though. Can try going through the list in file->plugins, and hitting reinstall in each one T3/r7/2015-04-28.txt.gz:{chan ch=tech}Legendary Gruagach Tech: disabled everything, even my chat window..now i cant even see anything lolz T3/r7/2015-04-28.txt.gz:{chan ch=tech}Legendary Gruagach Tech: got back in.. this time fine..w/e technology.. T3/r7/2015-04-28.txt.gz:{chan ch=tech}Cirrus Tech: anyone remembers offhand what is the command for resetting miniwindow positions on aard mush? T3/r7/2015-04-28.txt.gz:{chan ch=tech}Tricksy Bamboo Tech: resetaard T3/r7/2015-04-28.txt.gz:{chan ch=tech}Cirrus Tech: thanks T3/r7/2015-04-29.txt.gz:{chan ch=tech}Endymion Tech: hmm my bast statmon just errored out on 1st level after tier T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: time to update T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: (maybe) T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: Your StopEvaluatingTrigger(true) in Channels broke Mendaloth's fake channel. T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I know. He told me. T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: Is there a reason to stop evaluating triggers on channel messages? T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: yes T3/r7/2015-04-29.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: if you want to circumvent it, set the plugin priority below -5000 T3/r7/2015-04-29.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: yours, not mine T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: What's the reason, though? T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: Yeah, did that when we figured out what the "bug" was. T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: http://mushclient.com/forum/bbshowpost.php?bbsubject_id=12790 T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: reason is posted in that thread T3/r7/2015-04-29.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: Thanks, I'll read it over. T3/r7/2015-04-29.txt.gz:{chan ch=tech}Rugrat Rauru Tech: If i used the development package and got an error from mapper, should i post it somewhere. T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: yes, to me. T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: on github T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: there's an issues link T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: Ah, makes sense. T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: I got an error on mapper goto once, but I didn't save it, and I haven't been able to reproduce it with the same room. It was weird, though. T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: Would no longer work for anything. T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: most plugin errors break the plugin until you reload it T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: I restarted MUSH, and it worked fine after that (even for the room I initially tried to go to) T3/r7/2015-04-29.txt.gz:{chan ch=tech}Tech: Arcidayne nods at The Jerk Fiendish. T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: no good way around that, I think T3/r7/2015-04-29.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: to clarify that forum thread, since the chat echo plugin uses gag+simulate to mask out channel tags from main output, if you write a world trigger that catches, say, the word "potato" and someone said potato in a channel, it would fire twice because your trigger would get there before I did. T3/r7/2015-04-29.txt.gz:{chan ch=tech}Tech: Arcidayne nods. T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: That's what I figured. T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: at least this way a person triggering on what they see will only trigger once unless they have special knowledge of the underlying mechanism T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: Good call on the negative sequencing, too. T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: yeah, I made sure to leave you room in the sequence to preempt me T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I never thought someone would actually make a fake channel though T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: no word from rauru yet. I wonder what the error was T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: Well, it's a nice thing, considering how many people spam gtell or even spouse with stat trackers. T3/r7/2015-04-29.txt.gz:{chan ch=tech}Rugrat Rauru Tech: I didn't save the error, and i went back to stable version. you could try to reproduce it from same room tho T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: What was the error? T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I don't necessarily need the error message. I do, however, need the error report T3/r7/2015-04-29.txt.gz:{chan ch=tech}Rugrat Rauru Tech: it was room 23640 in nyne. And i tried to run to home home from there. T3/r7/2015-04-29.txt.gz:{chan ch=tech}Rugrat Rauru Tech: using mapper i guess, said something about nil table T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: Yeah, that's the error I got when I attempted mapper goto once. T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: it happens. T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: Nil table, but I can't remember what the full error was. T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: this one will be difficult for me, though, because nyne is locked on test port. I wonder who I have to bribe to get around that T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: Yeah, and it's after-goal accessible only anyway. T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: in theory I could try to goto the room over there if the area weren't locked T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I see that room has an exit called "home" is that what you're talking about? T3/r7/2015-04-29.txt.gz:{chan ch=tech}Rugrat Rauru Tech: i reproduced it T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: It's part of the second goal, much like Wyrm's ability to home out of the circles. T3/r7/2015-04-29.txt.gz:{chan ch=tech}Rugrat Rauru Tech: http://pastebin.com/W2M8nvx9 T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: huh T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: what was your command that you typed? T3/r7/2015-04-29.txt.gz:{chan ch=tech}Rugrat Rauru Tech: mapper goto T3/r7/2015-04-29.txt.gz:{chan ch=tech}Arcidayne Tech: You have a cexit set up there? T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I mean, ok, what's your manor room id? T3/r7/2015-04-29.txt.gz:{chan ch=tech}Rugrat Rauru Tech: home is the cexit there to aylor, then home to manor T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I see T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: does mapper where do that same? T3/r7/2015-04-29.txt.gz:{chan ch=tech}Rugrat Rauru Tech: idk im back on stable version lol T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: oh hehe ok. well I appreciate the report. I can probably fix it with this info T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I guess I'm glad some people are trying out the development branch T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: fix committed T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: but how do you get into a room without having loaded it from the db? I guess I should figure out how that happened. T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: anyway https://raw.githubusercontent.com/fiendish/aardwolfclientpackage/35c94cea9943da4be6ad3fc8e17e7aaba8274925/MUSHclient/worlds/plugins/aard_GMCP_mapper.xml T3/r7/2015-04-29.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: hopefully that takes care of it T3/r7/2015-04-29.txt.gz:{chan ch=tech}Veck Tech: wierd, when using the gain monitor plugin, if i type gain report and press enter it doesnt work says there is nobody to train you but if i copy and paste gain report and hit enter it works T3/r7/2015-04-30.txt.gz:{chan ch=tech}Ayon Tech: does mush lua have a table to json method somewhere? T3/r7/2015-04-30.txt.gz:{chan ch=tech}ImmPressed Anaristos Tech: mush loads the lua json module T3/r7/2015-04-30.txt.gz:{chan ch=tech}Ayon Tech: sometimes I love mush, lua socket, lua json, it's got most things. T3/r7/2015-04-30.txt.gz:{chan ch=tech}Ayon Tech: how do I print text between two hyperlinks without a newline? T3/r7/2015-04-30.txt.gz:{chan ch=tech}Ayon Tech: in mushclient... T3/r7/2015-04-30.txt.gz:{chan ch=tech}Redryn Tech: hmmmm T3/r7/2015-04-30.txt.gz:{chan ch=tech}Redryn Tech: can't boot my desktop, get a blue screen. seems like hd failure of some sort :( T3/r7/2015-04-30.txt.gz:{chan ch=tech}Redryn Tech: what are the chances that a ssd drive has failed? T3/r7/2015-04-30.txt.gz:{chan ch=tech}Mr. Robbo Tech: Lower than mechanical, but it does happen. T3/r7/2015-04-30.txt.gz:{chan ch=tech}Cirrus Tech: SSD has a higher fail rate than HDD T3/r7/2015-04-30.txt.gz:{chan ch=tech}Toxik TearNyne Tech: dont tell me that I just got one today :P T3/r7/2015-04-30.txt.gz:{chan ch=tech}Cirrus Tech: some are made to be more long-lasting T3/r7/2015-04-30.txt.gz:{chan ch=tech}Cirrus Tech: with a premium price tag T3/r7/2015-04-30.txt.gz:{chan ch=tech}Rugrat Rauru Tech: how long do they last on average T3/r7/2015-04-30.txt.gz:{chan ch=tech}Cirrus Tech: but in general flash memory dies faster T3/r7/2015-04-30.txt.gz:{chan ch=tech}Cirrus Tech: usually it lasts for the warranty period T3/r7/2015-04-30.txt.gz:{chan ch=tech}Cirrus Tech: if im not wrong T3/r7/2015-04-30.txt.gz:{chan ch=tech}Redryn Tech: well it's only like 2 years old T3/r7/2015-04-30.txt.gz:{chan ch=tech}Redryn Tech: this is going to ruin my weekend T3/r7/2015-04-30.txt.gz:{chan ch=tech}Cirrus Tech: anyway, some brands will indicate the TBW (total bytes written) of the SSD T3/r7/2015-04-30.txt.gz:{chan ch=tech}Cirrus Tech: it represents the lifespan T3/r7/2015-04-30.txt.gz:{chan ch=tech}Redryn Tech: any way to confirm it's the broken hd? T3/r7/2015-04-30.txt.gz:{chan ch=tech}Cirrus Tech: i think there are tools to run tests T3/r7/2015-04-30.txt.gz:{chan ch=tech}Redryn Tech: ok it looks like it was something else T3/r7/2015-04-30.txt.gz:{chan ch=tech}Redryn Tech: i think an older hd... though how that affected my ssd is odd T3/r7/2015-04-30.txt.gz:{chan ch=tech}Tech: time to update the backups T3/r7/2015-04-30.txt.gz:{chan ch=tech}Tech: get thee to best buy and clone the sucker :-) T3/r7/2015-04-30.txt.gz:{chan ch=tech}Redryn Tech: could it be affected through the power cable? T3/r7/2015-04-30.txt.gz:{chan ch=tech}Tech: Redryn shrugs helplessly. T3/r7/2015-04-30.txt.gz:{chan ch=tech}Tech: if the power supply is supplying "bad" power, sure T3/r7/2015-04-30.txt.gz:{chan ch=tech}Redryn Tech: i disconnected sata cables to 2 other hds, left only SSD and it refused to boot T3/r7/2015-04-30.txt.gz:{chan ch=tech}Redryn Tech: disconnected power cables to other hds, switched MB sata port for SSD and it booted T3/r7/2015-04-30.txt.gz:{chan ch=tech}Redryn Tech: plugged back the other hds and it boots now T3/r7/2015-04-30.txt.gz:{chan ch=tech}Redryn Tech: though one of my other hds is no longer detected T3/r7/2015-04-30.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: what kind of computer is it? T3/r7/2015-04-30.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: is it a macbook? T3/r7/2015-04-30.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: oh, you said desktop T3/r7/2015-04-30.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: never mind T3/r7/2015-04-30.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: I know that many macbooks, for example, ship with marginal quality SATA cables that will cause a fast SSD to either have constant errors or fail to boot T3/r7/2015-04-30.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: installing an SSD also requires installing new sata cable for them T3/r7/2015-04-30.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: but I've not heard of it outside of macbooks T3/r7/2015-04-30.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: because it's actually a combination of the cable and particular chipset that controls the bus. maybe you have the same chip? T3/r7/2015-04-30.txt.gz:{chan ch=tech}The Jerk Fiendish Tech: Nvidia MCP79 T3/r7/2015-04-30.txt.gz:{chan ch=tech}Ayon Tech: whats a good way, from a plugin, to check to see if a user has connected and logged in? T3/r7/2015-04-30.txt.gz:{chan ch=tech}Tech: pcheck T3/r7/2015-04-30.txt.gz:{chan ch=tech}Tech: if you mean checking to see if some other player has logged in T3/r7/2015-04-30.txt.gz:{chan ch=tech}Ayon Tech: no, I am writing a plugin, and I want to run a command once I know the user is online, without knowing who the user is T3/r7/2015-04-30.txt.gz:{chan ch=tech}Tech: use the state from GMCP T3/r7/2015-04-30.txt.gz:{chan ch=tech}Tech: char.status.state = 3 T3/r7/2015-04-30.txt.gz:{chan ch=tech}Ayon Tech: thanks :) T3/r7/2015-04-30.txt.gz:{chan ch=tech}Hoid Tech: bast's minwin double is getting stuck at 29 sec remaining or around. any way to fix it? T3/r7/2015-04-30.txt.gz:{chan ch=tech}Mr. Dash Tech: just reload the plugin, probably. IIRC, that plugin works off of a trigger on the expire message, so if it parses differently in the window, it won't match. this can happen if the message coincides with a moons message or some other coincidentally timed message T3/r7/2015-04-30.txt.gz:{chan ch=tech}Hoid Tech: reloading the pluging fixes it..temporarily. hrm after workin few times it again gets stuck. T3/r7/2015-04-30.txt.gz:{chan ch=tech}Mr. Dash Tech: honestly, it is something bast has to deal with or there might not be an elegant solution(i'd probably do a little sanity check where the client checks 'double' output and clears the message if there is no current double) that he found T3/r7/2015-04-30.txt.gz:{chan ch=tech}Mr. Dash Tech: the plugin has to rely on the mud telling it when double ends as double is tied to ticks instead rather than a fixed 10 minutes. which is why he would need another method of checking if double is over to ensure the message clears. T3/r7/2015-04-30.txt.gz:{chan ch=tech}Hoid Tech: i suppose so. but these are way too complicated. i was thinking that maybe it can be fixed by clearing cache/ settings some how. anyway, thanks. T3/r7/2015-04-30.txt.gz:{chan ch=tech}Rugrat Rauru Tech: what does it do just show how much dbl there is? T3/r7/2015-04-30.txt.gz:{chan ch=tech}Hoid Tech: yes it shows in miniwindow time remaining in double T3/r7/2015-04-30.txt.gz:{chan ch=tech}Rugrat Rauru Tech: just use prompt for that T3/r7/2015-04-30.txt.gz:{chan ch=tech}Hoid Tech: it works most of the time, but lately seems getting stuck at 29 sec remaining. works few times after reloading it, then again gets stuck. T3/r7/2015-04-30.txt.gz:{chan ch=tech}Mr. Dash Tech: well, i already explained why it does that. it's a long-standing bug. the prompt option offers something more reliable, even if it isn't in a miniwindow T3/r7/2015-04-30.txt.gz:{chan ch=tech}Hoid Tech: hrm okies, thanks. T3/r7/2015-04-30.txt.gz:{chan ch=tech}Mr. Dash Tech: i also proposed a solution, but bast isn't around and you may not be up to the task of doing it yourself T3/r7/2015-04-30.txt.gz:{chan ch=tech}Tasty Tipro Tech: can I use my xbox one to get online and stream the nfl draft? T3/r7/2015-04-30.txt.gz:{chan ch=tech}Bardis Tech: in Cmud I had String list, what is that called in mush, table ? T3/r7/2015-04-30.txt.gz:{chan ch=tech}[Outlaw] Mendaloth Tech: Array or table T3/r7/2015-04-30.txt.gz:{chan ch=tech}Zombinynjah Tech: is it possible to set up a alias/trigger like get $* sat drink $* where &* is item?