Kaldonis
02-11-2014, 08:31 AM
Since Simu is so wonderful now and spamming us in game, I'm working on a simple squelching script. This is because Warlock FE does not have the ability to squelch. I was awaiting their "circulating" discussion, which turned out to be a pile of bullshit, so congrats Simu for finally getting me to write my own lich scripts to squelch propaganda.
I'm basing some of my work on the squelch script in the repo, which definitely has some clever aspects I wouldn't have known how to do. Although I've managed to squelch a test line, it's by using only a partial regex. The full line I want to squelch is
You can expand your locker by up to 600 extra item slots through acquiring a locker expansion contract.
I have to regex on the part before acquiring when I'm matching to the server_string. If I do a get match, I can match the whole text, but that seems less elegant (and also that way doesn't seem suitable for squelching...I want to return nil when I match the propaganda). Apparently acquiring is some kind of link or contains more than just the text, so how do I find out the raw data coming through the stream to inform the regex? Since I can already match the correct line, is there some way to spit out or save the raw stream? That'd be the tool I need here.
Yes, my question is somewhat academic since, as I said, I can succeed by just using the first part of the line. But assuming I can get a version of this script I'm satisfied with, it'll be the first program I upload to the repo, so I'd like to do it exactly right, and also understand more about the data stream and lich.
My next task, I think, will be to set up a database so users can add their own squelches. However, there should be plenty of examples for me to poke at before I need to ask for any help on that.
PS: Good script name? I'm thinking 'nospam' since 'squelch' is already taken
I'm basing some of my work on the squelch script in the repo, which definitely has some clever aspects I wouldn't have known how to do. Although I've managed to squelch a test line, it's by using only a partial regex. The full line I want to squelch is
You can expand your locker by up to 600 extra item slots through acquiring a locker expansion contract.
I have to regex on the part before acquiring when I'm matching to the server_string. If I do a get match, I can match the whole text, but that seems less elegant (and also that way doesn't seem suitable for squelching...I want to return nil when I match the propaganda). Apparently acquiring is some kind of link or contains more than just the text, so how do I find out the raw data coming through the stream to inform the regex? Since I can already match the correct line, is there some way to spit out or save the raw stream? That'd be the tool I need here.
Yes, my question is somewhat academic since, as I said, I can succeed by just using the first part of the line. But assuming I can get a version of this script I'm satisfied with, it'll be the first program I upload to the repo, so I'd like to do it exactly right, and also understand more about the data stream and lich.
My next task, I think, will be to set up a database so users can add their own squelches. However, there should be plenty of examples for me to poke at before I need to ask for any help on that.
PS: Good script name? I'm thinking 'nospam' since 'squelch' is already taken