{"id":20780224,"url":"https://github.com/le0developer/awluas","last_synced_at":"2025-09-28T05:30:28.942Z","repository":{"id":117512201,"uuid":"282644986","full_name":"Le0Developer/awluas","owner":"Le0Developer","description":"LUAS for the CS:GO cheat aimware","archived":false,"fork":false,"pushed_at":"2020-10-10T19:47:01.000Z","size":101,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2024-11-17T13:39:03.796Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Le0Developer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2020-07-26T12:26:58.000Z","updated_at":"2024-03-29T16:36:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"36ce199a-7304-4eb2-80ce-fb74b6677c75","html_url":"https://github.com/Le0Developer/awluas","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Le0Developer%2Fawluas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Le0Developer%2Fawluas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Le0Developer%2Fawluas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Le0Developer%2Fawluas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Le0Developer","download_url":"https://codeload.github.com/Le0Developer/awluas/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234487946,"owners_count":18841044,"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":[],"created_at":"2024-11-17T13:32:56.464Z","updated_at":"2025-09-28T05:30:23.615Z","avatar_url":"https://github.com/Le0Developer.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"\r\n# Aimware Luas\r\n\r\nThis repository contains my scripts for the CS:GO cheat aimware and various utilities.\r\n\r\n[[Profile](https://aimware.net/forum/user/277153)] [[+Rep](https://aimware.net/forum/user/277153/reputation/add)]\r\n\r\n## Building\r\n\r\n### Building requirements\r\n\r\nFor building you need:\r\n\r\n  - Lua 5.1 or 5.3 (5.4 might work but is not tested)\r\n  - [Alfons](https://github.com/daelvn/alfons)\r\n    - `luarocks install alfons`\r\n  - [Moonscript](https://moonscript.org)\r\n    - `luarocks install moonscript`\r\n\r\n### How to build\r\n\r\n1. Go with your favorite shell (bash, cmd.exe, ...) into this directory\r\n2. Execute `alfons build -n NAME` to build the project, where NAME is the name of the lua.\r\n3. Find the paths from the output and copy the files into your aimware directory. (sample output: `Done. The lua can be found in 'dist/onshot.lua'`)\r\n\r\n**Examples:**\r\n    - `alfons build -n onshot` and then `dist/onshot.lua` or `dist/onshot.min.lua`\r\n    - `alfons build -n xml` and then include the content of `util/dist/xml.min.lua` with a `loadstring([[XML]])()` into your program\r\n\r\n## Testing\r\n\r\n### Testing requirements\r\n\r\n  - Lua 5.1 or 5.3 (5.4 might work but is not tested)\r\n  - [Alfons](https://github.com/daelvn/alfons)\r\n    - `luarocks install alfons`\r\n  - [Moonscript](https://moonscript.org)\r\n    - `luarocks install moonscript`\r\n  - [Busted](http://olivinelabs.com/busted/)\r\n    - `luarocks install busted`\r\n\r\n### How to test\r\n\r\n1. Go into this directory.\r\n1. Execute `alfons test -n NAME` to test the project.\r\n   \r\n\u003e **NOTE**: Not every project has a test!\r\n\r\n**Examples:**\r\n    - `alfons test -n xml`\r\n\r\n## LICENSE\r\n\r\nEvery file in this repository is licensed under MIT unless mentioned below.\r\n\r\nIf you want to include parts of this lua, you MUST include a link to this repository and/or a link to the [LICENSE](\u003cLICENSE\u003e) file.\r\n\r\n### Embedding\r\n\r\nIf you want to embed a part of one of my scripts, I recommend using the minifed(`NAME.min.lua`) version, and putting the copyright line above it.\r\n\r\n**Example**:\r\n```lua\r\n-- program that dynamically creates XML with the xml util\r\n\r\n-- LICENSE: https://github.com/le0developer/awluas/blob/master/LICENSE | Github: https://github.com/le0developer/awluas/blob/master/util/xml.moon | Compiled on Thu Sep 10 18:53:37 2020\r\nlocal xml = loadstring([[XML CODE]])()\r\n```\r\n\r\n### Exceptions:\r\n\r\n  - [lib/minifier.lua](\u003clib/minifier.lua\u003e) \r\n    \r\n    The [original github](https://github.com/SquidDev-CC/Howl/tree/master/howl/lexer) is under MIT. That it was posted on pastebin was a license violation **by the dev**.\r\n    All changes are mentioned in the comments.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fle0developer%2Fawluas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fle0developer%2Fawluas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fle0developer%2Fawluas/lists"}