durp
This commit is contained in:
parent
be18980fa5
commit
1b667dadf1
17 changed files with 41 additions and 1 deletions
BIN
convo.pyc
BIN
convo.pyc
Binary file not shown.
|
@ -63,6 +63,8 @@ class pesterQuirk(object):
|
|||
return mo.expand(to)
|
||||
return re.sub(fr, regexprep, string)
|
||||
elif self.type == "random":
|
||||
if len(self.quirk["randomlist"]) == 0:
|
||||
return string
|
||||
fr = self.quirk["from"]
|
||||
if not first and len(fr) > 0 and fr[0] == "^":
|
||||
return string
|
||||
|
|
BIN
dataobjs.pyc
BIN
dataobjs.pyc
Binary file not shown.
BIN
generic.pyc
BIN
generic.pyc
Binary file not shown.
BIN
irc.pyc
BIN
irc.pyc
Binary file not shown.
BIN
memos.pyc
BIN
memos.pyc
Binary file not shown.
BIN
menus.pyc
BIN
menus.pyc
Binary file not shown.
BIN
mispeller.pyc
BIN
mispeller.pyc
Binary file not shown.
Binary file not shown.
BIN
oyoyo/client.pyc
BIN
oyoyo/client.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
oyoyo/parse.pyc
BIN
oyoyo/parse.pyc
Binary file not shown.
BIN
parsetools.pyc
BIN
parsetools.pyc
Binary file not shown.
|
@ -1 +1 @@
|
|||
{"color": "#ff00ff", "theme": "pesterchum", "quirks": [], "handle": "ghostDunk"}
|
||||
{"color": "#ff00ff", "theme": "pesterchum", "quirks": [{"type": "random", "from": "\\s", "randomlist": [" ribbit ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " "]}], "handle": "ghostDunk"}
|
38
readme.txt
38
readme.txt
|
@ -43,6 +43,16 @@ link you can just click and follow. No more copy/paste.
|
|||
- Smilies. We've added about 30-40 smilies from the forums. There is a
|
||||
list later on in this readme.
|
||||
|
||||
DOCUMENTATION
|
||||
-------------
|
||||
|
||||
BASIC PESTERING
|
||||
---------------
|
||||
To begin pestering, first click the "ADD CHUM" button and type in
|
||||
their pester handle. The handle must be all lower case except for one
|
||||
capital letter. Once you've added that person, they will appear on
|
||||
your chumroll. You can double click to begin pestering them
|
||||
|
||||
MEMOS
|
||||
-----
|
||||
One of the most interesting features to make was the memos, and make
|
||||
|
@ -320,6 +330,34 @@ one after the other! This is a bug in my opinion, that I plan to fix!
|
|||
|
||||
Random replace:
|
||||
|
||||
Just like the regexp replace, except that instead of just one thing to
|
||||
replace it with, you give it a list. PC will then choose from that
|
||||
list randomly. So let's say I want to randomly end my sentences with
|
||||
either "bro" or "dog":
|
||||
|
||||
Regexp: "$" Replace with: "bro" and "dog"
|
||||
|
||||
You can also imitate Araida's random "ribbits" in between words:
|
||||
|
||||
Regexp: "\s" Replace with: " ribbit ", " ", " ", " ", " ", " ", etc....
|
||||
|
||||
where " " is just a blank space added a bunch of times. (You can see
|
||||
how many blank spaces you've added by clicking on the list.) You have
|
||||
to add the spaces because each entry has the same chance of being
|
||||
selected. (Yes, I know this could be improved.) If you add " ribbit "
|
||||
and 9 spaces, " ribbit " will have a 1/10 chance of being picked.
|
||||
|
||||
Also note that if you add more than one prefix or more than one
|
||||
suffix, it will pick randomly from them instead of adding them both!
|
||||
|
||||
Mispeller:
|
||||
|
||||
Be careful with thsi one. The mispeller will randomly mispell x% of
|
||||
the words you type -- where x is the percentage you set the slider
|
||||
to. I have attempted to mimic SBaHJ mispelling style but whoof knows
|
||||
what will happen oh god ive created a mosnter
|
||||
|
||||
|
||||
SMILIES
|
||||
-------
|
||||
Here's a list of smilies:
|
||||
|
|
Loading…
Reference in a new issue