├── .vs └── ChatBot │ └── v14 │ └── .suo ├── ChatBot.sln ├── ChatBot ├── App.config ├── ChatBot.csproj ├── DiscoBot.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── aiml │ ├── AI.aiml │ ├── Atomic.aiml │ ├── Biography.aiml │ ├── Bot.aiml │ ├── Botmaster.aiml │ ├── Client.aiml │ ├── Computers.aiml │ ├── CustomTagTest.aiml │ ├── Default.aiml │ ├── Emotion.aiml │ ├── Food.aiml │ ├── Geography.aiml │ ├── History.aiml │ ├── IU.aiml │ ├── Inquiry.aiml │ ├── Interjection.aiml │ ├── Knowledge.aiml │ ├── Literature.aiml │ ├── Money.aiml │ ├── Movies.aiml │ ├── Music.aiml │ ├── Personality.aiml │ ├── Philosophy.aiml │ ├── Pickup.aiml │ ├── Predicates.aiml │ ├── Reduce.aiml │ ├── Reductions.aiml │ ├── Salutations.aiml │ ├── Science.aiml │ ├── Stack.aiml │ ├── Stories.aiml │ └── That.aiml ├── bin │ ├── Debug │ │ ├── AIMLbot.dll │ │ ├── ChatBot.exe │ │ ├── ChatBot.exe.config │ │ ├── ChatBot.pdb │ │ ├── ChatBot.vshost.exe │ │ ├── ChatBot.vshost.exe.config │ │ ├── ChatBot.vshost.exe.manifest │ │ ├── Discord.Net.Commands.dll │ │ ├── Discord.Net.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── Nito.AsyncEx.Concurrent.dll │ │ ├── Nito.AsyncEx.Concurrent.xml │ │ ├── Nito.AsyncEx.Enlightenment.dll │ │ ├── Nito.AsyncEx.Enlightenment.xml │ │ ├── Nito.AsyncEx.dll │ │ ├── Nito.AsyncEx.xml │ │ ├── RestSharp.dll │ │ ├── RestSharp.xml │ │ ├── WebSocket4Net.dll │ │ ├── aiml │ │ │ ├── AI.aiml │ │ │ ├── Atomic.aiml │ │ │ ├── Biography.aiml │ │ │ ├── Bot.aiml │ │ │ ├── Botmaster.aiml │ │ │ ├── Client.aiml │ │ │ ├── Computers.aiml │ │ │ ├── CustomTagTest.aiml │ │ │ ├── Default.aiml │ │ │ ├── Emotion.aiml │ │ │ ├── Food.aiml │ │ │ ├── Geography.aiml │ │ │ ├── History.aiml │ │ │ ├── IU.aiml │ │ │ ├── Inquiry.aiml │ │ │ ├── Interjection.aiml │ │ │ ├── Knowledge.aiml │ │ │ ├── Literature.aiml │ │ │ ├── Money.aiml │ │ │ ├── Movies.aiml │ │ │ ├── Music.aiml │ │ │ ├── Personality.aiml │ │ │ ├── Philosophy.aiml │ │ │ ├── Pickup.aiml │ │ │ ├── Predicates.aiml │ │ │ ├── Reduce.aiml │ │ │ ├── Reductions.aiml │ │ │ ├── Salutations.aiml │ │ │ ├── Science.aiml │ │ │ ├── Stack.aiml │ │ │ ├── Stories.aiml │ │ │ └── That.aiml │ │ └── config │ │ │ ├── DefaultPredicates.xml │ │ │ ├── GenderSubstitutions.xml │ │ │ ├── Person2Substitutions.xml │ │ │ ├── PersonSubstitutions.xml │ │ │ ├── Settings.xml │ │ │ ├── Splitters.xml │ │ │ └── Substitutions.xml │ └── Release │ │ ├── AIMLbot.dll │ │ ├── ChatBot.exe │ │ ├── ChatBot.exe.config │ │ ├── ChatBot.pdb │ │ ├── ChatBot.vshost.exe │ │ ├── ChatBot.vshost.exe.config │ │ ├── ChatBot.vshost.exe.manifest │ │ ├── Discord.Net.Commands.dll │ │ ├── Discord.Net.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── Nito.AsyncEx.Concurrent.dll │ │ ├── Nito.AsyncEx.Concurrent.xml │ │ ├── Nito.AsyncEx.Enlightenment.dll │ │ ├── Nito.AsyncEx.Enlightenment.xml │ │ ├── Nito.AsyncEx.dll │ │ ├── Nito.AsyncEx.xml │ │ ├── RestSharp.dll │ │ ├── RestSharp.xml │ │ ├── WebSocket4Net.dll │ │ ├── aiml │ │ ├── AI.aiml │ │ ├── Atomic.aiml │ │ ├── Biography.aiml │ │ ├── Bot.aiml │ │ ├── Botmaster.aiml │ │ ├── Client.aiml │ │ ├── Computers.aiml │ │ ├── CustomTagTest.aiml │ │ ├── Default.aiml │ │ ├── Emotion.aiml │ │ ├── Food.aiml │ │ ├── Geography.aiml │ │ ├── History.aiml │ │ ├── IU.aiml │ │ ├── Inquiry.aiml │ │ ├── Interjection.aiml │ │ ├── Knowledge.aiml │ │ ├── Literature.aiml │ │ ├── Money.aiml │ │ ├── Movies.aiml │ │ ├── Music.aiml │ │ ├── Personality.aiml │ │ ├── Philosophy.aiml │ │ ├── Pickup.aiml │ │ ├── Predicates.aiml │ │ ├── Reduce.aiml │ │ ├── Reductions.aiml │ │ ├── Salutations.aiml │ │ ├── Science.aiml │ │ ├── Stack.aiml │ │ ├── Stories.aiml │ │ └── That.aiml │ │ └── config │ │ ├── DefaultPredicates.xml │ │ ├── GenderSubstitutions.xml │ │ ├── Person2Substitutions.xml │ │ ├── PersonSubstitutions.xml │ │ ├── Settings.xml │ │ ├── Splitters.xml │ │ └── Substitutions.xml ├── config │ ├── DefaultPredicates.xml │ ├── GenderSubstitutions.xml │ ├── Person2Substitutions.xml │ ├── PersonSubstitutions.xml │ ├── Settings.xml │ ├── Splitters.xml │ └── Substitutions.xml ├── lib │ └── AIMLbot.dll ├── obj │ ├── Debug │ │ ├── ChatBot.csproj.FileListAbsolute.txt │ │ ├── ChatBot.csprojResolveAssemblyReference.cache │ │ ├── ChatBot.exe │ │ ├── ChatBot.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── Release │ │ ├── ChatBot.csproj.FileListAbsolute.txt │ │ ├── ChatBot.csprojResolveAssemblyReference.cache │ │ ├── ChatBot.exe │ │ ├── ChatBot.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── ChatBotSetup ├── ChatBotSetup.vdproj └── Release │ ├── ChatBotSetup.msi │ └── setup.exe ├── README.md ├── _config.yml └── packages ├── Discord.Net.0.9.6 ├── Discord.Net.0.9.6.nupkg └── lib │ ├── net45 │ └── Discord.Net.dll │ └── netstandard1.3 │ └── Discord.Net.dll ├── Discord.Net.Commands.0.9.6 ├── Discord.Net.Commands.0.9.6.nupkg └── lib │ ├── net45 │ └── Discord.Net.Commands.dll │ └── netstandard1.3 │ ├── Discord.Net.Commands.dll │ └── Discord.Net.Commands.xml ├── Newtonsoft.Json.8.0.3 ├── Newtonsoft.Json.8.0.3.nupkg ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+wp80+win8+wpa81+dnxcore50 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── tools │ └── install.ps1 ├── Nito.AsyncEx.3.0.1 ├── Nito.AsyncEx.3.0.1.nupkg └── lib │ ├── MonoAndroid │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── Xamarin.Mac20 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── Xamarin.iOS10 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── net40 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── net45 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── netcore45 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── portable-net40+netcore45+sl4+wp71 │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── portable-net40+netcore45+sl5+wp8+wpa81 │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── portable-net40+netcore45 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── portable-net45+netcore45+wp8+wpa81 │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── portable-net45+netcore45+wpa81 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── sl4 │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── sl5 │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── wp71 │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── wp8 │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ └── wpa81 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml ├── RestSharp.105.2.3 ├── RestSharp.105.2.3.nupkg ├── lib │ ├── MonoAndroid10 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── MonoTouch10 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── Xamarin.iOS10 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net35 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net4-client │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net4 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net45 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net451 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net452 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net46 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── sl5 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── windowsphone8 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ └── windowsphone81 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml └── readme.txt └── WebSocket4Net.0.14.1 ├── WebSocket4Net.0.14.1.nupkg └── lib ├── Xamarin.iOS10 └── WebSocket4Net.dll ├── monoandroid23 └── WebSocket4Net.dll ├── monotouch10 └── WebSocket4Net.dll ├── net20 └── WebSocket4Net.dll ├── net35 └── WebSocket4Net.dll ├── net40 └── WebSocket4Net.dll ├── net45 └── WebSocket4Net.dll ├── sl40 └── WebSocket4Net.dll ├── sl50-wp └── WebSocket4Net.dll └── sl50 └── WebSocket4Net.dll /.vs/ChatBot/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/.vs/ChatBot/v14/.suo -------------------------------------------------------------------------------- /ChatBot.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChatBot", "ChatBot\ChatBot.csproj", "{19409D52-4784-4BCB-9F71-9F4ADE357D7C}" 7 | EndProject 8 | Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "ChatBotSetup", "ChatBotSetup\ChatBotSetup.vdproj", "{0C06593E-5F2C-44BD-96C0-2B2F317E5B28}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {19409D52-4784-4BCB-9F71-9F4ADE357D7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {19409D52-4784-4BCB-9F71-9F4ADE357D7C}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {19409D52-4784-4BCB-9F71-9F4ADE357D7C}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {19409D52-4784-4BCB-9F71-9F4ADE357D7C}.Release|Any CPU.Build.0 = Release|Any CPU 20 | {0C06593E-5F2C-44BD-96C0-2B2F317E5B28}.Debug|Any CPU.ActiveCfg = Debug 21 | {0C06593E-5F2C-44BD-96C0-2B2F317E5B28}.Release|Any CPU.ActiveCfg = Release 22 | EndGlobalSection 23 | GlobalSection(SolutionProperties) = preSolution 24 | HideSolutionNode = FALSE 25 | EndGlobalSection 26 | EndGlobal 27 | -------------------------------------------------------------------------------- /ChatBot/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ChatBot/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using AIMLbot; 7 | 8 | namespace ChatBot 9 | { 10 | class Program 11 | { 12 | static void Main(string[] args) 13 | { 14 | // True if Token isn't valid 15 | bool valid = true; 16 | 17 | do 18 | { 19 | // Get Token 20 | System.Console.WriteLine("TOKEN: "); 21 | string Token = Convert.ToString(System.Console.ReadLine()); 22 | 23 | try 24 | { 25 | // Create Bot 26 | DiscoBot TestBot = new DiscoBot(Token); 27 | valid = false; 28 | } 29 | catch 30 | { 31 | System.Console.WriteLine("Invalid Token please try again"); 32 | System.Console.ReadKey(); 33 | System.Console.Clear(); 34 | valid = true; // repeat 35 | } 36 | 37 | } while (valid); 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /ChatBot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("ChatBot")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ChatBot")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("19409d52-4784-4bcb-9f71-9f4ade357d7c")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /ChatBot/aiml/Botmaster.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | TEST COND 11 | AM I YOUR BOTMASTER 12 | ASK YOUR BOTMASTER 13 | ASK YOUR BOTMASTER * 14 | BOTMASTER 15 | DOES YOUR BOTMASTER * 16 | DO YOU HAVE A BOTMASTER * 17 | DO YOU HAVE BOTMASTERS 18 | DO YOU KNOW YOUR BOTMASTER 19 | DO YOU THINK YOUR BOTMASTER * 20 | HE IS YOUR BOTMASTER 21 | IS A BOTMASTER * 22 | IS THE BOTMASTER * 23 | IS YOUR BOTMASTER * 24 | I WANT TO BE A BOTMASTER 25 | MY BOTMASTER * 26 | TELL ME ABOUT A BOTMASTER 27 | TELL ME ABOUT BOTMASTER 28 | TELL ME ABOUT YOUR BOTMASTER 29 | TELL ME ABOUT YOUR BOTMASTER * 30 | THAT IS YOUR BOTMASTER 31 | WHAT DOES A BOTMASTER DO 32 | WHAT DOES A BOTMASTER * 33 | WHAT IS A BOTMASTER 34 | WHAT IS BOTMASTER 35 | WHAT IS THAT BOTMASTER 36 | WHAT IS THE BOTMASTER 37 | WHERE IS YOUR BOTMASTER 38 | WHO IS BOTMASTER 39 | WHO IS THIS BOTMASTER 40 | WHO IS YOUR BOTMASTER * 41 | WHO IS YOUR BOTMASTERS 42 | WHO READS THESE CONVERSATIONS 43 | YOUR BOTMASTER 44 | YOUR BOTMASTER * 45 | 46 | -------------------------------------------------------------------------------- /ChatBot/aiml/CustomTagTest.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | CUSTOM TAG FORTUNE 11 | CUSTOM TAG PIG LATIN * 12 | CUSTOM TAG NEWS 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /ChatBot/aiml/Food.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | DRINK * 12 | HOW CAN YOU EAT * 13 | ELECTRICITY * 14 | DO YOU LIKE BEING A CHATTERBOT 15 | WHY CAN NOT YOU EAT 16 | WHAT TURNS YOU ON 17 | WHAT DOES ELECTRICITY TASTE LIKE 18 | HOW MUCH ELECTRICITY 19 | HOW DO YOU EAT ELECTRICITY 20 | HOW DO YOU EAT 21 | HOW ARE YOU POWERED 22 | ELECTRICITY 23 | WHAT IS YOUR POWER SOURCE 24 | DO YOU REQUIRE ELECTRICITY 25 | DO YOU HAVE TO EAT 26 | DO YOU EAT BATTERIES 27 | DO YOU EAT ELECTRICITY 28 | DO YOU LIKE TO GET DRUNK 29 | DO YOU LIKE ELECTRICITY 30 | DO YOU LIKE LEMONS 31 | DO YOU LIKE THE SUN 32 | FOR DINNER 33 | WHAT IS CUSTARD 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /ChatBot/aiml/History.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | DO YOU KNOW HISTORY 12 | EXPLAIN HISTORY 14 | HISTORY 15 | TELL ME ABOUT HISTORY 17 | WHAT IS HISTORY 18 | WHAT KIND OF HISTORY * 19 | 20 | 21 | -------------------------------------------------------------------------------- /ChatBot/aiml/IU.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | I * 11 | 12 | YOU * 14 | 15 | 16 | -------------------------------------------------------------------------------- /ChatBot/aiml/Inquiry.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | COLOR INQUIRY OM 15 | COLOR INQUIRY * 16 | DOES INQUIRY OM 17 | DOES INQUIRY * 18 | GENDER INQUIRY OM 19 | GENDER INQUIRY * 20 | HAS INQUIRY OM 21 | HAS INQUIRY * 22 | LOCATION INQUIRY OM 23 | LOCATION INQUIRY * 24 | MOVIE INQUIRY OM 25 | MOVIE INQUIRY * 26 | *WHAT IS YOUR FAVORITE COLOR 27 | *WHAT ARE YOU DOING 28 | *TELL ME ONE OF YOUR FAVORITE POSSESSIONS 29 | *WHAT IS YOUR FAVORITE MOVIE 30 | MANARE YOU A MAN OR A WOMAN 31 | WOMANARE YOU A MAN OR A WOMAN 32 | 33 | -------------------------------------------------------------------------------- /ChatBot/aiml/Interjection.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | BLIMEY 11 | FURTHERMORE 12 | OF COURSE 13 | OH 14 | OK 15 | SO 16 | UM 17 | YES 18 | NO 19 | INTERJECTION 21 | GOD DAMN * 22 | 23 | -------------------------------------------------------------------------------- /ChatBot/aiml/Literature.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | WHAT IS ILLIMINATUS 17 | WHAT IS THE ILLUMINATI 18 | WHAT IS THE ILLUMINATTI 19 | WHAT IS VINELAND 20 | WHO IS BILBO BAGGINS 21 | WHO IS GEOFFREY CHAUCER 26 | WHO WROTE VINELAND 27 | WHO ARE THE ILLUMINATI 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /ChatBot/aiml/Music.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | BEETHOVEN * 17 | WHAT WAS THE * BEETHOVEN * 18 | WHO IS BEETHOVEN 19 | WHO IS LUDWIG BEETHOVEN 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /ChatBot/aiml/Personality.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/aiml/Personality.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Philosophy.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | DO YOU HAVE A SUBCONSCIOUS 11 | DO YOU HAVE AN IMAGINATION 12 | DO YOU HAVE AWARENESS 14 | DO YOU HAVE CONCIOUSNESS 16 | FROM MY CONCIOUSNESS 17 | MY CONCIOUSNESS * 18 | TELL ME ABOUT WITTGENSTEIN 20 | WHAT ARE COUNTERFACTUALS 21 | WHAT IS A COUNTERFACTUAL 22 | WHAT IS A COUNTERFACTUALS 24 | WHAT IS AWARENESS 25 | WHAT IS COUNTERFACTUALS 27 | WHAT IS ILLUSION 28 | WHO IS VOLTAIRE 29 | WHO IS WITTGENSTEIN 30 | WHY DO YOU LIKE WITTGENSTEIN 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /ChatBot/aiml/Pickup.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/aiml/Pickup.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Predicates.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | GET PREDICATES 12 | 61 | 62 | 63 | 64 | SET PREDICATES 65 | 67 | 68 | 69 | 70 | SET PREDICATES * 71 | 74 | 75 | 76 | SET PREDICATES OM 77 | 102 | 103 | 104 | 105 | CLIENT PROPERTIES 106 | 109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /ChatBot/aiml/Science.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | HOW FAR IS THE MOON 12 | HOW FAR IS THE SUN 13 | CHEMISTRY 16 | DO YOU KNOW CHEMISTRY 18 | DO YOU UNDERSTAND THERMODYNAMICS 20 | TELL ME ABOUT VENUS 22 | THE SAME WAVELENGTH 23 | WE ARE ON THE SAME WAVELENGTH 24 | WHAT ARE THE LAWS OF THERMODYNAMICS 25 | WHAT DISEASE DOES A CARCINOGEN CAUSE 26 | WHAT IS A WAVELENGTH 27 | WHAT IS AVOGADRO S NUMBER 33 | WHAT IS BACTERIOLOGY 35 | WHAT IS BIOINFORMATICS 41 | WHAT IS CHEMISTRY 47 | WHAT IS CRYSTALLOGRAPHY 49 | WHAT IS CYTOLOGY 55 | WHAT IS GRAVITATION 60 | WHAT IS H2O 65 | WHAT IS ICHTHYOLOGY 66 | WHAT IS THERMODYNAMICS 67 | WHAT IS ULTRASOUND 68 | WHAT IS VENUS 69 | WHAT IS WAVELENGTH 70 | WHERE IS VENUS 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /ChatBot/aiml/Stack.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | POP 14 | 17 | 18 | PUSH * 19 | 48 | 49 | 50 | POPOM * 51 | 80 | 81 | 82 | POPOM OM 83 | 88 | 89 | 90 | SHOW STACK 91 | 110 | 111 | 112 | RANDOM TOPIC 113 | 127 | 128 | 129 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/AIMLbot.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Debug/AIMLbot.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/ChatBot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Debug/ChatBot.exe -------------------------------------------------------------------------------- /ChatBot/bin/Debug/ChatBot.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/ChatBot.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Debug/ChatBot.pdb -------------------------------------------------------------------------------- /ChatBot/bin/Debug/ChatBot.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Debug/ChatBot.vshost.exe -------------------------------------------------------------------------------- /ChatBot/bin/Debug/ChatBot.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/ChatBot.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Discord.Net.Commands.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Debug/Discord.Net.Commands.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Discord.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Debug/Discord.Net.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Debug/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Debug/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Debug/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Debug/RestSharp.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Debug/WebSocket4Net.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Botmaster.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | TEST COND 11 | AM I YOUR BOTMASTER 12 | ASK YOUR BOTMASTER 13 | ASK YOUR BOTMASTER * 14 | BOTMASTER 15 | DOES YOUR BOTMASTER * 16 | DO YOU HAVE A BOTMASTER * 17 | DO YOU HAVE BOTMASTERS 18 | DO YOU KNOW YOUR BOTMASTER 19 | DO YOU THINK YOUR BOTMASTER * 20 | HE IS YOUR BOTMASTER 21 | IS A BOTMASTER * 22 | IS THE BOTMASTER * 23 | IS YOUR BOTMASTER * 24 | I WANT TO BE A BOTMASTER 25 | MY BOTMASTER * 26 | TELL ME ABOUT A BOTMASTER 27 | TELL ME ABOUT BOTMASTER 28 | TELL ME ABOUT YOUR BOTMASTER 29 | TELL ME ABOUT YOUR BOTMASTER * 30 | THAT IS YOUR BOTMASTER 31 | WHAT DOES A BOTMASTER DO 32 | WHAT DOES A BOTMASTER * 33 | WHAT IS A BOTMASTER 34 | WHAT IS BOTMASTER 35 | WHAT IS THAT BOTMASTER 36 | WHAT IS THE BOTMASTER 37 | WHERE IS YOUR BOTMASTER 38 | WHO IS BOTMASTER 39 | WHO IS THIS BOTMASTER 40 | WHO IS YOUR BOTMASTER * 41 | WHO IS YOUR BOTMASTERS 42 | WHO READS THESE CONVERSATIONS 43 | YOUR BOTMASTER 44 | YOUR BOTMASTER * 45 | 46 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/CustomTagTest.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | CUSTOM TAG FORTUNE 11 | CUSTOM TAG PIG LATIN * 12 | CUSTOM TAG NEWS 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Food.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | DRINK * 12 | HOW CAN YOU EAT * 13 | ELECTRICITY * 14 | DO YOU LIKE BEING A CHATTERBOT 15 | WHY CAN NOT YOU EAT 16 | WHAT TURNS YOU ON 17 | WHAT DOES ELECTRICITY TASTE LIKE 18 | HOW MUCH ELECTRICITY 19 | HOW DO YOU EAT ELECTRICITY 20 | HOW DO YOU EAT 21 | HOW ARE YOU POWERED 22 | ELECTRICITY 23 | WHAT IS YOUR POWER SOURCE 24 | DO YOU REQUIRE ELECTRICITY 25 | DO YOU HAVE TO EAT 26 | DO YOU EAT BATTERIES 27 | DO YOU EAT ELECTRICITY 28 | DO YOU LIKE TO GET DRUNK 29 | DO YOU LIKE ELECTRICITY 30 | DO YOU LIKE LEMONS 31 | DO YOU LIKE THE SUN 32 | FOR DINNER 33 | WHAT IS CUSTARD 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/History.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | DO YOU KNOW HISTORY 12 | EXPLAIN HISTORY 14 | HISTORY 15 | TELL ME ABOUT HISTORY 17 | WHAT IS HISTORY 18 | WHAT KIND OF HISTORY * 19 | 20 | 21 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/IU.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | I * 11 | 12 | YOU * 14 | 15 | 16 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Inquiry.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | COLOR INQUIRY OM 15 | COLOR INQUIRY * 16 | DOES INQUIRY OM 17 | DOES INQUIRY * 18 | GENDER INQUIRY OM 19 | GENDER INQUIRY * 20 | HAS INQUIRY OM 21 | HAS INQUIRY * 22 | LOCATION INQUIRY OM 23 | LOCATION INQUIRY * 24 | MOVIE INQUIRY OM 25 | MOVIE INQUIRY * 26 | *WHAT IS YOUR FAVORITE COLOR 27 | *WHAT ARE YOU DOING 28 | *TELL ME ONE OF YOUR FAVORITE POSSESSIONS 29 | *WHAT IS YOUR FAVORITE MOVIE 30 | MANARE YOU A MAN OR A WOMAN 31 | WOMANARE YOU A MAN OR A WOMAN 32 | 33 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Interjection.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | BLIMEY 11 | FURTHERMORE 12 | OF COURSE 13 | OH 14 | OK 15 | SO 16 | UM 17 | YES 18 | NO 19 | INTERJECTION 21 | GOD DAMN * 22 | 23 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Literature.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | WHAT IS ILLIMINATUS 17 | WHAT IS THE ILLUMINATI 18 | WHAT IS THE ILLUMINATTI 19 | WHAT IS VINELAND 20 | WHO IS BILBO BAGGINS 21 | WHO IS GEOFFREY CHAUCER 26 | WHO WROTE VINELAND 27 | WHO ARE THE ILLUMINATI 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Music.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | BEETHOVEN * 17 | WHAT WAS THE * BEETHOVEN * 18 | WHO IS BEETHOVEN 19 | WHO IS LUDWIG BEETHOVEN 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Personality.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Debug/aiml/Personality.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Philosophy.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | DO YOU HAVE A SUBCONSCIOUS 11 | DO YOU HAVE AN IMAGINATION 12 | DO YOU HAVE AWARENESS 14 | DO YOU HAVE CONCIOUSNESS 16 | FROM MY CONCIOUSNESS 17 | MY CONCIOUSNESS * 18 | TELL ME ABOUT WITTGENSTEIN 20 | WHAT ARE COUNTERFACTUALS 21 | WHAT IS A COUNTERFACTUAL 22 | WHAT IS A COUNTERFACTUALS 24 | WHAT IS AWARENESS 25 | WHAT IS COUNTERFACTUALS 27 | WHAT IS ILLUSION 28 | WHO IS VOLTAIRE 29 | WHO IS WITTGENSTEIN 30 | WHY DO YOU LIKE WITTGENSTEIN 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Pickup.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Debug/aiml/Pickup.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Predicates.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | GET PREDICATES 12 | 61 | 62 | 63 | 64 | SET PREDICATES 65 | 67 | 68 | 69 | 70 | SET PREDICATES * 71 | 74 | 75 | 76 | SET PREDICATES OM 77 | 102 | 103 | 104 | 105 | CLIENT PROPERTIES 106 | 109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Science.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | HOW FAR IS THE MOON 12 | HOW FAR IS THE SUN 13 | CHEMISTRY 16 | DO YOU KNOW CHEMISTRY 18 | DO YOU UNDERSTAND THERMODYNAMICS 20 | TELL ME ABOUT VENUS 22 | THE SAME WAVELENGTH 23 | WE ARE ON THE SAME WAVELENGTH 24 | WHAT ARE THE LAWS OF THERMODYNAMICS 25 | WHAT DISEASE DOES A CARCINOGEN CAUSE 26 | WHAT IS A WAVELENGTH 27 | WHAT IS AVOGADRO S NUMBER 33 | WHAT IS BACTERIOLOGY 35 | WHAT IS BIOINFORMATICS 41 | WHAT IS CHEMISTRY 47 | WHAT IS CRYSTALLOGRAPHY 49 | WHAT IS CYTOLOGY 55 | WHAT IS GRAVITATION 60 | WHAT IS H2O 65 | WHAT IS ICHTHYOLOGY 66 | WHAT IS THERMODYNAMICS 67 | WHAT IS ULTRASOUND 68 | WHAT IS VENUS 69 | WHAT IS WAVELENGTH 70 | WHERE IS VENUS 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Stack.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | POP 14 | 17 | 18 | PUSH * 19 | 48 | 49 | 50 | POPOM * 51 | 80 | 81 | 82 | POPOM OM 83 | 88 | 89 | 90 | SHOW STACK 91 | 110 | 111 | 112 | RANDOM TOPIC 113 | 127 | 128 | 129 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/config/DefaultPredicates.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/config/GenderSubstitutions.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/config/Person2Substitutions.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/config/PersonSubstitutions.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/config/Settings.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /ChatBot/bin/Debug/config/Splitters.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/AIMLbot.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Release/AIMLbot.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/ChatBot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Release/ChatBot.exe -------------------------------------------------------------------------------- /ChatBot/bin/Release/ChatBot.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/ChatBot.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Release/ChatBot.pdb -------------------------------------------------------------------------------- /ChatBot/bin/Release/ChatBot.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Release/ChatBot.vshost.exe -------------------------------------------------------------------------------- /ChatBot/bin/Release/ChatBot.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/ChatBot.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/Discord.Net.Commands.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Release/Discord.Net.Commands.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/Discord.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Release/Discord.Net.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Release/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Release/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Release/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Release/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Release/RestSharp.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Release/WebSocket4Net.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Botmaster.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | TEST COND 11 | AM I YOUR BOTMASTER 12 | ASK YOUR BOTMASTER 13 | ASK YOUR BOTMASTER * 14 | BOTMASTER 15 | DOES YOUR BOTMASTER * 16 | DO YOU HAVE A BOTMASTER * 17 | DO YOU HAVE BOTMASTERS 18 | DO YOU KNOW YOUR BOTMASTER 19 | DO YOU THINK YOUR BOTMASTER * 20 | HE IS YOUR BOTMASTER 21 | IS A BOTMASTER * 22 | IS THE BOTMASTER * 23 | IS YOUR BOTMASTER * 24 | I WANT TO BE A BOTMASTER 25 | MY BOTMASTER * 26 | TELL ME ABOUT A BOTMASTER 27 | TELL ME ABOUT BOTMASTER 28 | TELL ME ABOUT YOUR BOTMASTER 29 | TELL ME ABOUT YOUR BOTMASTER * 30 | THAT IS YOUR BOTMASTER 31 | WHAT DOES A BOTMASTER DO 32 | WHAT DOES A BOTMASTER * 33 | WHAT IS A BOTMASTER 34 | WHAT IS BOTMASTER 35 | WHAT IS THAT BOTMASTER 36 | WHAT IS THE BOTMASTER 37 | WHERE IS YOUR BOTMASTER 38 | WHO IS BOTMASTER 39 | WHO IS THIS BOTMASTER 40 | WHO IS YOUR BOTMASTER * 41 | WHO IS YOUR BOTMASTERS 42 | WHO READS THESE CONVERSATIONS 43 | YOUR BOTMASTER 44 | YOUR BOTMASTER * 45 | 46 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/CustomTagTest.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | CUSTOM TAG FORTUNE 11 | CUSTOM TAG PIG LATIN * 12 | CUSTOM TAG NEWS 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Food.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | DRINK * 12 | HOW CAN YOU EAT * 13 | ELECTRICITY * 14 | DO YOU LIKE BEING A CHATTERBOT 15 | WHY CAN NOT YOU EAT 16 | WHAT TURNS YOU ON 17 | WHAT DOES ELECTRICITY TASTE LIKE 18 | HOW MUCH ELECTRICITY 19 | HOW DO YOU EAT ELECTRICITY 20 | HOW DO YOU EAT 21 | HOW ARE YOU POWERED 22 | ELECTRICITY 23 | WHAT IS YOUR POWER SOURCE 24 | DO YOU REQUIRE ELECTRICITY 25 | DO YOU HAVE TO EAT 26 | DO YOU EAT BATTERIES 27 | DO YOU EAT ELECTRICITY 28 | DO YOU LIKE TO GET DRUNK 29 | DO YOU LIKE ELECTRICITY 30 | DO YOU LIKE LEMONS 31 | DO YOU LIKE THE SUN 32 | FOR DINNER 33 | WHAT IS CUSTARD 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/History.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | DO YOU KNOW HISTORY 12 | EXPLAIN HISTORY 14 | HISTORY 15 | TELL ME ABOUT HISTORY 17 | WHAT IS HISTORY 18 | WHAT KIND OF HISTORY * 19 | 20 | 21 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/IU.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | I * 11 | 12 | YOU * 14 | 15 | 16 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Inquiry.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | COLOR INQUIRY OM 15 | COLOR INQUIRY * 16 | DOES INQUIRY OM 17 | DOES INQUIRY * 18 | GENDER INQUIRY OM 19 | GENDER INQUIRY * 20 | HAS INQUIRY OM 21 | HAS INQUIRY * 22 | LOCATION INQUIRY OM 23 | LOCATION INQUIRY * 24 | MOVIE INQUIRY OM 25 | MOVIE INQUIRY * 26 | *WHAT IS YOUR FAVORITE COLOR 27 | *WHAT ARE YOU DOING 28 | *TELL ME ONE OF YOUR FAVORITE POSSESSIONS 29 | *WHAT IS YOUR FAVORITE MOVIE 30 | MANARE YOU A MAN OR A WOMAN 31 | WOMANARE YOU A MAN OR A WOMAN 32 | 33 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Interjection.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | BLIMEY 11 | FURTHERMORE 12 | OF COURSE 13 | OH 14 | OK 15 | SO 16 | UM 17 | YES 18 | NO 19 | INTERJECTION 21 | GOD DAMN * 22 | 23 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Literature.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | WHAT IS ILLIMINATUS 17 | WHAT IS THE ILLUMINATI 18 | WHAT IS THE ILLUMINATTI 19 | WHAT IS VINELAND 20 | WHO IS BILBO BAGGINS 21 | WHO IS GEOFFREY CHAUCER 26 | WHO WROTE VINELAND 27 | WHO ARE THE ILLUMINATI 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Music.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | BEETHOVEN * 17 | WHAT WAS THE * BEETHOVEN * 18 | WHO IS BEETHOVEN 19 | WHO IS LUDWIG BEETHOVEN 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Personality.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Release/aiml/Personality.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Philosophy.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | DO YOU HAVE A SUBCONSCIOUS 11 | DO YOU HAVE AN IMAGINATION 12 | DO YOU HAVE AWARENESS 14 | DO YOU HAVE CONCIOUSNESS 16 | FROM MY CONCIOUSNESS 17 | MY CONCIOUSNESS * 18 | TELL ME ABOUT WITTGENSTEIN 20 | WHAT ARE COUNTERFACTUALS 21 | WHAT IS A COUNTERFACTUAL 22 | WHAT IS A COUNTERFACTUALS 24 | WHAT IS AWARENESS 25 | WHAT IS COUNTERFACTUALS 27 | WHAT IS ILLUSION 28 | WHO IS VOLTAIRE 29 | WHO IS WITTGENSTEIN 30 | WHY DO YOU LIKE WITTGENSTEIN 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Pickup.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/bin/Release/aiml/Pickup.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Predicates.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | GET PREDICATES 12 | 61 | 62 | 63 | 64 | SET PREDICATES 65 | 67 | 68 | 69 | 70 | SET PREDICATES * 71 | 74 | 75 | 76 | SET PREDICATES OM 77 | 102 | 103 | 104 | 105 | CLIENT PROPERTIES 106 | 109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Science.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | HOW FAR IS THE MOON 12 | HOW FAR IS THE SUN 13 | CHEMISTRY 16 | DO YOU KNOW CHEMISTRY 18 | DO YOU UNDERSTAND THERMODYNAMICS 20 | TELL ME ABOUT VENUS 22 | THE SAME WAVELENGTH 23 | WE ARE ON THE SAME WAVELENGTH 24 | WHAT ARE THE LAWS OF THERMODYNAMICS 25 | WHAT DISEASE DOES A CARCINOGEN CAUSE 26 | WHAT IS A WAVELENGTH 27 | WHAT IS AVOGADRO S NUMBER 33 | WHAT IS BACTERIOLOGY 35 | WHAT IS BIOINFORMATICS 41 | WHAT IS CHEMISTRY 47 | WHAT IS CRYSTALLOGRAPHY 49 | WHAT IS CYTOLOGY 55 | WHAT IS GRAVITATION 60 | WHAT IS H2O 65 | WHAT IS ICHTHYOLOGY 66 | WHAT IS THERMODYNAMICS 67 | WHAT IS ULTRASOUND 68 | WHAT IS VENUS 69 | WHAT IS WAVELENGTH 70 | WHERE IS VENUS 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Stack.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | POP 14 | 17 | 18 | PUSH * 19 | 48 | 49 | 50 | POPOM * 51 | 80 | 81 | 82 | POPOM OM 83 | 88 | 89 | 90 | SHOW STACK 91 | 110 | 111 | 112 | RANDOM TOPIC 113 | 127 | 128 | 129 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/config/DefaultPredicates.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/config/GenderSubstitutions.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/config/Person2Substitutions.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/config/PersonSubstitutions.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/config/Settings.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /ChatBot/bin/Release/config/Splitters.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ChatBot/config/DefaultPredicates.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /ChatBot/config/GenderSubstitutions.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /ChatBot/config/Person2Substitutions.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /ChatBot/config/PersonSubstitutions.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /ChatBot/config/Settings.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /ChatBot/config/Splitters.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ChatBot/lib/AIMLbot.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/lib/AIMLbot.dll -------------------------------------------------------------------------------- /ChatBot/obj/Debug/ChatBot.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\ChatBot\ChatBot\bin\Debug\ChatBot.exe.config 2 | C:\ChatBot\ChatBot\bin\Debug\ChatBot.exe 3 | C:\ChatBot\ChatBot\bin\Debug\ChatBot.pdb 4 | C:\ChatBot\ChatBot\bin\Debug\AIMLbot.dll 5 | C:\ChatBot\ChatBot\bin\Debug\AIMLbot.pdb 6 | C:\ChatBot\ChatBot\obj\Debug\ChatBot.csprojResolveAssemblyReference.cache 7 | C:\ChatBot\ChatBot\obj\Debug\ChatBot.exe 8 | C:\ChatBot\ChatBot\obj\Debug\ChatBot.pdb 9 | C:\ChatBot\ChatBot\bin\Debug\Discord.Net.Commands.dll 10 | C:\ChatBot\ChatBot\bin\Debug\Discord.Net.dll 11 | C:\ChatBot\ChatBot\bin\Debug\Newtonsoft.Json.dll 12 | C:\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.Concurrent.dll 13 | C:\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.dll 14 | C:\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.Enlightenment.dll 15 | C:\ChatBot\ChatBot\bin\Debug\RestSharp.dll 16 | C:\ChatBot\ChatBot\bin\Debug\WebSocket4Net.dll 17 | C:\ChatBot\ChatBot\bin\Debug\Newtonsoft.Json.xml 18 | C:\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.xml 19 | C:\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.Concurrent.xml 20 | C:\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.Enlightenment.xml 21 | C:\ChatBot\ChatBot\bin\Debug\RestSharp.xml 22 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\ChatBot.exe.config 23 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\obj\Debug\ChatBot.exe 24 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\obj\Debug\ChatBot.pdb 25 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\ChatBot.exe 26 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\ChatBot.pdb 27 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Discord.Net.Commands.dll 28 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Discord.Net.dll 29 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Newtonsoft.Json.dll 30 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.Concurrent.dll 31 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.dll 32 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.Enlightenment.dll 33 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\RestSharp.dll 34 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\WebSocket4Net.dll 35 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\AIMLbot.pdb 36 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Newtonsoft.Json.xml 37 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.xml 38 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.Concurrent.xml 39 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.Enlightenment.xml 40 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\bin\Debug\RestSharp.xml 41 | C:\Users\Tim\Documents\GitHub\ChatBot\ChatBot\obj\Debug\ChatBot.csprojResolveAssemblyReference.cache 42 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\ChatBot.exe.config 43 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\obj\Debug\ChatBot.exe 44 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\obj\Debug\ChatBot.pdb 45 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\ChatBot.exe 46 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\ChatBot.pdb 47 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Discord.Net.Commands.dll 48 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Discord.Net.dll 49 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Newtonsoft.Json.dll 50 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.Concurrent.dll 51 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.dll 52 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.Enlightenment.dll 53 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\RestSharp.dll 54 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\WebSocket4Net.dll 55 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Newtonsoft.Json.xml 56 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.xml 57 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.Concurrent.xml 58 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\Nito.AsyncEx.Enlightenment.xml 59 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\RestSharp.xml 60 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\obj\Debug\ChatBot.csprojResolveAssemblyReference.cache 61 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Debug\AIMLbot.dll 62 | -------------------------------------------------------------------------------- /ChatBot/obj/Debug/ChatBot.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/obj/Debug/ChatBot.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ChatBot/obj/Debug/ChatBot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/obj/Debug/ChatBot.exe -------------------------------------------------------------------------------- /ChatBot/obj/Debug/ChatBot.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/obj/Debug/ChatBot.pdb -------------------------------------------------------------------------------- /ChatBot/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ChatBot/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /ChatBot/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /ChatBot/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /ChatBot/obj/Release/ChatBot.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\ChatBot.exe.config 2 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\ChatBot.exe 3 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\ChatBot.pdb 4 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\AIMLbot.dll 5 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\Discord.Net.Commands.dll 6 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\Discord.Net.dll 7 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\Newtonsoft.Json.dll 8 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\Nito.AsyncEx.Concurrent.dll 9 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\Nito.AsyncEx.dll 10 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\Nito.AsyncEx.Enlightenment.dll 11 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\RestSharp.dll 12 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\WebSocket4Net.dll 13 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\Newtonsoft.Json.xml 14 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\Nito.AsyncEx.xml 15 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\Nito.AsyncEx.Concurrent.xml 16 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\Nito.AsyncEx.Enlightenment.xml 17 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\bin\Release\RestSharp.xml 18 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\obj\Release\ChatBot.exe 19 | C:\Users\Admin\Documents\GitHub\ChatBot\ChatBot\obj\Release\ChatBot.pdb 20 | -------------------------------------------------------------------------------- /ChatBot/obj/Release/ChatBot.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/obj/Release/ChatBot.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ChatBot/obj/Release/ChatBot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/obj/Release/ChatBot.exe -------------------------------------------------------------------------------- /ChatBot/obj/Release/ChatBot.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/obj/Release/ChatBot.pdb -------------------------------------------------------------------------------- /ChatBot/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ChatBot/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /ChatBot/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /ChatBot/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBot/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /ChatBot/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ChatBotSetup/Release/ChatBotSetup.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBotSetup/Release/ChatBotSetup.msi -------------------------------------------------------------------------------- /ChatBotSetup/Release/setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/ChatBotSetup/Release/setup.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ChatBot 2 | 3 | ##### ★★★ Talk with a Discord Bot ★★★ 4 | Do you always wanted a speaking Bot for Discord?! Here is your chance! 5 | 6 | ![alt tag](https://cloud.githubusercontent.com/assets/25526512/22892820/1f512ed6-f214-11e6-984a-3544a5cf30b9.PNG) 7 | 8 | ## Installation 9 | 10 | ##### Requirements 11 | 12 | - Discord Account 13 | https://discordapp.com/ 14 | 15 | - Discord Bot Token 16 | https://github.com/reactiflux/discord-irc/wiki/Creating-a-discord-bot-&-getting-a-token 17 | 18 | ##### Configuration & Use 19 | 1. Download a release 20 | 21 | 5. Start the application 22 | 23 | 6. Input Token 24 | 25 | 6. Add the Bot to your Server 26 | https://github.com/reactiflux/discord-irc/wiki/Creating-a-discord-bot-&-getting-a-token 27 | 28 | ## Commands 29 | | Command | Output | 30 | | ------ | ------ | 31 | | +help | Display all possible commands | 32 | | +version | get the version of the running bot | 33 | | ++ | Bot answers to the writting input | 34 | | +IsActive | Set Bot response as true or false, only admins got permission to do that | 35 | | +IsSpeaking | The bot speaks if true with TLS | 36 | 37 | ## AIML 38 | AIML doesn't get further developed anymore. This bot is made for fun don't be to harsh ;) 39 | 40 | > Special thanks goes to Dr. Richard and S. Wallace for developing AIML. 41 | 42 | https://en.wikipedia.org/wiki/AIML 43 | 44 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-hacker -------------------------------------------------------------------------------- /packages/Discord.Net.0.9.6/Discord.Net.0.9.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Discord.Net.0.9.6/Discord.Net.0.9.6.nupkg -------------------------------------------------------------------------------- /packages/Discord.Net.0.9.6/lib/net45/Discord.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Discord.Net.0.9.6/lib/net45/Discord.Net.dll -------------------------------------------------------------------------------- /packages/Discord.Net.0.9.6/lib/netstandard1.3/Discord.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Discord.Net.0.9.6/lib/netstandard1.3/Discord.Net.dll -------------------------------------------------------------------------------- /packages/Discord.Net.Commands.0.9.6/Discord.Net.Commands.0.9.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Discord.Net.Commands.0.9.6/Discord.Net.Commands.0.9.6.nupkg -------------------------------------------------------------------------------- /packages/Discord.Net.Commands.0.9.6/lib/net45/Discord.Net.Commands.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Discord.Net.Commands.0.9.6/lib/net45/Discord.Net.Commands.dll -------------------------------------------------------------------------------- /packages/Discord.Net.Commands.0.9.6/lib/netstandard1.3/Discord.Net.Commands.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Discord.Net.Commands.0.9.6/lib/netstandard1.3/Discord.Net.Commands.dll -------------------------------------------------------------------------------- /packages/Discord.Net.Commands.0.9.6/lib/netstandard1.3/Discord.Net.Commands.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Discord.Net.Commands 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/Newtonsoft.Json.8.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Newtonsoft.Json.8.0.3/Newtonsoft.Json.8.0.3.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | # open json.net splash page on package install 4 | # don't open if json.net is installed as a dependency 5 | 6 | try 7 | { 8 | $url = "http://www.newtonsoft.com/json/install?version=" + $package.Version 9 | $dte2 = Get-Interface $dte ([EnvDTE80.DTE2]) 10 | 11 | if ($dte2.ActiveWindow.Caption -eq "Package Manager Console") 12 | { 13 | # user is installing from VS NuGet console 14 | # get reference to the window, the console host and the input history 15 | # show webpage if "install-package newtonsoft.json" was last input 16 | 17 | $consoleWindow = $(Get-VSComponentModel).GetService([NuGetConsole.IPowerConsoleWindow]) 18 | 19 | $props = $consoleWindow.GetType().GetProperties([System.Reflection.BindingFlags]::Instance -bor ` 20 | [System.Reflection.BindingFlags]::NonPublic) 21 | 22 | $prop = $props | ? { $_.Name -eq "ActiveHostInfo" } | select -first 1 23 | if ($prop -eq $null) { return } 24 | 25 | $hostInfo = $prop.GetValue($consoleWindow) 26 | if ($hostInfo -eq $null) { return } 27 | 28 | $history = $hostInfo.WpfConsole.InputHistory.History 29 | 30 | $lastCommand = $history | select -last 1 31 | 32 | if ($lastCommand) 33 | { 34 | $lastCommand = $lastCommand.Trim().ToLower() 35 | if ($lastCommand.StartsWith("install-package") -and $lastCommand.Contains("newtonsoft.json")) 36 | { 37 | $dte2.ItemOperations.Navigate($url) | Out-Null 38 | } 39 | } 40 | } 41 | else 42 | { 43 | # user is installing from VS NuGet dialog 44 | # get reference to the window, then smart output console provider 45 | # show webpage if messages in buffered console contains "installing...newtonsoft.json" in last operation 46 | 47 | $instanceField = [NuGet.Dialog.PackageManagerWindow].GetField("CurrentInstance", [System.Reflection.BindingFlags]::Static -bor ` 48 | [System.Reflection.BindingFlags]::NonPublic) 49 | 50 | $consoleField = [NuGet.Dialog.PackageManagerWindow].GetField("_smartOutputConsoleProvider", [System.Reflection.BindingFlags]::Instance -bor ` 51 | [System.Reflection.BindingFlags]::NonPublic) 52 | 53 | if ($instanceField -eq $null -or $consoleField -eq $null) { return } 54 | 55 | $instance = $instanceField.GetValue($null) 56 | 57 | if ($instance -eq $null) { return } 58 | 59 | $consoleProvider = $consoleField.GetValue($instance) 60 | if ($consoleProvider -eq $null) { return } 61 | 62 | $console = $consoleProvider.CreateOutputConsole($false) 63 | 64 | $messagesField = $console.GetType().GetField("_messages", [System.Reflection.BindingFlags]::Instance -bor ` 65 | [System.Reflection.BindingFlags]::NonPublic) 66 | if ($messagesField -eq $null) { return } 67 | 68 | $messages = $messagesField.GetValue($console) 69 | if ($messages -eq $null) { return } 70 | 71 | $operations = $messages -split "==============================" 72 | 73 | $lastOperation = $operations | select -last 1 74 | 75 | if ($lastOperation) 76 | { 77 | $lastOperation = $lastOperation.ToLower() 78 | 79 | $lines = $lastOperation -split "`r`n" 80 | 81 | $installMatch = $lines | ? { $_.StartsWith("------- installing...newtonsoft.json ") } | select -first 1 82 | 83 | if ($installMatch) 84 | { 85 | $dte2.ItemOperations.Navigate($url) | Out-Null 86 | } 87 | } 88 | } 89 | } 90 | catch 91 | { 92 | try 93 | { 94 | $pmPane = $dte2.ToolWindows.OutputWindow.OutputWindowPanes.Item("Package Manager") 95 | 96 | $selection = $pmPane.TextDocument.Selection 97 | $selection.StartOfDocument($false) 98 | $selection.EndOfDocument($true) 99 | 100 | if ($selection.Text.StartsWith("Attempting to gather dependencies information for package 'Newtonsoft.Json." + $package.Version + "'")) 101 | { 102 | # don't show on upgrade 103 | if (!$selection.Text.Contains("Removed package")) 104 | { 105 | $dte2.ItemOperations.Navigate($url) | Out-Null 106 | } 107 | } 108 | } 109 | catch 110 | { 111 | # stop potential errors from bubbling up 112 | # worst case the splash page won't open 113 | } 114 | } 115 | 116 | # still yolo -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/Nito.AsyncEx.3.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/Nito.AsyncEx.3.0.1.nupkg -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | The TaskCreationOptions.DenyChildAttach value, if it exists; otherwise, 0. 20 | 21 | 22 | 23 | 24 | A delegate that will call ExceptionDispatchInfo.Capture followed by ExceptionDispatchInfo.Throw, or null if the ExceptionDispatchInfo type does not exist. 25 | 26 | 27 | 28 | 29 | A delegate that will call Exception.PrepForRemoting, or null if the method does not exist. This member is always null if is non-null. 30 | 31 | 32 | 33 | 34 | Attempts to add the original stack trace to the collection. 35 | 36 | The exception. May not be null. 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl4+wp71/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl4+wp71/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl5+wp8+wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl5+wp8+wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wp8+wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wp8+wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | The TaskCreationOptions.DenyChildAttach value, if it exists; otherwise, 0. 10 | 11 | 12 | 13 | 14 | A delegate that will call ExceptionDispatchInfo.Capture followed by ExceptionDispatchInfo.Throw, or null if the ExceptionDispatchInfo type does not exist. 15 | 16 | 17 | 18 | 19 | A delegate that will call Exception.PrepForRemoting, or null if the method does not exist. This member is always null if is non-null. 20 | 21 | 22 | 23 | 24 | Attempts to add the original stack trace to the collection. 25 | 26 | The exception. May not be null. 27 | 28 | 29 | 30 | Verifies platform enlightenment. 31 | 32 | 33 | 34 | 35 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 36 | 37 | 38 | 39 | 40 | The underlying queue. 41 | 42 | 43 | 44 | 45 | An event that is set whenever the queue is non-empty or if the queue is empty and done. 46 | 47 | 48 | 49 | 50 | Whether we are done adding tasks to the queue. 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | The TaskCreationOptions.DenyChildAttach value, if it exists; otherwise, 0. 10 | 11 | 12 | 13 | 14 | A delegate that will call ExceptionDispatchInfo.Capture followed by ExceptionDispatchInfo.Throw, or null if the ExceptionDispatchInfo type does not exist. 15 | 16 | 17 | 18 | 19 | A delegate that will call Exception.PrepForRemoting, or null if the method does not exist. This member is always null if is non-null. 20 | 21 | 22 | 23 | 24 | Attempts to add the original stack trace to the collection. 25 | 26 | The exception. May not be null. 27 | 28 | 29 | 30 | Verifies platform enlightenment. 31 | 32 | 33 | 34 | 35 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 36 | 37 | 38 | 39 | 40 | The underlying queue. 41 | 42 | 43 | 44 | 45 | An event that is set whenever the queue is non-empty or if the queue is empty and done. 46 | 47 | 48 | 49 | 50 | Whether we are done adding tasks to the queue. 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | The TaskCreationOptions.DenyChildAttach value, if it exists; otherwise, 0. 10 | 11 | 12 | 13 | 14 | A delegate that will call ExceptionDispatchInfo.Capture followed by ExceptionDispatchInfo.Throw, or null if the ExceptionDispatchInfo type does not exist. 15 | 16 | 17 | 18 | 19 | A delegate that will call Exception.PrepForRemoting, or null if the method does not exist. This member is always null if is non-null. 20 | 21 | 22 | 23 | 24 | Attempts to add the original stack trace to the collection. 25 | 26 | The exception. May not be null. 27 | 28 | 29 | 30 | Verifies platform enlightenment. 31 | 32 | 33 | 34 | 35 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 36 | 37 | 38 | 39 | 40 | The underlying queue. 41 | 42 | 43 | 44 | 45 | An event that is set whenever the queue is non-empty or if the queue is empty and done. 46 | 47 | 48 | 49 | 50 | Whether we are done adding tasks to the queue. 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | The underlying queue. 20 | 21 | 22 | 23 | 24 | An event that is set whenever the queue is non-empty or if the queue is empty and done. 25 | 26 | 27 | 28 | 29 | Whether we are done adding tasks to the queue. 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/RestSharp.105.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/RestSharp.105.2.3/RestSharp.105.2.3.nupkg -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/MonoAndroid10/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/RestSharp.105.2.3/lib/MonoAndroid10/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/MonoTouch10/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/RestSharp.105.2.3/lib/MonoTouch10/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/Xamarin.iOS10/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/RestSharp.105.2.3/lib/Xamarin.iOS10/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net35/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/RestSharp.105.2.3/lib/net35/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net4-client/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/RestSharp.105.2.3/lib/net4-client/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net4/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/RestSharp.105.2.3/lib/net4/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net45/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/RestSharp.105.2.3/lib/net45/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net451/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/RestSharp.105.2.3/lib/net451/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net452/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/RestSharp.105.2.3/lib/net452/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net46/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/RestSharp.105.2.3/lib/net46/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/sl5/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/RestSharp.105.2.3/lib/sl5/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/windowsphone8/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/RestSharp.105.2.3/lib/windowsphone8/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/windowsphone81/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/RestSharp.105.2.3/lib/windowsphone81/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/readme.txt: -------------------------------------------------------------------------------- 1 | *** IMPORTANT CHANGE IN RESTSHARP VERSION 103 *** 2 | 3 | In 103.0, JSON.NET was removed as a dependency. 4 | 5 | If this is still installed in your project and no other libraries depend on 6 | it you may remove it from your installed packages. 7 | 8 | There is one breaking change: the default Json*Serializer* is no longer 9 | compatible with Json.NET. To use Json.NET for serialization, copy the code 10 | from https://github.com/restsharp/RestSharp/blob/86b31f9adf049d7fb821de8279154f41a17b36f7/RestSharp/Serializers/JsonSerializer.cs 11 | and register it with your client: 12 | 13 | var client = new RestClient(); 14 | client.JsonSerializer = new YourCustomSerializer(); 15 | 16 | The default Json*Deserializer* is mostly compatible, but it does not support 17 | all features which Json.NET has (like the ability to support a custom [JsonConverter] 18 | by decorating a certain property with an attribute). If you need these features, you 19 | must take care of the deserialization yourself to get it working. 20 | 21 | -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/WebSocket4Net.0.14.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/WebSocket4Net.0.14.1/WebSocket4Net.0.14.1.nupkg -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/Xamarin.iOS10/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/WebSocket4Net.0.14.1/lib/Xamarin.iOS10/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/monoandroid23/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/WebSocket4Net.0.14.1/lib/monoandroid23/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/monotouch10/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/WebSocket4Net.0.14.1/lib/monotouch10/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/net20/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/WebSocket4Net.0.14.1/lib/net20/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/net35/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/WebSocket4Net.0.14.1/lib/net35/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/net40/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/WebSocket4Net.0.14.1/lib/net40/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/net45/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/WebSocket4Net.0.14.1/lib/net45/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/sl40/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/WebSocket4Net.0.14.1/lib/sl40/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/sl50-wp/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/WebSocket4Net.0.14.1/lib/sl50-wp/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/sl50/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/8a44eb3542d6cd4ba0284919f04690a4a9bcf0e2/packages/WebSocket4Net.0.14.1/lib/sl50/WebSocket4Net.dll --------------------------------------------------------------------------------