├── .gitignore ├── ChatScript ├── RAWDATA │ └── YESBOT │ │ ├── controlscript.top │ │ ├── keywordless.top │ │ ├── prolog.top │ │ ├── testbot.top │ │ └── yesbottalk.top └── filesYesbot.txt ├── LICENSE ├── README.md ├── VERSION ├── config.pl ├── extensions ├── CHATSCRIPT README.MD ├── bot_control.pl ├── chatty.pl ├── dict.pl ├── emoticons.pl ├── google_search.pl ├── help.pl ├── isup.pl ├── link_shortener.pl ├── omdb.pl ├── output.pl ├── prolog_eval.pl ├── references.pl ├── ringer.pl ├── sarcasm.pl ├── submodules │ ├── README │ ├── docs.pl │ ├── emoticon_lib.pl │ ├── html.pl │ ├── references_kb.pl │ ├── utils.pl │ └── web.pl ├── swi_object_search.pl ├── sync_chat_log.pl ├── sync_messages.pl ├── wiki_search.pl └── yesbot_version.pl ├── pack_checker.pl ├── run.pl └── yesbot.pl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/.gitignore -------------------------------------------------------------------------------- /ChatScript/RAWDATA/YESBOT/controlscript.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/ChatScript/RAWDATA/YESBOT/controlscript.top -------------------------------------------------------------------------------- /ChatScript/RAWDATA/YESBOT/keywordless.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/ChatScript/RAWDATA/YESBOT/keywordless.top -------------------------------------------------------------------------------- /ChatScript/RAWDATA/YESBOT/prolog.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/ChatScript/RAWDATA/YESBOT/prolog.top -------------------------------------------------------------------------------- /ChatScript/RAWDATA/YESBOT/testbot.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/ChatScript/RAWDATA/YESBOT/testbot.top -------------------------------------------------------------------------------- /ChatScript/RAWDATA/YESBOT/yesbottalk.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/ChatScript/RAWDATA/YESBOT/yesbottalk.top -------------------------------------------------------------------------------- /ChatScript/filesYesbot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/ChatScript/filesYesbot.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.5.0 2 | -------------------------------------------------------------------------------- /config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/config.pl -------------------------------------------------------------------------------- /extensions/CHATSCRIPT README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/CHATSCRIPT README.MD -------------------------------------------------------------------------------- /extensions/bot_control.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/bot_control.pl -------------------------------------------------------------------------------- /extensions/chatty.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/chatty.pl -------------------------------------------------------------------------------- /extensions/dict.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/dict.pl -------------------------------------------------------------------------------- /extensions/emoticons.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/emoticons.pl -------------------------------------------------------------------------------- /extensions/google_search.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/google_search.pl -------------------------------------------------------------------------------- /extensions/help.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/help.pl -------------------------------------------------------------------------------- /extensions/isup.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/isup.pl -------------------------------------------------------------------------------- /extensions/link_shortener.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/link_shortener.pl -------------------------------------------------------------------------------- /extensions/omdb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/omdb.pl -------------------------------------------------------------------------------- /extensions/output.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/output.pl -------------------------------------------------------------------------------- /extensions/prolog_eval.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/prolog_eval.pl -------------------------------------------------------------------------------- /extensions/references.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/references.pl -------------------------------------------------------------------------------- /extensions/ringer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/ringer.pl -------------------------------------------------------------------------------- /extensions/sarcasm.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/sarcasm.pl -------------------------------------------------------------------------------- /extensions/submodules/README: -------------------------------------------------------------------------------- 1 | Add submodules for extension use in this directory. 2 | -------------------------------------------------------------------------------- /extensions/submodules/docs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/submodules/docs.pl -------------------------------------------------------------------------------- /extensions/submodules/emoticon_lib.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/submodules/emoticon_lib.pl -------------------------------------------------------------------------------- /extensions/submodules/html.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/submodules/html.pl -------------------------------------------------------------------------------- /extensions/submodules/references_kb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/submodules/references_kb.pl -------------------------------------------------------------------------------- /extensions/submodules/utils.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/submodules/utils.pl -------------------------------------------------------------------------------- /extensions/submodules/web.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/submodules/web.pl -------------------------------------------------------------------------------- /extensions/swi_object_search.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/swi_object_search.pl -------------------------------------------------------------------------------- /extensions/sync_chat_log.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/sync_chat_log.pl -------------------------------------------------------------------------------- /extensions/sync_messages.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/sync_messages.pl -------------------------------------------------------------------------------- /extensions/wiki_search.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/wiki_search.pl -------------------------------------------------------------------------------- /extensions/yesbot_version.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/extensions/yesbot_version.pl -------------------------------------------------------------------------------- /pack_checker.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/pack_checker.pl -------------------------------------------------------------------------------- /run.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/run.pl -------------------------------------------------------------------------------- /yesbot.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eazar001/yesbot/HEAD/yesbot.pl --------------------------------------------------------------------------------