From c31bc2597e1ad0095728e3f5fb2f4082e00f507c Mon Sep 17 00:00:00 2001 From: k0t9i Date: Wed, 9 Aug 2023 02:09:36 +0500 Subject: [PATCH 1/3] refactor: create README.md --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..778c514 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# Yet another ingame bot for Lineage 2. +![image_2023-08-09_00-43-10](https://github.com/k0t9i/L2Bot2.0/assets/7733997/59c57585-720a-4588-aa94-ee3d6d78a39f) + +## Project components +#### L2BotCore (C++) +[The bot framework](L2BotCore). It realization can be an ingame bot, a radar etc. +#### L2BotDll (C++) +[Injectable Dll](L2BotDll) with framework realization for Lineage 2 Interlude. +#### InjectionLibrary (C++) +[Helper library](InjectionLibrary) for code injection. +#### Client (C#) +[Unfinished client](Client). + +## Intercommunications +Communication between the client and the injected code occurs through a named pipe with json-messages. From d47ad68ff0cb976387291a6a7d5d8410bb3c49a3 Mon Sep 17 00:00:00 2001 From: k0t9i Date: Wed, 9 Aug 2023 02:14:09 +0500 Subject: [PATCH 2/3] refactor: create LICENSE --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c0afb41 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 k0t9i + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. From 3050c588814b51b7aa3e74796df637c1e490dd24 Mon Sep 17 00:00:00 2001 From: k0t9i Date: Wed, 9 Aug 2023 02:20:18 +0500 Subject: [PATCH 3/3] fix: fix bot screenshot --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 778c514..249c533 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Yet another ingame bot for Lineage 2. -![image_2023-08-09_00-43-10](https://github.com/k0t9i/L2Bot2.0/assets/7733997/59c57585-720a-4588-aa94-ee3d6d78a39f) +![image_2023-08-09_00-43-10](https://github.com/k0t9i/L2Bot2.0/assets/7733997/8b4356b0-f362-4ba8-8ca2-8c5cb949d873) ## Project components #### L2BotCore (C++)