Overview
Comment: | add ransul |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
77c9e366f80a48279bab2458f21ec852 |
User & Date: | lexi on 2018-11-11 10:26:00 |
Other Links: | manifest | tags |
Context
2018-11-11
| ||
10:28 | add readme check-in: 039a9ac75a user: lexi tags: trunk | |
10:26 | add ransul check-in: 77c9e366f8 user: lexi tags: trunk | |
10:19 | add ransul check-in: 9a711d8a06 user: lexi tags: trunk | |
Changes
Modified procbot.rb from [d6b2e06ea9] to [60898c7346].
1
2
3
4
5
6
7
8
9
10
11
...
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
|
#!/usr/bin/ruby
# encoding: UTF-8
require "cinch"
Bots = ["cclg", "sext", "sect", "order", "monster", "pharma", "argue","crime","drug","badbio","bottist","egret_txt", "babdio", "botsoc","dx"]
ShoutingMatch = /\b(MS\.|MS\s|SERGEANT\s|SGT\s|SGT\.)?\s*(SAMANTHA TAGGART|SAMANTHA TAGUE|SAMANTHA|SAM TAGUE|SAM TAGGART|SAMTAGUE|SAMMY|SAM|TAGUE|TAGGART)\b/
SmallMatch = /\b(ms\.|ms\s|sergeant\s|sgt\s|sgt\.)?\s*(samantha taggart|samantha tague|samantha|sam tague|sam taggart|samtague|sam|sammy|tague|taggart|(ね|)サム|(ね|)サムさん|(ね|)サムちゃん|سام|يا سام)\b/i
FormalQs = [
"How may I be of assistance",
"Yes",
"You rang",
"What can I do for you today",
................................................................................
elsif scancmd(x,["again", "make another", "do another", "tell another", "make us another", "encore", "more", "do that again", "once more" "one more time", "do it again", "play it again"])
if $lastcmd != "" then
return perform($lastcmd,user)
else
return nil
end
elsif bot=scancmd(x,
(mult((mult ["give","tell","make","invent","find","i want","we want","i'd like","we'd like","can i have","can we have","can i get","can we get","create","let's get","let's have","let's hear","lemme have","let me have"], [""," me", " us"]) +
["make up", "come up with","do","how about","maybe"], [""," a", " an", " a new", " another", " more", " some", " some more"])+
["more","another","a","a new","an","some"]).reverse)
# this is the worst thing i have ever done
# i am so sorry
case bot
when "crime", "crimes", "felony", "felonies"
return perform("crime",user)
when "word", "term", "weird word", "long word", "jargon", "obscure word",
"words", "terms", "weird words", "long words", "obscure words"
return perform("cclg",user)
when "monster", "beast", "monsters", "beasts"
return perform("monster",user)
when "drug", "drugs","street drug","street drugs"
return perform("drug",user)
when "pill", "pills", "pharmaceutical", "pharmaceuticals", "legal drug", "legal drugs"
return perform("pharma",user)
when "bad bio", "bad bios", "bad twitter bio", "bad twitter bios"
|
|
|
>
>
|
1
2
3
4
5
6
7
8
9
10
11
...
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
|
#!/usr/bin/ruby # encoding: UTF-8 require "cinch" Bots = ["cclg", "sext", "sect", "order", "monster", "pharma", "argue","crime","drug","badbio","bottist","egret_txt", "babdio", "botsoc","dx","ransul"] ShoutingMatch = /\b(MS\.|MS\s|SERGEANT\s|SGT\s|SGT\.)?\s*(SAMANTHA TAGGART|SAMANTHA TAGUE|SAMANTHA|SAM TAGUE|SAM TAGGART|SAMTAGUE|SAMMY|SAM|TAGUE|TAGGART)\b/ SmallMatch = /\b(ms\.|ms\s|sergeant\s|sgt\s|sgt\.)?\s*(samantha taggart|samantha tague|samantha|sam tague|sam taggart|samtague|sam|sammy|tague|taggart|(ね|)サム|(ね|)サムさん|(ね|)サムちゃん|سام|يا سام)\b/i FormalQs = [ "How may I be of assistance", "Yes", "You rang", "What can I do for you today", ................................................................................ elsif scancmd(x,["again", "make another", "do another", "tell another", "make us another", "encore", "more", "do that again", "once more" "one more time", "do it again", "play it again"]) if $lastcmd != "" then return perform($lastcmd,user) else return nil end elsif bot=scancmd(x, (mult((mult ["give","tell","make","invent","find","i want","we want","i'd like","we'd like","can i have","can we have","can i get","can we get","create","let's get","let's have","let's hear","lemme have","let me have", "ianim", "ianaste", "ianafte", "ianash"], [""," me", " us", "ani dasit", "anari dasit"]) + ["make up", "come up with","do","how about","maybe"], [""," a", " an", " a new", " another", " more", " some", " some more"])+ ["more","another","a","a new","an","some"]).reverse) # this is the worst thing i have ever done # i am so sorry case bot when "crime", "crimes", "felony", "felonies" return perform("crime",user) when "word", "term", "weird word", "long word", "jargon", "obscure word", "words", "terms", "weird words", "long words", "obscure words" return perform("cclg",user) when "rantash", "name", "ranuir name", "sul", "sula", "sul rani", "sula rani", "sul surini", "sula surini", "sul rantashi", "sula rantashi", "citizen", "comrade" return perform("ransul",user) when "monster", "beast", "monsters", "beasts" return perform("monster",user) when "drug", "drugs","street drug","street drugs" return perform("drug",user) when "pill", "pills", "pharmaceutical", "pharmaceuticals", "legal drug", "legal drugs" return perform("pharma",user) when "bad bio", "bad bios", "bad twitter bio", "bad twitter bios" |