├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── libraries │ ├── Maven__commons_codec_commons_codec_1_6.xml │ ├── Maven__commons_io_commons_io_2_4.xml │ ├── Maven__commons_logging_commons_logging_1_2.xml │ ├── Maven__org_apache_httpcomponents_fluent_hc_4_4_beta1.xml │ ├── Maven__org_apache_httpcomponents_httpclient_4_4_beta1.xml │ ├── Maven__org_apache_httpcomponents_httpcore_4_4_beta1.xml │ ├── Maven__org_json_json_20090211.xml │ └── pb_java_libs.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── uiDesigner.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── bot ├── alice2.properties ├── bot_profile.aiml ├── client_profile.aiml ├── color.set └── udc.aiml ├── color.set ├── pb-java.iml ├── pom.xml └── src ├── main └── java │ └── com │ └── pandorabots │ └── api │ ├── MagicParameters.java │ └── PandorabotsAPI.java └── test └── java └── Main.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | pb-java -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_codec_commons_codec_1_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/libraries/Maven__commons_codec_commons_codec_1_6.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_io_commons_io_2_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/libraries/Maven__commons_io_commons_io_2_4.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_logging_commons_logging_1_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/libraries/Maven__commons_logging_commons_logging_1_2.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_httpcomponents_fluent_hc_4_4_beta1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/libraries/Maven__org_apache_httpcomponents_fluent_hc_4_4_beta1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_httpcomponents_httpclient_4_4_beta1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/libraries/Maven__org_apache_httpcomponents_httpclient_4_4_beta1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_httpcomponents_httpcore_4_4_beta1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/libraries/Maven__org_apache_httpcomponents_httpcore_4_4_beta1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_json_json_20090211.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/libraries/Maven__org_json_json_20090211.xml -------------------------------------------------------------------------------- /.idea/libraries/pb_java_libs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/libraries/pb_java_libs.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/README.md -------------------------------------------------------------------------------- /bot/alice2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/bot/alice2.properties -------------------------------------------------------------------------------- /bot/bot_profile.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/bot/bot_profile.aiml -------------------------------------------------------------------------------- /bot/client_profile.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/bot/client_profile.aiml -------------------------------------------------------------------------------- /bot/color.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/bot/color.set -------------------------------------------------------------------------------- /bot/udc.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/bot/udc.aiml -------------------------------------------------------------------------------- /color.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/color.set -------------------------------------------------------------------------------- /pb-java.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/pb-java.iml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/pandorabots/api/MagicParameters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/src/main/java/com/pandorabots/api/MagicParameters.java -------------------------------------------------------------------------------- /src/main/java/com/pandorabots/api/PandorabotsAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/src/main/java/com/pandorabots/api/PandorabotsAPI.java -------------------------------------------------------------------------------- /src/test/java/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandorabots/pb-java/HEAD/src/test/java/Main.java --------------------------------------------------------------------------------