{"id":31041151,"url":"https://github.com/maxmx03/yggai","last_synced_at":"2025-09-14T09:42:03.436Z","repository":{"id":227953740,"uuid":"772682546","full_name":"maxmx03/YggAI","owner":"maxmx03","description":"O 'cérebro' do seu Homunculus em Ragnarok Online. Utilizando uma Behavior Tree, este script de IA controla o comportamento do seu Homunculus, garantindo que ele aja de forma inteligente e eficaz no jogo.","archived":false,"fork":false,"pushed_at":"2025-09-11T23:54:52.000Z","size":193,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-12T01:57:10.189Z","etag":null,"topics":["ai","behavior-tree","latam","ragnarok","ragnarok-latam","ragnarok-online","user-ai"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maxmx03.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-03-15T17:16:43.000Z","updated_at":"2025-09-11T23:54:55.000Z","dependencies_parsed_at":"2024-03-18T16:29:48.568Z","dependency_job_id":"85c1287f-05fd-4b14-a625-fcc3b5f18073","html_url":"https://github.com/maxmx03/YggAI","commit_stats":null,"previous_names":["maxmx03/ragnarok-ai","maxmx03/user_ai","maxmx03/yggai"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/maxmx03/YggAI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxmx03%2FYggAI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxmx03%2FYggAI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxmx03%2FYggAI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxmx03%2FYggAI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxmx03","download_url":"https://codeload.github.com/maxmx03/YggAI/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxmx03%2FYggAI/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275088366,"owners_count":25403372,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-14T02:00:10.474Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","behavior-tree","latam","ragnarok","ragnarok-latam","ragnarok-online","user-ai"],"created_at":"2025-09-14T09:42:01.281Z","updated_at":"2025-09-14T09:42:03.426Z","avatar_url":"https://github.com/maxmx03.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ragnarok Online - AI\n\n## Introdução\n\nEste é um projeto de AI para o jogo Ragnarok Online, desenvolvido em Lua.\n\n## Arquitetura\n\nA inteligência artificial deste projeto é construída utilizando [Behavior Trees](https://dev.epicgames.com/documentation/en-us/unreal-engine/behavior-tree-in-unreal-engine---overview). Essa abordagem organiza a lógica de decisão em uma estrutura hierárquica,\npermitindo um comportamento adaptável e fácil de gerenciar para os personagens\ncontrolados pela AI.\n\n## Como usar\n\n### Arquivo zip\n\nClick em Code \u003e Download ZIP e extraia o arquivo zip para a pasta `C:\\\\Gravity\\\\Ragnarok\\\\AI`,\ndeverá ficar assim: `C:\\\\Gravity\\\\Ragnarok\\\\AI\\\\USER_AI`.\n\n### Ferramenta de versionamento\n\nSe você usar um software de versionamento, como o [Git](https://git-scm.com/downloads), você pode clonar o repositório do projeto usando o comando no terminal:\n\n```bash\ngit clone https://github.com/maxmx03/YggAI.git C:\\\\Gravity\\\\Ragnarok\\\\AI\\\\USER_AI\ncd C:\\\\Gravity\\\\Ragnarok\\\\AI\\\\USER_AI\ngit pull # busca por novas atualizações.\n```\n\nCaso não queira utilizar o terminal, você pode utilizar o [Github Desktop](https://desktop.github.com).\n\n## Config.lua\n\nAbra o arquivo `config.lua` e atualize as variáveis conforme necessário, você\npode utilizar qualquer editor de texto disponível no seu sistema operacional.\n\n- [Notepad](https://apps.microsoft.com/detail/9msmlrh6lzf3?hl=pt-BR\u0026gl=BR)\n- [Notepad++](https://notepad-plus-plus.org)\n- [Vscode](https://code.visualstudio.com)\n\n| Variável   | Descrição                                |\n| ---------- | ---------------------------------------- |\n| MyLevel    | Level do seu homunculus, sempre atualize |\n| LifCanHeal | LIF pode usar curar?                     |\n\n### Exemplo\n\n```lua\nMyLevel = 50 -- level do seu homunculus, sempre atualize\nLifCanHeal = true -- LIF pode usar curar? true ou false (requer poção compacta)\n```\n\n## Contribuindo\n\nVocê pode contribuir com o projeto, seja reportando bugs, sugerindo novas\nfuncionalidades ou até mesmo corrigindo bugs.\nPara reportar um bug, crie um novo tópico no [Issues](https://github.com/maxmx03/USER_AI/issues).\n\nCaso queira contribuir de outra forma mande um rodex no jogo para `Freya/Pelunia (BIO)`\nou `Freya/Millianor (AB)`, mandando zenys ou semente da vida.\n\n## TODO\n\n- [x] Homunculus\n  - [x] Lif\n  - [x] Vanilmirth\n  - [x] Amistr\n  - [x] Filir\n- [ ] Homunculus S\n  - [ ] Bayeri\n  - [x] Dieter\n  - [x] Eira\n  - [ ] Sera\n  - [x] Eleanor\n- [ ] PVP\n- [ ] WOE\n- [x] PVM\n- [ ] Detect MVP\n- [x] Skill and Cooldown\n- [ ] User commands\n\n## Projetos Alternativos\n\n- [AzzyAI](https://github.com/SpenceKonde/AzzyAI)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxmx03%2Fyggai","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxmx03%2Fyggai","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxmx03%2Fyggai/lists"}