{"id":17346304,"url":"https://github.com/goaaats/nhaama","last_synced_at":"2025-02-26T01:33:48.859Z","repository":{"id":40886927,"uuid":"151053532","full_name":"goaaats/Nhaama","owner":"goaaats","description":"Multi-purpose .NET memory-editing library","archived":false,"fork":false,"pushed_at":"2022-12-08T06:36:56.000Z","size":96,"stargazers_count":26,"open_issues_count":3,"forks_count":13,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-03-03T12:27:55.916Z","etag":null,"topics":["ffxiv","memory","modding","windows"],"latest_commit_sha":null,"homepage":"","language":"C#","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/goaaats.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}},"created_at":"2018-10-01T07:50:28.000Z","updated_at":"2023-01-11T18:27:03.000Z","dependencies_parsed_at":"2023-01-24T16:30:25.735Z","dependency_job_id":null,"html_url":"https://github.com/goaaats/Nhaama","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goaaats%2FNhaama","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goaaats%2FNhaama/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goaaats%2FNhaama/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goaaats%2FNhaama/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/goaaats","download_url":"https://codeload.github.com/goaaats/Nhaama/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219843247,"owners_count":16556508,"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","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":["ffxiv","memory","modding","windows"],"created_at":"2024-10-15T16:45:03.726Z","updated_at":"2024-10-15T16:45:04.162Z","avatar_url":"https://github.com/goaaats.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nhaama\nMulti-purpose .NET memory-editing library\n\n## Getting a process\n\nTo get a Nhaama-wrapped process, just call ``GetNhaamaProcess()`` on a normal ``System.Diagnostics.Process`` or pass it as a parameter to a new ``NhaamaProcess``.\n\n```cs\nvar process1 = Process.GetProcessesByName(\"ffxiv_dx11\")[0].GetNhaamaProcess();\nvar process2 = new NhaamaProcess(Process.GetProcessesByName(\"ffxiv_dx11\")[0]);\n```\n\n## Pointers\n\nTo resolve pointers, just pass their path following a ``NhaamaProcess`` into a new ``Pointer``. This can be in parmeter- or string-form.\n\nIn parameter form, it's assumed to be starting from the main module of the passed process. This can be changed by passing another ``ProcessModule`` after the ``NhaamaProcess``.\n\n```cs\nvar pointer1 = new Pointer(process1, 0x19815F0, 0x10, 0x8, 0x28, 0x80);\nvar pointer2 = new Pointer(process1, \"ffxiv_dx11.exe+019815F0,10,8,28,80\");\n\nConsole.WriteLine(pointer1.Address.ToString(\"X\"));\nConsole.WriteLine(pointer2.Address.ToString(\"X\"));\n```\n\n### Serialization\n\n## Reading\n\nYou can read values by calling a ``Read`` function of the wanted type on a ``NhaamaProcess``, passing the offset to read from.\n\n```cs\nConsole.WriteLine(process1.ReadUInt64(pointer1));\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoaaats%2Fnhaama","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgoaaats%2Fnhaama","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoaaats%2Fnhaama/lists"}