Overview
Comment: | fix sam |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
44f5ce5d15df8471704ba0395223496e |
User & Date: | velartrill on 2018-11-20 20:52:09 |
Other Links: | manifest | tags |
Context
2018-11-20
| ||
21:02 | fix likelihood check-in: 574e682167 user: velartrill tags: trunk | |
20:52 | fix sam check-in: 44f5ce5d15 user: velartrill tags: trunk | |
20:40 | checkmate, athiests! check-in: 93b72b5a88 user: lexi tags: trunk | |
Changes
Modified procbot.rb from [89ca62b13c] to [0ff16ef99e].
1
2
3
4
5
6
7
8
...
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
|
#!/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\.|COMRADE\s|CITIZEN\s)?\s*(SAMANTHA TAGGART|SAMANTHA TAGUE|SAMANTHA|SAM TAGUE|SAM TAGGART|SAMTAGUE|SAMMY|SAM|TAGUE|TAGGART|FRIEND COMPUTER)\b/
SmallMatch = /\b(ms\.|ms\s|sergeant\s|sgt\s|sgt\.|comrade\s|citizen\s)?\s*(samantha taggart|samantha tague|samantha|sam tague|sam taggart|samtague|sam|sammy|tague|taggart|friend computer|(ね|)サム|(ね|)サムさん|(ね|)サムちゃん|سام|يا سام)\b/i
FormalQs = [
"How may I be of assistance",
................................................................................
else
result=perform(action,user)
r=""
if result != nil
result.chomp!
if formality != :friendly
r=affirmatives[formality].sample+" "
result[0] = result[0].upcase
result += "." if not result=~/\W$/
end
reply r+result.chomp
else
reply negatives[formality].sample
end
end
|
|
|
|
1
2
3
4
5
6
7
8
...
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
|
#!/usr/bin/env 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\.|COMRADE\s|CITIZEN\s)?\s*(SAMANTHA TAGGART|SAMANTHA TAGUE|SAMANTHA|SAM TAGUE|SAM TAGGART|SAMTAGUE|SAMMY|SAM|TAGUE|TAGGART|FRIEND COMPUTER)\b/ SmallMatch = /\b(ms\.|ms\s|sergeant\s|sgt\s|sgt\.|comrade\s|citizen\s)?\s*(samantha taggart|samantha tague|samantha|sam tague|sam taggart|samtague|sam|sammy|tague|taggart|friend computer|(ね|)サム|(ね|)サムさん|(ね|)サムちゃん|سام|يا سام)\b/i FormalQs = [ "How may I be of assistance", ................................................................................ else result=perform(action,user) r="" if result != nil result.chomp! if formality != :friendly r=affirmatives[formality].sample+" " result[0] = result[0].upcase if formality != :ranuir result += "." if not result=~/\W$/ end reply r+result.chomp else reply negatives[formality].sample end end |
Deleted test version [a7ffc6f8bf].